function image_module_test_null_effect

7.x image_module_test.module image_module_test_null_effect(array &$image, array $data)

Image effect callback; Null.

Parameters

$image: An image object returned by image_load().

$data: An array with no attributes.

Return value

TRUE

1 string reference to 'image_module_test_null_effect'

File

drupal-7.x/modules/image/tests/image_module_test.module, line 38
Provides Image module hook implementations for testing purposes.

Code

function image_module_test_null_effect(array &$image, array $data) {
  return TRUE;
}