
| Current Path : /var/www/html/dataninja.cn/core/modules/system/tests/modules/path_test/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/dataninja.cn/core/modules/system/tests/modules/path_test/path_test.module |
<?php
/**
* @file
* Helper module for the path tests.
*/
/**
* Resets the path test results.
*/
function path_test_reset() {
\Drupal::state()->set('path_test.results', []);
}
/**
* Implements hook_path_update().
*/
function path_test_path_update($path) {
$results = \Drupal::state()->get('path_test.results') ?: [];
$results['hook_path_update'] = $path;
\Drupal::state()->set('path_test.results', $results);
}