You are here

function ocupload_form_alter in One Click Upload 7

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

Implements hook_form_alter().

File

./ocupload.module, line 144
Hooks and general functions

Code

function ocupload_form_alter(&$form, &$form_state, $form_id) {
  if (variable_get('ocupload_delete_unused_files', 1) && isset($form['#submit'])) {
    array_unshift($form['#submit'], 'ocupload_change_files_status');
  }
}