Browse Source

Notice and comment fix.

pull/317/head
Jordan Dukart 12 years ago
parent
commit
44b8b384c9
  1. 15
      includes/ingest.form.inc

15
includes/ingest.form.inc

@ -158,7 +158,7 @@ function islandora_ingest_form_get_next_step(array &$form_state, array $step = N
} }
/** /**
* Gets the next step. * Gets the previous step.
* *
* If the current step is not defined, its assumed to be the first step. * If the current step is not defined, its assumed to be the first step.
* *
@ -465,9 +465,14 @@ function islandora_ingest_form_previous_button(array &$form_state) {
// Before we move back to the previous step we should tell the previous step // Before we move back to the previous step we should tell the previous step
// to undo whatever its submit handler did. // to undo whatever its submit handler did.
$prev_step = islandora_ingest_form_get_previous_step($form_state); $prev_step = islandora_ingest_form_get_previous_step($form_state);
$form_id = $prev_step['form_id']; if ($prev_step['type'] == 'form') {
$submit_callback = $form_id . '_undo_submit'; $form_id = $prev_step['form_id'];
$submit = function_exists($submit_callback) ? array($submit_callback, 'islandora_ingest_form_previous_submit') : array('islandora_ingest_form_previous_submit'); $submit_callback = $form_id . '_undo_submit';
$submit = function_exists($submit_callback) ? array($submit_callback, 'islandora_ingest_form_previous_submit') : array('islandora_ingest_form_previous_submit');
}
else {
$submit = array('islandora_ingest_form_previous_submit');
}
return array( return array(
'#type' => 'submit', '#type' => 'submit',
'#value' => t('Previous'), '#value' => t('Previous'),
@ -611,7 +616,7 @@ function islandora_ingest_form_ingest_button(array &$form_state) {
* The Drupal form state. * The Drupal form state.
*/ */
function islandora_ingest_form_submit(array $form, array &$form_state) { function islandora_ingest_form_submit(array $form, array &$form_state) {
// Execute any remainng callbacks. // Execute any remaining callbacks.
islandora_ingest_form_increment_step($form_state); islandora_ingest_form_increment_step($form_state);
$step = islandora_ingest_form_get_step($form_state); $step = islandora_ingest_form_get_step($form_state);
if (isset($step) && $step['type'] == 'callback') { if (isset($step) && $step['type'] == 'callback') {

Loading…
Cancel
Save