Skip to content

Instantly share code, notes, and snippets.

@blainelang
Created February 19, 2014 17:29
Show Gist options
  • Save blainelang/9096966 to your computer and use it in GitHub Desktop.
Save blainelang/9096966 to your computer and use it in GitHub Desktop.
Commbuilder template info hook
/**
* 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