hosting.feature.platform_git.inc in Aegir Deploy 7.3
The hosting feature definition for hosting_platform_git.
File
modules/platform_git/hosting.feature.platform_git.incView source
<?php
/**
* @file The hosting feature definition for hosting_platform_git.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_platform_git_hosting_feature() {
$features['platform_git'] = array(
'title' => t('Git Deploy (without Composer)'),
'description' => t('Deploy platforms using Git, that are not managed by Composer.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_platform_git',
'group' => 'optional',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_platform_git_hosting_feature | Implements hook_hosting_feature(). |