You are here

function system_settings_service_help in Deploy - Content Staging 6

Same name and namespace in other branches
  1. 5 services/system_settings_service/system_settings_service.module \system_settings_service_help()

Implementation of hook_help().

File

services/system_settings_service/system_settings_service.module, line 14
Service for the management of system settings that used Drupals' system_settings_form() API.

Code

function system_settings_service_help($path, $arg) {
  switch ($path) {
    case 'admin/help#services_system_settings':
      return t('<p>Provides system settings services. Requires services.module.</p>');
    case 'admin/modules#description':
      return t('Provides system settings services. Requires services.module.');
  }
}