function hook_comment_load
Comments are being loaded from the database.
Parameters
$comments: An array of comment objects indexed by cid.
Related topics
2 functions implement hook_comment_load()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- entity_crud_hook_test_comment_load in modules/
simpletest/ tests/ entity_crud_hook_test.module - Implements hook_comment_load().
- rdf_comment_load in modules/
rdf/ rdf.module - Implements hook_comment_load().
File
-
modules/
comment/ comment.api.php, line 54
Code
function hook_comment_load($comments) {
$result = db_query('SELECT cid, foo FROM {mytable} WHERE cid IN (:cids)', array(
':cids' => array_keys($comments),
));
foreach ($result as $record) {
$comments[$record->cid]->foo = $record->foo;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.