You are here

function linkchecker_block_add_form_submit in Link checker 5.2

Same name and namespace in other branches
  1. 6.2 linkchecker.module \linkchecker_block_add_form_submit()

Custom submit handler for block add page.

File

./linkchecker.module, line 1006
This module periodically check links in given node types, blocks, cck fields, etc.

Code

function linkchecker_block_add_form_submit($form_id, $form_values) {
  $bid = db_result(db_query("SELECT MAX(bid) FROM {boxes}"));
  _linkchecker_add_box_links($form_values, $bid);
}