Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / image_toolkits.twig
1 /**
2  * Implements hook_image_toolkits().
3  */
4 function {{ machine_name }}_image_toolkits() {
5   return array(
6     'working' => array(
7       'title' => t('A toolkit that works.'),
8       'available' => TRUE,
9     ),
10     'broken' => array(
11       'title' => t('A toolkit that is "broken" and will not be listed.'),
12       'available' => FALSE,
13     ),
14   );
15 }