| 7 image_module_test.module | image_module_test_file_download($uri) |
| 8 image_module_test.module | image_module_test_file_download($uri) |
1 string reference to 'image_module_test_file_download'
File
- modules/
image/ tests/ image_module_test.module, line 8 - Provides Image module hook implementations for testing purposes.
Code
function image_module_test_file_download($uri) {
if (variable_get('image_module_test_file_download', FALSE) == $uri) {
return array('X-Image-Owned-By' => 'image_module_test');
}
return -1;
}
Login or register to post comments