You are here

function taxonomy_service_help in Services 5

Same name and namespace in other branches
  1. 6 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 10
The module which exposes services related to taxonomy system

Code

function taxonomy_service_help($section) {
  switch ($section) {
    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.');
  }
}