Community Documentation

block_box_form_validate

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

File

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

Code

<?php
function block_box_form_validate($form_id, $form_values) {
  if (empty($form_values['info']) || db_num_rows(db_query("SELECT info FROM {boxes} WHERE info = '%s'", $form_values['info']))) {
    form_set_error('info', t('Please ensure that each block description is unique.'));
  }
}
?>
Login or register to post comments