image_test_image_toolkits

7 image_test.module image_test_image_toolkits()
8 image_test.module image_test_image_toolkits()

Implements hook_image_toolkits().

File

modules/simpletest/tests/image_test.module, line 11
Helper module for the image tests.

Code

function image_test_image_toolkits() {
  return array(
    'test' => array(
      'title' => t('A dummy toolkit that works'), 
      'available' => TRUE,
    ), 
    'broken' => array(
      'title' => t('A dummy toolkit that is "broken"'), 
      'available' => FALSE,
    ),
  );
}
Login or register to post comments