You are here

function _blockanimate_add_form_fieldset in BlockAnimate 7

Helper function: adds a new fieldset to the block configuration form.

1 call to _blockanimate_add_form_fieldset()
blockanimate_form_alter in ./blockanimate.module
Implements hook_form_alter().

File

./blockanimate.module, line 107
Add CSS3 cross-browser animation to any Drupal block.

Code

function _blockanimate_add_form_fieldset(&$form) {
  $form['settings']['animate_css'] = array(
    '#type' => 'fieldset',
    '#title' => t('Animate CSS Animation'),
    '#collapsible' => TRUE,
    '#collapsed' => FALSE,
  );
}