You are here

function hosting_db_server_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 5 db_server/hosting_db_server.module \hosting_db_server_hosting_feature()
  2. 7.4 db_server/hosting.feature.db_server.inc \hosting_db_server_hosting_feature()
  3. 7.3 db_server/hosting.feature.db_server.inc \hosting_db_server_hosting_feature()

Implementation of hook_hosting_feature().

File

db_server/hosting.feature.db_server.inc, line 10
Expose the db_server feature to hostmaster.

Code

function hosting_db_server_hosting_feature() {
  $features['db_server'] = array(
    'title' => t('Database servers'),
    'description' => t('API to provide support for database servers.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_server',
    'group' => 'required',
  );
  return $features;
}