Thread: Add-On Releases - vBulletin Raffles
View Single Post
  #325  
Old 10-05-2011, 06:33 PM
nhawk nhawk is offline
 
Join Date: Jan 2011
Posts: 1,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by OverhaulNetwork View Post
Here is another suggestion I would like to see implemented. When I enable Show Raffles Already Drawn raffles seem to show in order of when they were started. I think it would make more sense to have them sorted by when the draw date is. I am forced to disable this feature because I don't want active raffles to be buried by raffles that have already been drawn.

Also have you given more thought to changing the cutoff time to buy tickets from 12:00AM? Maybe an option per raffle in minutes to choose cutoff times? Right now I am forced to set my raffles to end on the day following that actual day I draw as I have many members get tickets right up until I manually draw the raffle. This causes some confusion as the draw date shows as the following day. I am also forced to change the date back to the actual draw date right before drawing otherwise the raffle will remain showing current on the raffle page and side block even though it has been drawn.
I won't make the change on the general released version, but I will tell you what needs to be changed. Just be aware that the raffle system has run on the site it was developed for, for nearly 4 years. The midnight entry deadline was created because of problems with people entering at the very last moment and the result becoming skewed because of that.

For your listing of raffles, edit raffles.php. Locate the FIRST instance of this code...
Code:
	$getraffle = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "raffle
		WHERE startdate <= $timenow
		$oldentryopt
		ORDER BY id DESC
	");
And change it to this code..
Code:
	$getraffle = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "raffle
		WHERE startdate <= $timenow
		$oldentryopt
		ORDER BY enddate DESC
	");
That will sort the raffles by end date in decending order.

Now, the entry deadline...

Locate ALL instances of this code..
Code:
$oneless = $raffle['enddate']-86400;
And change it to..
Code:
$oneless = $raffle['enddate'];
Locate this code..
Code:
if($check_raffle_date <= $current_date && $raffle['winner'] == "")
{
	$raffle['status'] = "<font color='". $vbulletin->options['raffle_wait_color'] . "'><b>" . $vbphrase['raffle_waiting'] . "</b></font>";
}elseif($raffle['winner'] != ""){
	$raffle['status'] = "<font color='". $vbulletin->options['raffle_drawn_color'] . "'><b>" . $vbphrase['raffle_drawn'] . "</b></font>";
}
else
{
	$raffle['status'] = "<font color='". $vbulletin->options['raffle_active_color'] . "'><b>" . $vbphrase['raffle_active'] . "</b></font>";
}
And change to..
Code:
if($raffle['winner'] != "")
{
	$raffle['status'] = "<font color='". $vbulletin->options['raffle_drawn_color'] . "'><b>" . $vbphrase['raffle_drawn'] . "</b></font>";
}
else
{
	$raffle['status'] = "<font color='". $vbulletin->options['raffle_active_color'] . "'><b>" . $vbphrase['raffle_active'] . "</b></font>";
}
Locate this code..
Code:
if(($check_raffle_date <= $current_date) && $detail['winner'] == "")
{
	$detail['status'] = "<font color='". $vbulletin->options['raffle_wait_color'] . "'><b>" . $vbphrase['raffle_waiting'] . "</b></font>";
}elseif($detail['winner'] != "")
{
	$detail['status'] = "<font color='". $vbulletin->options['raffle_drawn_color'] . "'><b>" . $vbphrase['raffle_drawn'] . "</b></font>";
}
else
{
	$detail['status'] = "<font color='". $vbulletin->options['raffle_active_color'] . "'><b>" . $vbphrase['raffle_active'] . "</b></font>";
	$detail['active'] = $vbphrase['raffle_active'];
}
And change to this...
Code:
if($detail['winner'] != "")
{
	$detail['status'] = "<font color='". $vbulletin->options['raffle_drawn_color'] . "'><b>" . $vbphrase['raffle_drawn'] . "</b></font>";
}
else
{
	$detail['status'] = "<font color='". $vbulletin->options['raffle_active_color'] . "'><b>" . $vbphrase['raffle_active'] . "</b></font>";
	$detail['active'] = $vbphrase['raffle_active'];
}

Locate this code..
Code:
if($check_raffle_date == $current_date && $detail['winner'] == "")
{
	$show['msg'] = TRUE;
	$msg = "<font color='". $vbulletin->options['raffle_drawn_color'] . "'>" . $vbphrase['raffle_closed'] . "</font>";
}
And delete it.

Near the end of raffles.php locate this code...
Code:
if($current_date >= $oneless) eval(standard_error(fetch_error('raffle_entry_ended')));
And delete it.

That should allow entries right up until you actually draw the raffle. I strongly recommend against this. And I also recommend you disable the scheduled draw task if you do this.

If you make these changes, I can't support any problems that may happen. I hope you understand.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01161 seconds
  • Memory Usage 1,800KB
  • 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
  • (10)bbcode_code
  • (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