You are here

function hosting_db_server_hosting_service_type in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 db_server/hosting_db_server.module \hosting_db_server_hosting_service_type()
  2. 7.3 db_server/hosting_db_server.module \hosting_db_server_hosting_service_type()

Implementation of hook_hosting_service_type().

File

db_server/hosting_db_server.module, line 19
Allow Hostmaster to configure database servers.

Code

function hosting_db_server_hosting_service_type() {
  return array(
    'db' => array(
      'title' => t('Database'),
    ),
  );
}