function hook_comment_load

hook_comment_load($comments)

Comments are being loaded from the database.

Parameters

$comments: An array of comment objects indexed by cid.

Related topics

File

modules/comment/comment.api.php, line 54
Hooks provided by the Comment module.

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;
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!comment!comment.api.php/function/hook_comment_load/7.x