function cumulus_help in Cumulus 7
Same name and namespace in other branches
- 6.2 cumulus.module \cumulus_help()
- 6 cumulus.module \cumulus_help()
Implements hook_help().
File
- ./
cumulus.module, line 213 - The brain of Cumulus.
Code
function cumulus_help($path, $arg) {
switch ($path) {
case 'admin/help#cumulus':
$output = '<p>' . t('Cumulus allows you to display a 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>';
$output .= '<p>' . '<strong>' . t('Configuring Cumulus: ') . '</strong>' . '<br />';
$output .= t('By default, Cumulus is rendered as a block. You need to enable and configure that block to see it. If you don\'t configure and save the Cumulus block settings once, it will not work! Do that before wondering what\'s wrong :-)') . '</p>';
return $output;
}
}