Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / updater_info.twig
1 /**
2  * Implements hook_updater_info().
3  */
4 function {{ machine_name }}_updater_info() {
5   return array(
6     'module' => array(
7       'class' => 'ModuleUpdater',
8       'name' => t('Update modules'),
9       'weight' => 0,
10     ),
11     'theme' => array(
12       'class' => 'ThemeUpdater',
13       'name' => t('Update themes'),
14       'weight' => 0,
15     ),
16   );
17 }