Add comment programmatically in Drupal 7
- by volocuga
trying to create a comment in own module.
$comment = new stdClass();
$comment->nid = 555; // Node Id the comment will attached to
$comment->cid = 0;
$comment->pid = 0;
$comment->uid = 1;
$comment->mail = '[email protected]';
$comment->name = 'admin';
$comment->is_anonymous = 0;
$comment->homepage = '';
$comment->status = COMMENT_PUBLISHED;
$comment->language = LANGUAGE_NONE;
$comment->subject = 'Comment subject';
$comment->comment_body[$comment->language][0]['value'] = 'Comment body text';
$comment->comment_body[$comment->language][0]['format'] = 'filtered_html';
comment_submit($comment);
comment_save($comment);
The code causes the following error:
Fatal error: Call to undefined function node_load() in
BLA/BLA/comment.module on line 1455
node_load() function is in node module which, of course, enabled.
How to fix it?
Thanks!