function animate_css_settings_form in Animate CSS 7
Form for Animate CSS library settings.
1 string reference to 'animate_css_settings_form'
- animate_css_menu in ./
animate_css.module - Implements hook_menu().
File
- ./
animate_css.module, line 183 - Drupal integration with Animate.css, bunch of cool, fun, and cross-browser animations for you to use in your projects.
Code
function animate_css_settings_form() {
$form = array();
$form['library'] = array(
'#type' => 'fieldset',
'#title' => 'Library',
'#description' => t("Unless you are helping to develop the Animate CSS module, all these are not needed to use Animate CSS."),
);
$form['library']['animate_css_devel'] = array(
'#type' => 'checkbox',
'#title' => t('Use uncompressed CSS'),
'#description' => t('Load the uncompressed version of animate.css. This SHOULD NOT be checked on production sites.'),
'#default_value' => ANIMATE_CSS_DEVEL,
);
return system_settings_form($form);
}