node_comment_mode

Definition

node_comment_mode($nid)
modules/node/node.module, line 1447

Description

Retrieve the comment mode for the given node ID (none, read, or read/write).

Code

<?php
function node_comment_mode($nid) {
  static $comment_mode;
  if (!isset($comment_mode[$nid])) {
    $comment_mode[$nid] = db_result(db_query('SELECT comment FROM {node} WHERE nid = %d', $nid));
  }
  return $comment_mode[$nid];
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.