function joomla_help in Joomla to Drupal 7
Same name and namespace in other branches
- 5 joomla.module \joomla_help()
- 6 joomla.module \joomla_help()
- 7.2 joomla.module \joomla_help()
Implementation of hook_help().
File
- ./
joomla.module, line 32 - The joomla module used for migrate Joomla to Drupal.
Code
function joomla_help($section) {
switch ($section) {
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.';
}
}