PHP Drupal改变评论表格

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal改变评论表格相关的知识,希望对你有一定的参考价值。

/**
* Implementation of HOOK_theme().
*/
function THEMENAME_theme() {
return array(
'comment_form' => array(                       
      'arguments' => array('form' => NULL),
    ),
  );
}

// theme the comment form
function THEMENAME_comment_form($form) {
  // Make the text-area smaller.
  $form['comment_filter']['comment']['#rows']   = 5;
  // Change the text-area title
  $form['comment_filter']['comment']['#title']  = t('Your message');
  // Remove input formats information.
  $form['comment_filter']['format'] = NULL;
  // Removes homepage field
  unset($form['homepage']);
  // Removes preview button
  unset($form['preview']);             
  return drupal_render($form);
}

以上是关于PHP Drupal改变评论表格的主要内容,如果未能解决你的问题,请参考以下文章

PHP 从drupal anon作者评论中删除“未经验证”

drupal 视图中的 Disqus 评论

php 评论表格占位符

Drupal 搜索模块直接链接到评论

如何在Drupal7中用代码批量创建节点评论和分类

Drupal:评论的访问限制