You are here

function entity_share_ui_server_help in Entity Share 7

Implements hook_help().

File

modules/entity_share_ui/modules/entity_share_ui_server/entity_share_ui_server.module, line 11
Entity Share UI .module file.

Code

function entity_share_ui_server_help($path, $arg) {
  switch ($path) {
    case 'admin/help#entity_share_ui_server':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Entity Share Server module allows to configure the security of the Server API.') . '</p>';
      return $output;
  }
}