You are here

function hosting_platform_git_form_alter in Aegir Deploy 7.3

@file Drupal hooks for the hosting_platform_git module.

File

modules/platform_git/hosting_platform_git.module, line 7
Drupal hooks for the hosting_platform_git module.

Code

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