You are here

function hosting_platform_composer_form_alter in Aegir Deploy 7.3

@file Drupal hooks for the hosting_platform_composer module.

File

modules/platform_composer/hosting_platform_composer.module, line 7
Drupal hooks for the hosting_platform_composer module.

Code

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