You are here

function image_module_test_image_effect_info_alter in Drupal 8

Same name and namespace in other branches
  1. 7 modules/image/tests/image_module_test.module \image_module_test_image_effect_info_alter()
  2. 9 core/modules/image/tests/modules/image_module_test/image_module_test.module \image_module_test_image_effect_info_alter()

Implements hook_image_effect_info_alter().

Used to keep a count of cache misses in \Drupal\image\ImageEffectManager.

1 string reference to 'image_module_test_image_effect_info_alter'
ImageEffectsTest::testImageEffectsCaching in core/modules/image/tests/src/Functional/ImageEffectsTest.php
Test image effect caching.

File

core/modules/image/tests/modules/image_module_test/image_module_test.module, line 22
Provides Image module hook implementations for testing purposes.

Code

function image_module_test_image_effect_info_alter(&$effects) {
  $image_effects_definition_called =& drupal_static(__FUNCTION__, 0);
  $image_effects_definition_called++;
}