forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
18 lines
363 B
Twig
18 lines
363 B
Twig
/**
|
|
* Implements hook_updater_info().
|
|
*/
|
|
function {{ machine_name }}_updater_info() {
|
|
return [
|
|
'module' => [
|
|
'class' => 'Drupal\Core\Updater\Module',
|
|
'name' => t('Update modules'),
|
|
'weight' => 0,
|
|
],
|
|
'theme' => [
|
|
'class' => 'Drupal\Core\Updater\Theme',
|
|
'name' => t('Update themes'),
|
|
'weight' => 0,
|
|
],
|
|
];
|
|
}
|