You are here

function hosting_deploy_platform_deploy_strategies in Aegir Deploy 7.3

Implements hook_platform_deploy_strategies().

File

./hosting_deploy.module, line 42
Drupal hooks for the hosting_deploy module.

Code

function hosting_deploy_platform_deploy_strategies() {
  return [
    'none' => [
      'label' => t('Classic (managed by you on SSH command line or SFTP)'),
      'required_fields' => [],
    ],
  ];
}