The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
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:
Why the double quotes? What are the zeros for? What does the false at the end mean? Thanks for the help. |
#2
|
||||
|
||||
![]()
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? |
#3
|
||||
|
||||
![]()
Why not just ask Andreas ?
|
#4
|
|||
|
|||
![]() Quote:
btw, this is a 'thread rating moderation hack' It allows the users to vote crappy threads closed and good threads open... |
#5
|
||||
|
||||
![]()
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
|
#6
|
|||
|
|||
![]()
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' 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) 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. |
#7
|
|||
|
|||
![]()
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. |
#8
|
|||
|
|||
![]()
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 |
#9
|
|||
|
|||
![]() Quote:
How would I wrap that SQL IF statement inside a PHP contitional? PHP Code:
edit: What about this? PHP Code:
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|