function taxonomy_service_help in Services 7
Same name and namespace in other branches
- 5 services/taxonomy_service/taxonomy_service.module \taxonomy_service_help()
- 6 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.');
}
}