function _linkchecker_comment_load in Link checker 5.2
Same name and namespace in other branches
- 6.2 linkchecker.module \_linkchecker_comment_load()
Load comment as array.
4 calls to _linkchecker_comment_load()
- _linkchecker_batch_comments_import_op in ./
linkchecker.module - Batch operation: Load all comments, 100 by hundred.
- _linkchecker_batch_import_comments_op in ./
linkchecker.module - Batch operation: Load all boxes, 100 by 100.
- _linkchecker_scan_comment_links in ./
linkchecker.module - Scan specified comment for links. Helper function for job_queue scans.
- _linkchecker_status_handling in ./
linkchecker.module - Status code handling.
File
- ./
linkchecker.module, line 1887 - This module periodically check links in given node types, blocks, cck fields, etc.
Code
function _linkchecker_comment_load($cid) {
return db_fetch_array(db_query('SELECT * FROM {comments} WHERE cid = %d', $cid));
}