You are here

function hosting_db_server_help in Hosting 5

Implementation of hook_help().

File

db_server/hosting_db_server.module, line 10

Code

function hosting_db_server_help($section) {
  switch ($section) {
    case 'admin/help/provision#requirements':
      $output .= _hosting_requirements('mysql_user');
      return $output;
      break;
  }
}