Chris@0: /** Chris@0: * Implements hook_updater_info(). Chris@0: */ Chris@0: function {{ machine_name }}_updater_info() { Chris@0: return array( Chris@0: 'module' => array( Chris@0: 'class' => 'ModuleUpdater', Chris@0: 'name' => t('Update modules'), Chris@0: 'weight' => 0, Chris@0: ), Chris@0: 'theme' => array( Chris@0: 'class' => 'ThemeUpdater', Chris@0: 'name' => t('Update themes'), Chris@0: 'weight' => 0, Chris@0: ), Chris@0: ); Chris@0: }