You are here

function bootstrap_carousel_if_theme in Bootstrap Carousel Image Formatter 7.3

Implements hook_theme().

File

./bootstrap_carousel_if.module, line 35
Bootstrap Carousel Image Field.

Code

function bootstrap_carousel_if_theme() {
  return array(
    'bootstrap_carousel_if' => array(
      'variables' => array(
        'interval' => '5000',
        'pause' => 0,
        'wrap' => 0,
        'keyboard' => 0,
        'indicators' => 1,
        'image_style' => 0,
        'background' => 0,
        'background_pos' => 'center center',
        'width' => '100%',
        'height' => '100px',
        'id' => '',
        'items' => array(),
      ),
    ),
  );
}