function automatic_updates_theme in Automatic Updates 8
Same name and namespace in other branches
- 7 automatic_updates.module \automatic_updates_theme()
Implements hook_theme().
File
- ./
automatic_updates.module, line 147 - Contains automatic_updates.module..
Code
function automatic_updates_theme(array $existing, $type, $theme, $path) {
return [
'automatic_updates_psa_notify' => [
'variables' => [
'messages' => [],
],
],
'automatic_updates_post_update' => [
'variables' => [
'success' => NULL,
'metadata' => NULL,
],
],
];
}