You are here

function ocupload_form_alter in One Click Upload 7.2

Same name and namespace in other branches
  1. 7 ocupload.module \ocupload_form_alter()

Implements hook_form_alter().

File

./ocupload.module, line 205

Code

function ocupload_form_alter(&$form, &$form_state, $form_id) {
  if ($form['#method'] == 'post') {
    if (!isset($form['#submit'])) {
      $form['#submit'][] = 'ocupload_change_files_status';
    }
    else {
      array_unshift($form['#submit'], 'ocupload_change_files_status');
    }
  }
}