function animate_css_help in Animate CSS 8
Same name and namespace in other branches
- 7 animate_css.module \animate_css_help()
Implements hook_help().
File
- ./
animate_css.module, line 13 - Drupal integration with Animate.css.
Code
function animate_css_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.animate_css':
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.', [
'@animate' => 'https://animate.style/',
]) . '</p>';
}
}