You are here

function animate_css_help in Animate CSS 7

Same name and namespace in other branches
  1. 8 animate_css.module \animate_css_help()

Implements hook_help().

File

./animate_css.module, line 12
Drupal integration with Animate.css, bunch of cool, fun, and cross-browser animations for you to use in your projects.

Code

function animate_css_help($path, $arg) {
  switch ($path) {
    case 'admin/help#animate':
      return '<p>' . t('<a href="@animate">Animate</a> is a bunch of cool, fun, and cross-browser animations for you to use in your projects.', array(
        '@animate' => 'http://daneden.me/animate/',
      )) . '</p>';
  }
}