function entity_share_ui_help in Entity Share 7
Implements hook_help().
File
- modules/
entity_share_ui/ entity_share_ui.module, line 11 - Entity Share UI .module file.
Code
function entity_share_ui_help($path, $arg) {
switch ($path) {
case 'admin/help#entity_share':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Entity Share module allows to share contents across different Drupal instances.') . '</p>';
return $output;
}
}