From 2d32249ab8e190a210fedfafdfb45205dfe38cd2 Mon Sep 17 00:00:00 2001 From: Jordan Dukart Date: Thu, 18 Apr 2013 10:28:06 -0300 Subject: [PATCH] Missing newline, crufty func. --- includes/ingest.form.inc | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/includes/ingest.form.inc b/includes/ingest.form.inc index 8462deef..31cff4e5 100644 --- a/includes/ingest.form.inc +++ b/includes/ingest.form.inc @@ -28,6 +28,7 @@ * subscribe * - parent: The parent of the child to be ingested. This is needed for XACML * to correctly apply the parent's POLICY to children. + * * @return array * The form definition of the current step. */ @@ -301,24 +302,6 @@ function islandora_ingest_form_execute_step(array $form, array &$form_state, $st return array(); } -/** - * Handles occurances where a callback is executed to grab the next form type. - * - * @param array $form_state - * The Drupal form state. - * @param array $step - * Describes the current step. - * - * @return array - * The stepified Drupal form definition for the given step. - */ -function islandora_ingest_callback_stepify(array &$form_state, $step) { - $next_step = islandora_ingest_form_get_step($form_state, $step); - $form = call_user_func_array($next_step['form_id'], $args); - islandora_ingest_form_increment_step($form_state); - return islandora_ingest_form_stepify($form, $form_state, $next_step); -} - /** * Append Prev/Next buttons submit/validation handlers etc. *