You are here

function bxslider_theme in BxSlider 7

Same name and namespace in other branches
  1. 8 bxslider.module \bxslider_theme()

Implements hook_theme().

File

./bxslider.module, line 1227
Fields integration with BxSlider.

Code

function bxslider_theme() {
  return array(
    'bxslider' => array(
      'variables' => array(
        'items' => array(),
        'settings' => array(),
      ),
      'template' => 'templates/bxslider',
    ),
    'bxslider_ths' => array(
      'variables' => array(
        'items' => array(),
        'thumbnail_items' => array(),
        'settings' => array(),
      ),
      'template' => 'templates/bxslider_ths',
    ),
    'bxslider_colorbox' => array(
      'variables' => array(
        'slide_item' => array(),
        'settings' => array(),
      ),
    ),
  );
}