You are here

function joomla_help in Joomla to Drupal 6

Same name and namespace in other branches
  1. 5 joomla.module \joomla_help()
  2. 7.2 joomla.module \joomla_help()
  3. 7 joomla.module \joomla_help()

Implementation of hook_help().

File

./joomla.module, line 31
The joomla module used for migrate Joomla to Drupal.

Code

function joomla_help($path, $arg) {
  switch ($path) {
    case 'admin/help#joomla':
      $output = "The joomla module used for migrate Joomla to Drupal.";
      return $output;
    case 'admin/modules#description':
      return 'The joomla module used for migrate Joomla to Drupal.';
  }
}