function computing_help in Drupal Computing 7.2
Implements hook_help().
File
- ./
computing.module, line 15
Code
function computing_help($path, $args) {
$output = '';
switch ($path) {
case 'admin/help#computing':
case COMPUTING_MODULE_ADMIN_PATH:
$output = '<p>' . t('Drupal Computing is a framework that facilitates distributed computing between Drupal and external programs written in non-PHP languages such as Java and Python. Go to !link and submit a command with necessary data to pass on to external programs. Or browse and administer !record.', array(
'!link' => l('Command Console', COMPUTING_MODULE_ADMIN_PATH . '/list'),
'!record' => l('the list of Computing Records', COMPUTING_MODULE_ADMIN_PATH . '/records'),
)) . '</p>';
break;
}
return $output;
}