Created
February 19, 2014 17:29
-
-
Save blainelang/9096966 to your computer and use it in GitHub Desktop.
Commbuilder template info hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Implement hook_theme() | |
*/ | |
function as_newsletter_template_2014v1_commbuilder_template_info() { | |
return array( | |
'theme_set_2014v1' => array( | |
'default' => array( | |
'email' => array( | |
'description' => 'Single column layout tested for Outlook', | |
'template' => 'theme/email_single_column', | |
'variables' => array() | |
), | |
'web' => array( | |
'description' => 'Single column layout tested for Outlook', | |
'template' => 'theme/web_newsletter', | |
'variables' => array() | |
), | |
), | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment