]
Quote:
Originally posted by nakkid
nice results. thanks woolf. 
can you post a tutorial on how to add the poll to vbHome? is pulled from the forums.
|
sure...
1) make a new template called home_poll
PHP Code:
<form action="$bburl/poll.php" method="get">
<input type="hidden" name="s" value="$session[sessionhash]">
<input type="hidden" name="action" value="pollvote">
<input type="hidden" name="pollid" value="$pollinfo[pollid]">
<table cellpadding="0" cellspacing="0" border="0" width="95%" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td bgcolor="#13486D" align="center" colspan="4"><smallfont><b>$pollinfo[question]</b></smallfont></td>
</tr>
$pollbits
</table>
</td></tr></table>
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td style="font-size: 8pt" align=center><smallfont><br><input type="submit" class="bginput" value="Vote!" style="font-size: 8pt"><br><br>
<a href="$bburl/poll.php?s=$session[sessionhash]&action=showresults&pollid=$pollinfo[pollid]">Result</a>
</smallfont></td></tr>
</table>
</form>
2) make a new template called home_pollresult
PHP Code:
<table cellpadding="0" cellspacing="0" border="0" align="center"><tr><td>
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td colspan="3" bgcolor="#13486D" align="center"><smallfont><b>
$pollinfo[question]</b></smallfont><br>
<smallfont>$pollstatus</smallfont></td>
</tr>
$pollbits
<tr>
<td bgcolor="#0A293E" align="right" ><smallfont color ="#EEEEFF"><b>Votes:</b></smallfont></td>
<td bgcolor="#0A293E" align="center"><smallfont color ="#EEEEFF" ><b>$pollinfo[numbervotes]</b></smallfont></td>
<td bgcolor="#0A293E" align="center"><smallfont color ="#EEEEFF"><b>100%</b></smallfont></td>
</tr>
<tr><td colspan=3 bgcolor="#13486D" align=center><smallfont><a href="$bburl/showthread.php?s=$session[sessionhash]&threadid=$pollinfo[threadid]">Comments <b>$pollreplies</b></a></smallfont><br>
<a href="$bburl/forumdisplay.php?s=$session[sessionhash]&forumid=$pollsforum"><smallfont>More Polls</smallfont></a></td></tr></table></td></tr>
</table>
2) edit your vbhome's index.php
2a. right under
PHP Code:
// news forum
$newsforum="47";
add
PHP Code:
// polls forum
$pollsforum="48";
psssttt... remember to change forum ids!
2b. right in the end of the file before
PHP Code:
eval("dooutput(\"".gettemplate('home')."\");");
add this:
PHP Code:
// poll
// -------------------------
$pollinfo=$DB_site->query_first("SELECT *,thread.open FROM poll LEFT JOIN thread ON (thread.pollid = poll.pollid) WHERE thread.forumid='$pollsforum' ORDER BY poll.dateline DESC LIMIT 1");
if (!empty($pollinfo[question])){
$pollinfo[question]=bbcodeparse($pollinfo[question],$pollsforum,1);
$splitoptions=explode("|||", $pollinfo[options]);
$splitvotes=explode("|||",$pollinfo[votes]);
$pollisclosed=0;
$pollisactive=$pollinfo[poll.active];
$pollid=$pollinfo[poll.pollid];
$pollreplycount=$pollinfo[replycount];
if ($pollreplycount == "0") {
$pollreplies = "";
}
elseif ($pollreplycount == "1") {
$pollreplies = " (1)";
}
else {
$pollreplies = " ($pollreplycount)";
}
if (!$pollinfo[active] or !$pollinfo[open] or ($pollinfo[dateline]+($pollinfo[timeout]*86400)<time() and $pollinfo[timeout]!=0)){
//thread/poll is closed, ie show results no matter what
$pollisclosed=1;
} else {
//get userid, check if user already voted
if ($uservote=$DB_site->query_first("SELECT pollvoteid FROM pollvote WHERE userid='$bbuserinfo[userid]' AND pollid=$pollinfo[pollid]")) {
$uservoted=1;
}
}
$counter=0;
while ($counter++<$pollinfo[numberoptions]) {
$pollinfo[numbervotes]+=$splitvotes[$counter-1];
}
$counter=0;
$pollbits="";
while ($counter++<$pollinfo[numberoptions]) {
$option[question] = bbcodeparse($splitoptions[$counter-1],$pollsforum,1);
$option[votes] = $splitvotes[$counter-1]; //get the vote count for the option
$option[number] = $counter; //number of the option
// Now we check if the user has voted or not
if ($pollisclosed or $uservoted) { // user did vote or poll is closed
if ($option[votes] == 0){
$option[percent]=0;
} else{
$option[percent] = number_format($option[votes]/$pollinfo[numbervotes]*100,2);
}
$option[graphicnumber]=$option[number]%6 + 1;
// $option[barnumber] = round($option[percent])*2;
$option[barnumber] = round($option[percent]);
$option[percent] = round($option[percent]);
if ($pollisclosed) {
$pollstatus = "Poll closed.";
} elseif ($uservoted) {
$pollstatus = "You have already voted.";
}
$pollbits .= "<tr><td bgcolor=\"#1C5780\" align=\"left\"><smallfont>$option[question]</smallfont></td> <td bgcolor=\"#1C5780\" width=\"20\" align=\"left\"><smallfont>$option[votes]</smallfont></td><td bgcolor=\"#1C5780\" align=\"left\" width=\"30\"><smallfont>$option[percent]%</smallfont></td></tr>";
} else {
// $pollbits .= "<tr><td bgcolor=\"#1C5780\" width=\"5%\"><input type=\"radio\" name=\"optionnumber\" value=\"$option[number]\"></td><td bgcolor=\"#1C5780\" colspan=\"3\"><smallfont>$option[question]</smallfont></td></tr>";
if ($pollinfo['multiple']) {
$pollbits .= "<tr><td bgcolor=\"#1C5780\" width=\"5%\" onMouseOver=\"this.style.backgroundColor='#13486D'; this.style.cursor='hand';\" onMouseOut=\"this.style.backgroundColor='#1C5780';\"><input type=\"checkbox\" name=\"optionnumber[$option[number]]\" value=\"yes\"></td><td bgcolor=\"#1C5780\" colspan=\"3\"><smallfont>$option[question]</smallfont></td></tr>";
}else{
$pollbits .= "<tr><td bgcolor=\"#1C5780\" width=\"5%\" onMouseOver=\"this.style.backgroundColor='#13486D'; this.style.cursor='hand';\" onMouseOut=\"this.style.backgroundColor='#1C5780';\"><input type=\"radio\" name=\"optionnumber\" value=\"$option[number]\"></td><td bgcolor=\"#1C5780\" colspan=\"3\"><smallfont>$option[question]</smallfont></td></tr>";
}
}
}
if ($pollisclosed or $uservoted) {
eval("\$poll = \"".gettemplate('home_pollresult')."\";");
} else {
eval("\$poll = \"".gettemplate('home_poll')."\";");
}
} else {
$poll="No poll available.";
}
//poll finished///////////////////////////////////////////////////////////////////////////
4) edit your home template. Add there $poll everywhere u wish
5) Make a new poll in your vbhome poll forum (by the way, be sure to edit group permissions for it, so only admins or trusted group can make new polls)
6) Enjoy :bunny:
PS: