You are here

function system_settings_service_help in Deploy - Content Staging 5

Same name and namespace in other branches
  1. 6 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 6

Code

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