function animate_css_menu in Animate CSS 7
Implements hook_menu().
File
- ./
animate_css.module, line 205 - Drupal integration with Animate.css, bunch of cool, fun, and cross-browser animations for you to use in your projects.
Code
function animate_css_menu() {
$items['admin/config/media/animate'] = array(
'title' => 'Animate CSS',
'description' => 'Configure Animate CSS.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'animate_css_settings_form',
),
'access arguments' => array(
'administer animate css',
),
'type' => MENU_LOCAL_TASK,
'weight' => -10,
);
return $items;
}