You are here

function bs_shortcodes_theme in Bootstrap Theme Shortcodes 7

Implementation of hook_theme().

File

./bs_shortcodes.module, line 154

Code

function bs_shortcodes_theme() {
  return array(
    // Tooltips
    'shortcode_tooltiptop' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_tooltipright' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_tooltipbottom' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_tooltipleft' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    // Popovers
    'shortcode_popover' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_popoverright' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_popoverbottom' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    'shortcode_popoverleft' => array(
      'variables' => array(
        'text' => '',
        'id' => '',
      ),
    ),
    // Wells
    'shortcode_well' => array(
      'variables' => array(
        'text' => '',
      ),
    ),
    'shortcode_well_large' => array(
      'variables' => array(
        'text' => '',
      ),
    ),
    'shortcode_well_small' => array(
      'variables' => array(
        'text' => '',
      ),
    ),
    //Panels
    'shortcode_panel' => array(
      'variables' => array(
        'text' => '',
        'heading' => '',
        'style' => '',
      ),
    ),
    //Glyphicons
    'shortcode_glyphicons' => array(
      'variables' => array(
        'text' => '',
        'name' => '',
      ),
    ),
    //Glyphicons
    'shortcode_jumbotron' => array(
      'variables' => array(
        'text' => '',
      ),
    ),
    //Blockquote
    'shortcode_blockquote' => array(
      'variables' => array(
        'blockquote' => '',
        'text' => '',
        'source' => '',
      ),
    ),
    //Blockquote Reverse
    'shortcode_blockquote_reverse' => array(
      'variables' => array(
        'blockquoter' => '',
        'text' => '',
        'sourcer' => '',
      ),
    ),
    //Abbreviation
    'shortcode_abbr' => array(
      'variables' => array(
        'abbreviation' => '',
        'title' => '',
        'text' => '',
      ),
    ),
  );
}