You are here

function hosting_platform_composer_git_platform_submit in Aegir Deploy 7.3

Submit callback for the platform node form.

1 string reference to 'hosting_platform_composer_git_platform_submit'
HostingPlatformComposerGitForm::alter in modules/platform_composer_git/includes/HostingPlatformComposerGitForm.inc

File

modules/platform_composer_git/hosting_platform_composer_git.module, line 27
Drupal hooks for the hosting_platform_composer_git module.

Code

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