You are here

function hosting_platform_composer_platform_submit in Aegir Deploy 7.3

Submit callback for the platform node form.

1 string reference to 'hosting_platform_composer_platform_submit'
HostingPlatformComposerForm::alter in modules/platform_composer/includes/HostingPlatformComposerForm.inc

File

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

Code

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