1 image_module_test.module | image_module_test_image_effect_info_alter(&$effects) |
Implements hook_image_effect_info_alter().
Used to keep a count of cache misses in image_effect_definitions().
File
- core/
modules/ image/ tests/ image_module_test/ image_module_test.module, line 69 - Provides Image module hook implementations for testing purposes.
Code
function image_module_test_image_effect_info_alter(&$effects) {
$image_effects_definition_called = &backdrop_static(__FUNCTION__, 0);
$image_effects_definition_called++;
}