hosting.feature.subdirs.inc in Hosting 7.4
Same filename and directory in other branches
Expose the subdirs feature to hostmaster.
File
subdirs/hosting.feature.subdirs.incView source
<?php
/**
* @file
* Expose the subdirs feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_subdirs_hosting_feature() {
$features['subdirs'] = array(
'title' => t('Site subdirectories'),
'description' => t('Subdirectory multisite support.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_subdirs',
'group' => 'experimental',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_subdirs_hosting_feature | Implements hook_hosting_feature(). |