1 block.admin.inc block_add_block_form_validate($form, &$form_state)

Form validation handler for block_add_block_form().

Parameters

array $form: An associative array containing the structure of a portion of the form.

array $form_state: A keyed array containing the current state of the form.

See also

block_add_block_form()

block_add_block_form_submit()

File

core/modules/block/block.admin.inc, line 236
Admin page callbacks for the Block module.

Code

function block_add_block_form_validate($form, &$form_state) {
  return block_admin_configure_validate($form, $form_state);
}