You are here

function bootstrap_fieldgroup_theme in Bootstrap fieldgroup 7

Implements hook_theme().

File

./bootstrap_fieldgroup.module, line 21
Module file for the bootstrap_fieldgroup module.

Code

function bootstrap_fieldgroup_theme() {
  return array(
    'bootstrap_fieldgroup_nav' => array(
      'template' => 'templates/bootstrap-fieldgroup-nav',
      'variables' => array(
        'items' => array(),
        'group' => NULL,
      ),
    ),
    'bootstrap_fieldgroup_accordion' => array(
      'template' => 'templates/bootstrap-fieldgroup-accordion',
      'variables' => array(
        'items' => array(),
        'group' => NULL,
      ),
    ),
  );
}