hosting.feature.db_server.inc in Hosting 7.4
Same filename and directory in other branches
Expose the db_server feature to hostmaster.
File
db_server/hosting.feature.db_server.incView source
<?php
/**
* @file
* Expose the db_server feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
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_db_server',
'group' => 'required',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_db_server_hosting_feature | Implements hook_hosting_feature(). |