You are here

function views_ticker_theme in Views Ticker 7.2

Same name and namespace in other branches
  1. 6.2 views_ticker.module \views_ticker_theme()
  2. 7 views_ticker.module \views_ticker_theme()

Implements hook_theme().

File

./views_ticker.module, line 25
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,
      ),
    ),
  );
}