Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBSurvey v1.0 Details »»
vBSurvey v1.0
Version: 1.0, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 11-15-2004 Last Update: Never Installs: 39
DB Changes
 
No support by the author.

vBSurvey

What is it?
vBSurvey is a system in which you may create your own surveys on your forum. You create a survey and add questions to the survey, that people may answer if they wish.

Features
    • Forum Side
    • View All "Open" Surveys
    • Take Survey
      • Don't have to complete all questions
    • View Survey Stats
      • Only shows stats for questions the user has answered themself
    • Admin Side
    • Add A New Survey
      • Input Survey Name
      • Choose If Survey Is Open Or Closed
    • Control Surveys (Edit/Delete)
    • Add A New Question
      • Choose which survey the question is for
      • Input Question Name
      • Input available options for question
    • Control Questions (Edit/Delete)

Install will take you hardly any time at all, and if your wanting to make surveys on your forum for whatever reason, ie: Members can vote for a decision which is uncertain between your staff. Then this is just great for that application.

Skin/DB/Phrase Modifications/Additions All Automatic

If you have a question please post below, enjoy

- Zero Tolerance

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 11-19-2004, 10:41 AM
draculanowaday draculanowaday is offline
 
Join Date: Feb 2004
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hix. I did as you asked in readme file but i just recived a blank page.
Reply With Quote
  #23  
Old 11-19-2004, 01:58 PM
Zero Tolerance's Avatar
Zero Tolerance Zero Tolerance is offline
 
Join Date: Feb 2004
Location: England
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by draculanowaday
hix. I did as you asked in readme file but i just recived a blank page.
The templates install on your default skin, change your default skin to another and run the skin install part again to add the templates on other skins you may have

- Zero Tolerance
Reply With Quote
  #24  
Old 11-19-2004, 08:01 PM
alkatraz alkatraz is offline
 
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 384
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
The templates install on your default skin, change your default skin to another and run the skin install part again to add the templates on other skins you may have

- Zero Tolerance
was just about to ask that, that worked for me

great script and installer! works perfectly (1 suggestion, add a selector for the vbstyle to modifiy)

thank you!!
Reply With Quote
  #25  
Old 11-21-2004, 03:33 PM
Zero Tolerance's Avatar
Zero Tolerance Zero Tolerance is offline
 
Join Date: Feb 2004
Location: England
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alkatraz
was just about to ask that, that worked for me

great script and installer! works perfectly (1 suggestion, add a selector for the vbstyle to modifiy)

thank you!!
Yeah i will do that in future, stops confusion and extra work

- Zero Tolerance
Reply With Quote
  #26  
Old 11-21-2004, 03:59 PM
Loki12 Loki12 is offline
 
Join Date: Jul 2004
Posts: 152
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Fantastic! Just what I needed....
Reply With Quote
  #27  
Old 11-22-2004, 04:03 PM
Cheertobi Cheertobi is offline
 
Join Date: Aug 2004
Location: Germany
Posts: 178
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

is it possible to view the stats, but only admins can see the usernames who voted?!

Regards,

Tobias
Reply With Quote
  #28  
Old 11-25-2004, 03:04 AM
alkatraz alkatraz is offline
 
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 384
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cheertobi
Hi,

is it possible to view the stats, but only admins can see the usernames who voted?!

Regards,

Tobias
Beaten to the punch again!

Just discovered that my members can see who voted, I'd love an option for it to be visable to admins only.

Just wanted to mention again, this is a great hack for doing market research and R&D, thanks a ton!
Reply With Quote
  #29  
Old 11-25-2004, 03:39 AM
akiy's Avatar
akiy akiy is offline
 
Join Date: Dec 2001
Posts: 74
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alkatraz
Just discovered that my members can see who voted, I'd love an option for it to be visable to admins only.
It looks like you're going to have to modify the code as the table rows/cells that make up the "Who voted" row isn't template-ized.

Any way, here's one way to do this if you only want Administrators (usergroupid = 6) to see the stats:

Replace:
Code:
		 $Options .= "<tr>		 
 		 <td width='80%' class='alt2'>{$opt['q']}</td>		 
 		 <td width='20%' class='alt1' align='center'>This has had {$opt['votes']} vote(s)</td>
 		 </tr>			 
 		 <tr>			 
 		 <td width='100%' class='alt1' colspan='2'><b>Who Voted:</b> {$thisVoted}</td> 
 		 </tr>			 
   		  \n";
with:
Code:
		 $Options .= "<tr>		 
 		 <td width='80%' class='alt2'>{$opt['q']}</td>		 
 		 <td width='20%' class='alt1' align='center'>This has had {$opt['votes']} vote(s)</td>
   		  </tr>";
   		  if ($bbuserinfo[usergroupid] == 6) {
   		 $Options .="<tr>		     
 		 <td width='100%' class='alt1' colspan='2'><b>Who Voted:</b> {$thisVoted}</td> 
 		 </tr>			 
   		 \n";
 		 }
You can modify the "if" confitional to include more usergroupids (eg "if ($bbuserinfo[usergroupid] == 6 || $bbuserinfo[usergroupid] == 7)") if you want other usergroups to see the stats...

Hope that helps!
Reply With Quote
  #30  
Old 11-25-2004, 09:24 AM
Cheertobi Cheertobi is offline
 
Join Date: Aug 2004
Location: Germany
Posts: 178
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

@akiy
yep, found that out last night and worked great! Thanks for helping anyway.

Regards,

Tobias
Reply With Quote
  #31  
Old 11-25-2004, 08:55 PM
alkatraz alkatraz is offline
 
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 384
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

awesome! thx for the support

one problem in your fix tho
missing a } to close the if condition. added one after \n"; and it works great
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:24 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04543 seconds
  • Memory Usage 2,311KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete