You are here

function rate_preprocess_rate_template_emotion in Rate 7

Same name and namespace in other branches
  1. 6.2 rate.module \rate_preprocess_rate_template_emotion()

Preprocess function for the emotion template.

File

./rate.module, line 1210
Rate module

Code

function rate_preprocess_rate_template_emotion(&$variables) {
  extract($variables);
  $buttons = array();
  foreach ($links as $link) {
    $button = theme('rate_button', array(
      'text' => $link['text'],
      'href' => $link['href'],
      'class' => 'rate-emotion-btn',
    ));
    $button .= $link['votes'];
    $buttons[] = $button;
  }
  $variables['buttons'] = $buttons;
  $info = array();
  if ($mode == RATE_CLOSED) {
    $info[] = t('Voting is closed.');
  }
  if ($mode != RATE_COMPACT && $mode != RATE_COMPACT_DISABLED) {
    if (isset($results['user_vote'])) {
      $info[] = t('You voted \'@option\'.', array(
        '@option' => t($results['user_vote']),
      ));
    }
  }
  $variables['info'] = implode(' ', $info);
}