function taxonomy_test_query_alter
Implements hook_query_alter().
2 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.
File
- 
              core/modules/ taxonomy/ tests/ modules/ taxonomy_test/ taxonomy_test.module, line 14 
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.
