You are here

function fieldset_helper_theme in Fieldset helper 6

Same name and namespace in other branches
  1. 6.2 fieldset_helper.theme.inc \fieldset_helper_theme()
  2. 7.2 fieldset_helper.theme.inc \fieldset_helper_theme()

Implementation of hook_theme().

File

./fieldset_helper.module, line 231
Saves the collapsed state of a Drupal collapsible fieldset.

Code

function fieldset_helper_theme() {
  return array(
    'fieldset_helper_toggle_all' => array(
      'arguments' => array(
        'selector' => NULL,
        'id' => NULL,
      ),
    ),
  );
}