You are here

function cumulus_help in Cumulus 6.2

Same name and namespace in other branches
  1. 6 cumulus.module \cumulus_help()
  2. 7 cumulus.module \cumulus_help()

Implementation of hook_help().

File

./cumulus.module, line 47
The brain of Cumulus.

Code

function cumulus_help($path, $arg) {
  switch ($path) {
    case 'admin/help#cumulus':
      $output = '<p>' . t('Cumulus allows you to display strings like taxonomy\'s terms using a Flash movie that rotates them in 3D. This way, you can set it up like a 3D tag cloud. It works just like a regular tag cloud, but is more visually exciting!') . '</p>';
      return $output;
  }
}