function taxonomy_test_query_alter
Same name in other branches
- 7.x modules/simpletest/tests/taxonomy_test.module \taxonomy_test_query_alter()
- 9 core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.module \taxonomy_test_query_alter()
- 8.9.x core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.module \taxonomy_test_query_alter()
- 10 core/modules/taxonomy/tests/modules/taxonomy_test/taxonomy_test.module \taxonomy_test_query_alter()
Implements hook_query_alter().
3 string references to 'taxonomy_test_query_alter'
- TaxonomyQueryAlterTest::assertQueryTagTestResult in core/
modules/ taxonomy/ tests/ src/ Kernel/ TaxonomyQueryAlterTest.php - Verifies invocation of the hooks in the test module.
- TaxonomyQueryAlterTest::setupQueryTagTestHooks in core/
modules/ taxonomy/ tests/ src/ Kernel/ TaxonomyQueryAlterTest.php - Sets up the hooks in the test module.
- TaxonomyTestHooks::queryAlter in core/
modules/ taxonomy/ tests/ modules/ taxonomy_test/ src/ Hook/ TaxonomyTestHooks.php - Implements hook_query_alter().
File
-
core/
modules/ taxonomy/ tests/ modules/ taxonomy_test/ taxonomy_test.module, line 35
Code
function taxonomy_test_query_alter(AlterableInterface $query) {
$value = \Drupal::state()->get(__FUNCTION__);
if (isset($value)) {
\Drupal::state()->set(__FUNCTION__, ++$value);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.