function system_service_help in Services 6
Same name and namespace in other branches
- 5 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 11 - @author Services Dev Team
Code
function system_service_help($path, $arg) {
switch ($path) {
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.');
}
}