![]() |
[SOLVED] vbulletin doesn't like ternary operators?
for simplistic code sake I'm trying to use ternary operators in my products.
Here's what im trying to simplify: Code:
if ($vbulletin->options['drc_embed_vine_smpl']) { Code:
$drc_embed_vine = '<iframe src="https://vine.co/v/$2/embed/'.(($vbulletin->options['drc_embed_vine_smpl']) ? "simple" : "postcard").'" width="480" height="480" frameborder="0"></iframe>'; Code:
$drc_embed_vine='<iframe src="https://vine.co/v/$2/embed/'.(($vbulletin->options['drc_embed_vine_smpl'])?'simple':'postcard')).' width="480" height="480" frameborder="0">'; Code:
$drc_embed_vine='<iframe src="https://vine.co/v/$2/embed/'.(($vbulletin->options[\'drc_embed_vine_smpl\'])?'simple':'postcard')).' width="480" height="480" frameborder="0">'; although Code:
$drc_embed_vine = '<iframe src="https://vine.co/v/$2/embed/'.(($vbulletin->options['drc_embed_vine_smpl']) ? "simple" : "postcard").'" width="480" height="480" frameborder="0"></iframe>'; btw Code:
$vbulletin->options['drc_embed_vine_smpl'] where am i going wrong =/ |
vBulletin does like it, it's just that you probably use the if statement wrong of the ternary operator.
Does $vbulletin->options['drc_embed_vine_smpl'] literally contain a boolean: true/false or does it contain a number 1 (true) and 0 (false)? If it's really a boolean, then the following should work just fine: PHP Code:
PHP Code:
|
It does return a number, but for some reason it still not working, the option exist. I do toggle it one to the other, but it always shows postcard.
I Tried Code:
($vbulletin->options['drc_embed_vine_smpl'] === 1 ? "simple" : "postcard") Code:
($vbulletin->options['drc_embed_vine_smpl'] == 1 ? "simple" : "postcard") Code:
<hookname>postbit_display_complete</hookname> Code:
<setting varname="drc_embed_vine_smpl" displayorder="1"> |
Add the following somewhere before you call the ternary operator so you can see what it contains:
PHP Code:
|
i placed it at the beginning of the plugin, this is what it spat out in my showthread.
https://vborg.vbsupport.ru/external/2016/05/21.png |
1 Attachment(s)
Adding the product for reference
I changed the option in this version, thinking maybe i had a conflict, but no luck |
drc_embed_vine_smpl is not defined in your import file. I think you're using the wrong variable.
|
Quote:
|
I think you need to globalize $vbulletin in the postbit_display_complate hook location.
|
Quote:
this is as simple as adding Code:
global $vbulletin; --------------- Added [DATE]1463174769[/DATE] at [TIME]1463174769[/TIME] --------------- yup, THANK YOU SO MUCH LYNNE! I had no clue why this wouldn't work, so for future ref. how do I know when I need to globalize a var other than just giving it a shot lol |
All times are GMT. The time now is 01:42 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|