function _linkchecker_scan_box_links in Link checker 5.2
Scan specified box for links. Helper function for job_queue scans.
Parameters
$bid: The box id to scan.
1 string reference to '_linkchecker_scan_box_links'
- _linkchecker_add_box_links in ./
linkchecker.module - Add box links to database.
File
- ./
linkchecker.module, line 1337 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function _linkchecker_scan_box_links($bid) {
$box = block_box_get($bid);
_linkchecker_add_box_links($box);
}