function views_autorefresh_theme in Views Auto-Refresh 7
Same name and namespace in other branches
- 7.2 views_autorefresh.module \views_autorefresh_theme()
Implementation of hook_theme().
File
- ./
views_autorefresh.module, line 16
Code
function views_autorefresh_theme() {
return array(
'views_autorefresh' => array(
'variables' => array(
'interval' => NULL,
'ping' => NULL,
'trigger_onload' => NULL,
'incremental' => NULL,
'view' => NULL,
),
),
);
}