You are here

function rules_action_load_comment in Rules 6

Action: Load a comment by id.

Related topics

File

rules/modules/comment.rules.inc, line 137
rules integration for the comment module

Code

function rules_action_load_comment($cid) {
  return array(
    'comment_loaded' => _comment_load($cid),
  );
}