Browse Source

Missing newline, crufty func.

pull/317/head
Jordan Dukart 12 years ago
parent
commit
2d32249ab8
  1. 19
      includes/ingest.form.inc

19
includes/ingest.form.inc

@ -28,6 +28,7 @@
* subscribe * subscribe
* - parent: The parent of the child to be ingested. This is needed for XACML * - parent: The parent of the child to be ingested. This is needed for XACML
* to correctly apply the parent's POLICY to children. * to correctly apply the parent's POLICY to children.
*
* @return array * @return array
* The form definition of the current step. * 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(); 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. * Append Prev/Next buttons submit/validation handlers etc.
* *

Loading…
Cancel
Save