mediamosa_webservice_help

Versions
mediamosa-21
mediamosa_webservice_help($path, $arg)

Implements hook_help().

Code

sites/all/modules/mediamosa/modules/webservice/mediamosa_webservice.module, line 35

<?php
function mediamosa_webservice_help($path, $arg) {
  global $base_url;

  switch ($path) {
    case 'admin/mediamosa/config/webservice':
      return '<p>' . t('List of all webservices and global availibity of services. Disabled webservices are unavailable for all client applications. Note: see client application settings for availability of a webservice for the specific client application.') . '</p>';
  }
}
?>