Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-26-2005, 03:08 PM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Can someone break down this code for me please?

I know what it's supposed to do, and I know the outcome, but I'm having trouble determining what all the values are and why.

PHP Code:
$this->set('open'"IF(votenum >= 5 AND votetotal/votenum <= 2, 0, IF(votenum >= 5 AND votetotal/votenum >= 3 AND open=0, 1, open))"false); 
This little plugin was written for me by Kirby/Andreas, but I'm sure he's pretty busy right now. So if any of you have a minute...

Why the double quotes? What are the zeros for? What does the false at the end mean?

Thanks for the help.
Reply With Quote
  #2  
Old 10-26-2005, 03:42 PM
Wired1's Avatar
Wired1 Wired1 is offline
 
Join Date: Nov 2003
Location: Orlando, FL, USA
Posts: 1,361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's a basic pseudocode breakdown:

$this->set('open', "BINARY SWITCH_1", false);

BINARY_SWITCH_1 = IF(votenum >= 5 AND votetotal/votenum <= 2, 0, BINARY_SWITCH_2)

BINARY_SWITCH_2 = IF(votenum >= 5 AND votetotal/votenum >= 3 AND open=0, 1, open)

The first part of the switches seems to relate to a voting schema.

For #2, if there's more than 5 votes with an average vote that is equal to or greater than 3, AND open = 0, then that part is true. Dunno what the 1, open means.

For # 1, there's more than 5 votes with an average vote that is equal to or less than 2, then that part is true. Dunno what the rest means.

Is that the whole plugin? Which plugin hook does it use?
Reply With Quote
  #3  
Old 10-26-2005, 04:03 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Why not just ask Andreas ?
Reply With Quote
  #4  
Old 10-26-2005, 04:16 PM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M
Why not just ask Andreas ?
I could, but I bothered him enough to get this plugin written. Thought maybe someone else could help me out, as I'd like to add more to it but am failing to understand it.

btw, this is a 'thread rating moderation hack' It allows the users to vote crappy threads closed and good threads open...
Reply With Quote
  #5  
Old 10-26-2005, 06:49 PM
Wired1's Avatar
Wired1 Wired1 is offline
 
Join Date: Nov 2003
Location: Orlando, FL, USA
Posts: 1,361
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Makes more sense now, but I dunno why the if statement has 3 parts, unless it's another way to do a x ? y : z
Reply With Quote
  #6  
Old 10-26-2005, 07:59 PM
Alan @ CIT Alan @ CIT is offline
 
Join Date: Nov 2004
Location: South UK
Posts: 625
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The IF() in the original code is an SQL if(), not a PHP if().

The format for SQL if() can be found here: http://dev.mysql.com/doc/refman/5.0/...functions.html

What the first IF() statement is saying is:

Code:
if 'votenum' is greater than or equal to '5' and 'votetotal' divded by 'votenum' is less than or equal to '2', then return '0'
The second one is saying:

Code:
if 'votenum' is greater than or equal to 5 and 'votetotal' devided by 'votenum' is greater than or equal to '3', then return '1', otherwise return 'open' (which in this case is 0)
As for the double quotes, they are there because the Jelsoft code standards say that all SQL should be enclosed in double quotes.

The 'false' at the end of the set() method indicates that the data being passed (in this case the SQL statement) doesn't need to be cleaned by vBulletin (characters converted, etc)

Look up the set() method in class_dm.php for more info on it's arguments.
Reply With Quote
  #7  
Old 10-27-2005, 11:11 AM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

One more question. How do I determine what $this refers to? I'm guessing it just refers to the active table (maybe?), but how do I know what that is?

Thanks for all the help guys.
Reply With Quote
  #8  
Old 10-27-2005, 12:16 PM
Alan @ CIT Alan @ CIT is offline
 
Join Date: Nov 2004
Location: South UK
Posts: 625
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The plugin that you posted is run within a PHP class. $this, refers to that class.

For more info on Object Orientated PHP, take a look at http://www.spoono.com/php/tutorials/tutorial.php?id=27 or http://www.php.net/manual/en/language.oop.php
Reply With Quote
  #9  
Old 10-27-2005, 03:46 PM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Alan @ CIT
The plugin that you posted is run within a PHP class. $this, refers to that class.

For more info on Object Orientated PHP, take a look at http://www.spoono.com/php/tutorials/tutorial.php?id=27 or http://www.php.net/manual/en/language.oop.php
Very helpful. Thank you.

How would I wrap that SQL IF statement inside a PHP contitional?

PHP Code:
if ("IF(votenum >= 5 AND votetotal/votenum <= 2")
{
stuff

I doubt that is correct, but it's my only guess...

edit: What about this?
PHP Code:
if ("IF(votenum >= 5 AND votetotal/votenum <= 2, 1, 0)" == '1'
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 07:10 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.05795 seconds
  • Memory Usage 2,243KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (3)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete