You are here

function hosting_platform_git_platform_submit in Aegir Deploy 7.3

Submit callback for the platform node form.

1 string reference to 'hosting_platform_git_platform_submit'
HostingPlatformGitForm::alter in modules/platform_git/includes/HostingPlatformGitForm.inc

File

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

Code

function hosting_platform_git_platform_submit($form, &$form_state) {
  $platform_node_form = new HostingPlatformGitForm($form, $form_state);
  $platform_node_form
    ->submit();
}