You are here

function views_fieldsets_theme in Views fieldsets 7

Same name and namespace in other branches
  1. 8.3 views_fieldsets.module \views_fieldsets_theme()
  2. 7.2 views_fieldsets.module \views_fieldsets_theme()

Implements hook_theme().

File

./views_fieldsets.module, line 11
Hooks, helpers and theming for the Views Fieldsets module.

Code

function views_fieldsets_theme() {
  return array(
    'views_fieldsets_rearrange_form' => array(
      'render element' => 'form',
    ),
    'views_fieldsets_fieldset' => array(
      'variables' => array(
        'fieldset' => '',
        'content' => '',
      ),
      'template' => 'views-fieldsets-fieldset',
      'path' => drupal_get_path('module', 'views_fieldsets') . '/templates',
    ),
  );
}