Community Documentation

block_box_form_submit

5 block.module block_box_form_submit($form_id, $form_values)

File

modules/block/block.module, line 512
Controls the boxes that are displayed around the main content.

Code

<?php
function block_box_form_submit($form_id, $form_values) {
  if (!form_get_errors()) {
    if (block_box_save($form_values)) {
      drupal_set_message(t('The block has been created.'));
      return 'admin/build/block';
    }
  }
}
?>
Login or register to post comments