You are here

function blockanimate_get_help_message in BlockAnimate 7

Helper function.

Returns the modules' help text for Drupal's administration help section.

1 call to blockanimate_get_help_message()
blockanimate_help in ./blockanimate.module
Implements hook_help().

File

./blockanimate.module, line 417
Add CSS3 cross-browser animation to any Drupal block.

Code

function blockanimate_get_help_message() {
  $message = '<p>';
  $message .= t("The Block Animate module adds a new fieldset with a few new options to Drupal's block configuration form. Using these options you can set an animation for each of your website's blocks, the animation duration, the number of times the animation will be executed, and so on.");
  $message .= '</p>';
  $message .= '<p>';
  $message .= t("These animations are provided by the Animate CSS library. There is a lot of different animations available to choose from. These animations are CSS3 animations, so they're cross browser animations.");
  $message .= '</p>';
  $message .= '<p>';
  $message .= t("This module uses the WOW Javascript library too. Thanks to this library, these animations are shown when the blocks become visible as you scroll down the page.");
  $message .= '</p>';
  return $message;
}