欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

drupal 7 d7 drupal7 node 表 字段 comment 什么意思

  $node->comment = 1; 或 $node->comment COMMENT_NODE_CLOSED;   //表示 评论功能关闭 

见  comment.module 文件 定义     
/**
* Comments for this node are hidden.
*/
define('COMMENT_NODE_HIDDEN', 0);

/**
* Comments for this node are closed.
*/
define('COMMENT_NODE_CLOSED', 1);

/**
* Comments for this node are open.
*/
define('COMMENT_NODE_OPEN', 2);



在Drupal 7中,"node"是内容的基本单位,每个节点可以包含多个字段。"comment"字段是指与该节点相关的评论功能。

具体来说,"comment"字段允许用户对节点内容进行评论,通常用于文章、博客或任何可以被用户互动的内容。通过这个字段,用户可以发表意见、提问或进行讨论。




普通分类: