function system_service_help in Services 5
Same name and namespace in other branches
- 6 services/system_service/system_service.module \system_service_help()
- 7 services/system_service/system_service.module \system_service_help()
Implementation of hook_help().
File
- services/
system_service/ system_service.module, line 9 - The module which exposes services related to system activies
Code
function system_service_help($section) {
switch ($section) {
case 'admin/help#services_node':
return t('<p>Provides node methods to services applications. Requires services.module.</p>');
case 'admin/modules#description':
return t('Provides node methods to services applications. Requires services.module.');
}
}