function contact_storage_theme in Contact Storage 8
Implements hook_theme().
File
- ./
contact_storage.module, line 449 - Contains main module logic.
Code
function contact_storage_theme() {
return [
'swiftmailer__contact' => [
'variables' => [
'message' => [],
],
],
'contact_storage_disabled_form' => [
'template' => 'contact-storage-disabled-form',
'variables' => [
'contact_form' => NULL,
'disabled_form_message' => '',
],
],
];
}