View Single Post
  #211  
Old 04-27-2002, 03:33 AM
wooolF[RM]'s Avatar
wooolF[RM] wooolF[RM] is offline
 
Join Date: Jan 2002
Posts: 524
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

]
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]%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:
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01360 seconds
  • Memory Usage 1,908KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete