function views_ticker_theme in Views Ticker 7
Same name and namespace in other branches
- 6.2 views_ticker.module \views_ticker_theme()
- 7.2 views_ticker.module \views_ticker_theme()
Implements hook_theme().
File
- ./
views_ticker.module, line 29 - Provide a scrolling items display style for Views.
Code
function views_ticker_theme() {
return array(
'views_ticker' => array(
'variables' => array(
'items' => NULL,
'options' => NULL,
'identifier' => NULL,
),
),
);
}