function oa_styles_theme in Open Atrium Styles 7.2
Implements hook_theme().
File
- ./
oa_styles.module, line 18 - Provides hook implementations and functionality for oa_styles.
Code
function oa_styles_theme() {
return array(
'oa_styles_modal' => array(
'template' => 'oa-styles-modal',
'variables' => array(
'modal_id' => 'oa-styles-modal',
'title' => t('Default Modal Title'),
'body' => NULL,
),
'path' => drupal_get_path('module', 'oa_styles') . '/templates',
),
);
}