function linkchecker_block_configure_form_submit in Link checker 6.2
Same name and namespace in other branches
- 5.2 linkchecker.module \linkchecker_block_configure_form_submit()
Custom submit handler for block configure page.
1 string reference to 'linkchecker_block_configure_form_submit'
File
- ./
linkchecker.module, line 876 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function linkchecker_block_configure_form_submit($form, &$form_state) {
if (variable_get('linkchecker_scan_blocks', 0)) {
_linkchecker_add_box_links($form_state['values'], $form_state['values']['delta']);
}
}