1

私は投票軸でfivestar 1.19を使用しています。デフォルトの fivestar ブロック/fivestar 関数は、デフォルトの「投票」タグのみを使用していると思います。

fivestar_widget_form($ノード)

カスタムの Fivestar タグを関数に渡す必要があります。

以下の答えに従おうとしています: 私にとって $object は $node です。

  <?php 
function custom_fivestar_widget ($object) {
  global $user;

  $star_display = variable_get('fivestar_style_'. $object->type, 'average');
  $text_display = variable_get('fivestar_text_'. $object->type, 'dual');

  if ($star_display == 'average' && ($text_display == 'average' || $text_display == 'none')) {
    // Save a query and don't retrieve the user vote unnecessarily.
    $votes = fivestar_get_votes($object->type, $object->nid, 'score', 0);
  }
  else {
    $votes = fivestar_get_votes($object->type, $object->nid);
  }

  $values = array(
    'user' => isset($votes['user']['value']) ? $votes['user']['value'] : 0,
    'average' => isset($votes['average']['value']) ? $votes['average']['value'] : 0,
    'count' => isset($votes['count']['value']) ? $votes['count']['value'] : 0,
  );

  $settings = array(
    'stars' => variable_get('fivestar_stars_'. $object->type, 10),
    'allow_clear' => variable_get('fivestar_unvote_'. $object->type, FALSE),
    'style' => $star_display,
    'text' => $text_display,
    'content_type' => $object->type,
    'content_id' => $object->nid,
    'tag' => 'score',
    'autosubmit' => TRUE,
    'title' => variable_get('fivestar_title_'. $object->type, 1) ? NULL : FALSE,
    'feedback_enable' => variable_get('fivestar_feedback_'. $object->type, 1),
    'labels_enable' => variable_get('fivestar_labels_enable_'. $object->type, 1),
    'labels' => variable_get('fivestar_labels_'. $object->type, array()),
  );

  return fivestar_custom_widget($form_state, $values, $settings);
}

print drupal_get_form('custom_fivestar_widget', $object);

?>

これにより、ウィジェットが出力されます。スコアを使用していると思います。ただし、平均スコアと同様に、テキスト表示はすべて間違っています。そして、それはすべてに恒久的な10個の星を与えます. :(

4

1 に答える 1

0

Fivestar.module で、fivestar_form 関数を再現できます。そこにある $settings 変数を参照してください。
したがって、この関数の内部をコピーし、いくつかの変数チェックを削除し、いくつかの変数を手動で設定してください。$settings 配列で、必要に応じて「タグ」値に設定します。

于 2010-01-20T04:43:33.190 に答える