You are here

widget.tpl.php in Vote Up/Down 6.3

widget.tpl.php

UpAndDown widget theme for Vote Up/Down @todo use $show_up_as_link and $show_down_as_link

File

widgets/upanddown/widget.tpl.php
View source
<?php

/**
 * @file
 * widget.tpl.php
 *
 * UpAndDown widget theme for Vote Up/Down
 * @todo use $show_up_as_link and $show_down_as_link
 */
?>
<div class="vud-widget vud-widget-upanddown" id="<?php

print $id;
?>">
  <div class="up-score clear-block">
    <?php

if ($show_links) {
  ?>
      <?php

  if ($show_up_as_link) {
    ?>
        <a href="<?php

    print $link_up;
    ?>" rel="nofollow" class="<?php

    print "{$link_class_up}";
    ?>" title="<?php

    print t('Vote up!');
    ?>">
      <?php

  }
  ?>
          <div class="<?php

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

  print t('Vote up!');
  ?>"></div>
          <div class="element-invisible"><?php

  print t('Vote up!');
  ?></div>
      <?php

  if ($show_up_as_link) {
    ?>
        </a>
      <?php

  }
  ?>
    <?php

}
?>
    <span class="up-current-score"><?php

print $up_points;
?></span>
  </div>

  <div class="down-score clear-block">
    <?php

if ($show_links) {
  ?>
      <?php

  if ($show_down_as_link) {
    ?>
        <a href="<?php

    print $link_down;
    ?>" rel="nofollow" class="<?php

    print "{$link_class_down}";
    ?>" title="<?php

    print t('Vote down!');
    ?>">
      <?php

  }
  ?>
          <div class="<?php

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

  print t('Vote down!');
  ?>"></div>
          <div class="element-invisible"><?php

  print t('Vote down!');
  ?></div>
      <?php

  if ($show_down_as_link) {
    ?>
        </a>
      <?php

  }
  ?>
    <?php

}
?>
    <span class="down-current-score"><?php

print $down_points;
?></span>
  </div>
  <?php

if ($show_reset) {
  ?>
    <a href="<?php

  print $link_reset;
  ?>" rel="nofollow" class="<?php

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

  print $reset_long_text;
  ?>">
      <div class="<?php

  print $class_reset;
  ?>">
        <?php

  print $reset_short_text;
  ?>
      </div>
    </a>
  <?php

}
?>
</div>