You are here

function taxonomy_service_help in Services 6

Same name and namespace in other branches
  1. 5 services/taxonomy_service/taxonomy_service.module \taxonomy_service_help()
  2. 7 services/taxonomy_service/taxonomy_service.module \taxonomy_service_help()

Implementation of hook_help().

File

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

Code

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