You are here

function entity_share_ui_client_help in Entity Share 7

Implements hook_help().

File

modules/entity_share_ui/modules/entity_share_ui_client/entity_share_ui_client.module, line 17
Entity Share UI Client .module file.

Code

function entity_share_ui_client_help($path, $arg) {
  switch ($path) {
    case 'admin/help#entity_share_ui_client':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Entity Share UI Client module allows to configure the sharing of contents across different Drupal instances.') . '</p>';
      return $output;
  }
}