You are here

function hosting_deploy_form_alter in Aegir Deploy 7.3

Implements hook_form_alter().

File

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

Code

function hosting_deploy_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'platform_node_form') {
    $platform_node_form = new HostingDeployForm($form, $form_state);
    $platform_node_form
      ->alter();
  }
}