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:
($vbulletin->options['drc_embed_vine_smpl'] === true ? "simple" : "postcard")
If it contains a number:
PHP Code:
($vbulletin->options['drc_embed_vine_smpl'] === 1 ? "simple" : "postcard")