diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-10-17 10:28:23 -0700 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-10-17 10:28:23 -0700 |
commit | 72ef1daad0b4a05014705edb36790f3c5e9bacf6 (patch) | |
tree | caa20f3924350feaa845532d1b2cea290642b695 /modules/image/tests/image_module_test.module | |
parent | 89ad342620ab99728f64de4a32e4edf6ade55aa0 (diff) | |
download | brdo-72ef1daad0b4a05014705edb36790f3c5e9bacf6.tar.gz brdo-72ef1daad0b4a05014705edb36790f3c5e9bacf6.tar.bz2 |
Reverting accidental commit with last patch.
Diffstat (limited to 'modules/image/tests/image_module_test.module')
-rw-r--r-- | modules/image/tests/image_module_test.module | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/image/tests/image_module_test.module b/modules/image/tests/image_module_test.module index 766a9d957..038bd155c 100644 --- a/modules/image/tests/image_module_test.module +++ b/modules/image/tests/image_module_test.module @@ -11,31 +11,3 @@ function image_module_test_file_download($uri) { } return -1; } - -/** - * Implements hook_image_effect_info(). - */ -function image_module_test_image_effect_info() { - $effects = array( - 'image_module_test_null' => array( - 'effect callback' => 'image_module_test_null_effect', - ), - ); - - return $effects; -} - -/** - * Image effect callback; Null. - * - * @param $image - * An image object returned by image_load(). - * @param $data - * An array with no attributes. - * - * @return - * TRUE - */ -function image_module_test_null_effect(array &$image, array $data) { - return TRUE; -} |