block_box_add

Versions
4.6 – 4.7
block_box_add()

Menu callback; displays the block creation form.

Code

modules/block.module, line 460

<?php
function block_box_add() {
  $form = block_box_form();
  $form['submit'] = array('#type' => 'submit', '#value' => t('Save block'));

  return drupal_get_form('block_box_add', $form);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.