function advpoll_theme in Advanced Poll 7.3
Same name and namespace in other branches
- 8 advpoll.module \advpoll_theme()
- 6.3 advpoll.module \advpoll_theme()
- 6 advpoll.module \advpoll_theme()
- 6.2 advpoll.module \advpoll_theme()
- 7 advpoll.module \advpoll_theme()
- 7.2 advpoll.module \advpoll_theme()
Implements hook_theme().
File
- ./
advpoll.module, line 249
Code
function advpoll_theme($existing, $type, $theme, $path) {
return array(
'advpoll_bar' => array(
'variables' => array(
'percentage' => 0,
'votes' => 0,
'voted' => 0,
),
'path' => drupal_get_path('module', 'advpoll') . '/templates',
'template' => 'advpoll-bar',
),
'advpoll_closed' => array(
'variables' => array(
'data' => NULL,
),
'path' => drupal_get_path('module', 'advpoll') . '/templates',
'template' => 'advpoll-closed',
),
'advpoll_noresults' => array(
'variables' => array(
'available_date' => NULL,
'votes' => NULL,
'nid' => NULL,
'cancel_form' => NULL,
),
'path' => drupal_get_path('module', 'advpoll') . '/templates',
'template' => 'advpoll-noresults',
),
'advpoll_results' => array(
'variables' => array(
'bars' => NULL,
'total' => 0,
'voted' => NULL,
'nid' => NULL,
'cancel_form' => NULL,
),
'path' => drupal_get_path('module', 'advpoll') . '/templates',
'template' => 'advpoll-results',
),
'advpoll_ineligible' => array(
'variables' => array(
'data' => NULL,
),
'path' => drupal_get_path('module', 'advpoll') . '/templates',
'template' => 'advpoll-ineligible',
),
);
}