You are here

vote_up_down_widget.tpl.php in Vote Up/Down 6

vote_up_down_widget.tpl.php

This template handles default voting widget output. Available variables:

  • $points: voting points of a same style as widget;
  • $class1: "vote-up-act", "vote-up-inact";
  • $class2: "vote-down-act", "vote-down-inact";
  • $title1, $title1: Contains a voting URL, should not be removed;
  • $link1, $link2: Voting links for users with disabled JS;
  • $cid: $node->nid or $comment->cid;

File

theme/vote_up_down_widget.tpl.php
View source
<?php

/**
 * @file vote_up_down_widget.tpl.php
 *
 * This template handles default voting widget output. Available variables:
 * - $points: voting points of a same style as widget;
 * - $class1: "vote-up-act", "vote-up-inact";
 * - $class2: "vote-down-act", "vote-down-inact";
 * - $title1, $title1: Contains a voting URL, should not be removed;
 * - $link1, $link2: Voting links for users with disabled JS;
 * - $cid: $node->nid or $comment->cid;
 */
?>
<div class="vote-up-down-widget">
  <?php

if ($class1) {
  ?>
    <span id="vote_up_<?php

  print $cid;
  ?>" class="<?php

  print $class1;
  ?>" title="<?php

  print $title1;
  ?>"><?php

  print $link1;
  ?></span>
    <span id="vote_down_<?php

  print $cid;
  ?>" class="<?php

  print $class2;
  ?>" title="<?php

  print $title2;
  ?>"><?php

  print $link2;
  ?></span>
  <?php

}
?>
</div>