1 block.admin.inc | block_add_block_form($form, &$form_state) |
Form constructor for the 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_validate()
Related topics
File
- core/
modules/ block/ block.admin.inc, line 221 - Admin page callbacks for the Block module.
Code
function block_add_block_form($form, &$form_state) {
return block_admin_configure($form, $form_state);
}