hosting.feature.alias.inc in Hostmaster (Aegir) 6
Expose the alias feature to hostmaster.
File
modules/hosting/alias/hosting.feature.alias.incView source
<?php
/**
* @file
* Expose the alias feature to hostmaster.
*/
/**
* Implementation of hook_hosting_feature().
*/
function hosting_alias_hosting_feature() {
$features['alias'] = array(
'title' => t('Site aliasing'),
'description' => t('Provide multiple domain names for sites to be accessible by.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_alias',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_alias_hosting_feature | Implementation of hook_hosting_feature(). |