You are here

function imageblock_form_alter in Image Block 6

Same name and namespace in other branches
  1. 7 imageblock.module \imageblock_form_alter()

Implements hook_form_alter().

File

./imageblock.module, line 92
imageblock.module Primarily Drupal hooks.

Code

function imageblock_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'block_admin_configure' || $form_id == 'imageblock_add_block_form') {
    if ($form['module']['#value'] == 'imageblock') {
      $form['#attributes']['enctype'] = 'multipart/form-data';
      $form['#validate'][] = 'imageblock_configure_form_validate';
    }
  }
}