Quote:
Originally Posted by greigeh
This is technically what i mean, but is that string not available as a pre-made if condition? cause to me that looks like to be used in a script or something.
|
just for learning =) what i posted is a real if condition, what vbulletin uses is it's own variation of php / html so
in php
Code:
if ($_REQUEST['do'] == 'action') {
Do this
} else {
Do that
}
or even better:
Code:
($_REQUEST['do'] == 'action') ? (Do this) : (Do that)
is the same as
vBulletin php/html
Code:
<if condition="$_REQUEST['do'] == 'action'">
do this
<else />
do that
</if>
all 3 blocks of code are the same and its good to know these ways for plugins / templates