You are here

function comment_service_help in Services 7

Implementation of hook_help().

File

services/comment_service/comment_service.module, line 11
@author Services Dev Team

Code

function comment_service_help($path, $arg) {
  switch ($path) {
    case 'admin/help#services_comment':
      return t('<p>Provides comment methods to services applications. Requires services.module.</p>');
    case 'admin/modules#description':
      return t('Provides comment methods to services applications. Requires services.module.');
  }
}