简体   繁体   English

在第一个评论后如何以编程方式隐藏Fivestar评分字段?

[英]How to hide Fivestar rating field programatically after first comment?

I'd like to hide the Fivestar rating field (called 'field_stars') in my comment form when a user comments on a node on which he/she's already commented. 当用户在已经评论过的节点上发表评论时,我想在评论表单中隐藏Fivestar评分字段(称为“ field_stars”)。 I have a flag called Commented on my site and a rule that flags a node on behalf of the commentator when someone commented on it (which works perfectly). 我的网站上有一个标记为Commented的标记,当有人对此标记时,该规则代表注释者标记一个节点(效果很好)。 I tried to fix my problem, based on the information I found here : 我尝试根据在这里找到的信息来解决问题:

function hiderating_form_alter(&$form, &$form_state, $form_id) {
  global $user;
  $flag = flag_get_flag('commented') or die('no "commented" flag defined');
  if ($form_id == "comment_node_stuff_form") {
   if ($flag->is_flagged($form['#node']->uid, $user->uid)) { 
      unset($form['field_stars']);
    }
  }
}

Unfortunately, it doesn't change anything (I don't get any errors either). 不幸的是,它没有任何改变(我也没有任何错误)。 What did I do wrong? 我做错了什么?


After debugging with @jerdiggity's code I get: 用@jerdiggity的代码调试后,我得到:

DEBUG: form id "comment_node_stuff_form" found. Debugging...
DEBUG: The code $flag->is_flagged($form["#node"]->uid, $user->uid) is returning FALSE.

(of course I get the DEBUG: final form structure: too, but that's way to long to paste here). (当然,我也得到了DEBUG: final form structure: ,但是很想在这里粘贴)。 I don't understand why the flagging isn't recognized, as it is stored in the database... 我不明白为什么标记无法识别,因为它存储在数据库中...

Try adding these debug values to get to the root of the problem ( not on a live server, of course... Only in a development environment): 尝试添加以下调试值以找出问题的根源(当然, 不在实时服务器上……仅在开发环境中):

function hiderating_form_alter(&$form, &$form_state, $form_id) {
  global $user;
  if ($form_id == "comment_node_stuff_form") {
    // I'm not sure why the examples make use of "die" because that will stop the entire
    // site from continuing any further.
    $flag = flag_get_flag('commented');

    // ** Begin debug ** //
    // Notify us that we've at least got the right form.
    drupal_set_message(t('DEBUG: form id "comment_node_stuff_form" found. Debugging...'), 'warning');
    // Warn us if $flag is giving us issues
    if (!$flag) {
      drupal_set_message(t('DEBUG: No "commented" flag defined.'), 'warning');
    }
    // Check form components
    if (!isset($form['#node']) || !$form['#node']) {
      drupal_set_message(t('DEBUG: Something is wrong with or missing from $form["#node"]'), 'warning'); 
    }
    // Check more form components
    if (!isset($form['#node']->uid)) {
      drupal_set_message(t('DEBUG: $form["#node"]->uid is not set.'), 'warning'); 
    }
    // Again
    if (!isset($form['field_stars']) || empty($form['field_stars'])) {
      drupal_set_message(t('DEBUG: <em>$form["field_stars"]</em> is not set or is empty/false.'), 'warning'); 
    }
    // Check flag stuff
    if (!$flag->is_flagged($form['#node']->nid, $user->uid)) {
      drupal_set_message(t('DEBUG: The code <em>$flag->is_flagged($form["#node"]->nid, $user->uid)</em> is returning FALSE.'), 'warning'); 
    }
    // Again...
    if (!$flag->is_flagged($form['#node']->uid, $user->uid)) {
      drupal_set_message(t('DEBUG: The code <em>$flag->is_flagged($form["#node"]->uid, $user->uid)</em> is returning FALSE.'), 'warning'); 
    }
    // ** End debug ** //

    // Changing this to nid instead of uid
    if ($flag->is_flagged($form['#node']->nid, $user->uid)) { 
      unset($form['field_stars']);
    }
    // One more debug item:
    drupal_set_message('DEBUG: final form structure:<br/><pre>' . check_plain(print_r($form, 1)) . '</pre>', 'warning');
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM