function animate_css_permission in Animate CSS 7
Implements hook_permission().
File
- ./
animate_css.module, line 222 - Drupal integration with Animate.css, bunch of cool, fun, and cross-browser animations for you to use in your projects.
Code
function animate_css_permission() {
return array(
'administer animate css' => array(
'title' => t('Administer the Animate CSS library'),
),
);
}