2012-10-27 08:00:09 +00:00
< ?
2012-11-14 08:00:19 +00:00
$UserVotes = Votes :: get_user_votes ( $LoggedUser [ 'ID' ]);
$GroupVotes = Votes :: get_group_votes ( $GroupID );
2012-10-27 08:00:09 +00:00
2012-11-14 08:00:19 +00:00
$TotalVotes = $GroupVotes [ 'Total' ];
$UpVotes = $GroupVotes [ 'Ups' ];
2012-10-27 08:00:09 +00:00
2012-11-14 08:00:19 +00:00
$Voted = isset ( $UserVotes [ $GroupID ]) ? $UserVotes [ $GroupID ][ 'Type' ] : false ;
2012-10-27 08:00:09 +00:00
?>
< div class = " box " id = " votes " >
2012-11-14 08:00:19 +00:00
< div class = " head " >< strong > Album votes </ strong ></ div >
2012-10-27 08:00:09 +00:00
< div class = " album_votes body " >
This has < span id = " upvotes " class = " favoritecount " >< ? = $UpVotes ?> </span> <?=(($UpVotes==1)?'upvote':'upvotes')?> out of <span id="totalvotes" class="favoritecount"><?=$TotalVotes?></span> total<span id="upvoted" <?=($Voted!='Up'?'class="hidden"':'')?>>, including your upvote</span><span id="downvoted" <?=($Voted!='Down'?'class="hidden"':'')?>>, including your downvote</span>.
< br />< br />
< ? if ( check_perms ( 'site_album_votes' )) { ?>
2012-12-27 08:00:27 +00:00
< span < ? = ( $Voted ? 'class="hidden"' : '' ) ?> id="vote_message"><a href="#" class="upvote" onclick="UpVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Upvote</a> - <a href="#" class="downvote" onclick="DownVoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Downvote</a></span>
2012-10-27 08:00:09 +00:00
< ? } ?>
2012-12-27 08:00:27 +00:00
< span < ? = ( $Voted ? '' : 'class="hidden"' ) ?> id="unvote_message">Changed your mind?<br /><a href="#" onclick="UnvoteGroup(<?=$GroupID?>, '<?=$LoggedUser['AuthKey']?>'); return false;">Clear your vote</a></span>
2012-10-27 08:00:09 +00:00
</ div >
</ div >