Quote:
Originally Posted by TalkVirginia
I don't know if anyone has answered this or if you have already figured it out but you would need to handle this logic in your php code then render the variable accordingly.
|
how would one do this?
i have in my plugin the following code:
Code:
$rkc_getobject = $vbulletin->input->clean_gpc('r', 'rkc_object', TYPE_UINT);
$rkc_variable1 = $vbulletin->db->query_first("
SELECT id, name, class_1, class_1_level
FROM " . TABLE_PREFIX . "rkc_table AS rkc_table
WHERE id = '" . $vbulletin->db->escape_string($rkc_getobject) . "'
");
$rkc_variable1['name'] = htmlspecialchars($rkc_variable1['name']);
$rkc_variable1['class_1'] = htmlspecialchars($rkc_variable1['class_1']);
$rkc_variable1['class_1_level'] = htmlspecialchars($rkc_variable1['class_1_level']);
And i want to display a conditional to accoplish something like the following:
Code:
<vb:if condition"($rkc_variable1['class_1']) == ClassType1">
selected code goes here
</vb:if>
now, i know i can use
Code:
{vb:raw rkc_variable1.class_1}
to post the contents in a template, but if i cannot use {vb:raw} in a conditional, how would this goal be accomplished?