PDA

View Full Version : $ImagePath = $stylevar - Problem ...


jagtpf
06-22-2015, 06:18 AM
Hi all,

The following statement

$ImagePath = $stylevar[imgdir_misc].'/critique/nocritique.png';

worked in vB3, in a plugin script.

In vB4 it returns the text '/critique/nocritique.png' !!

Sub folder and image file both exist within the images/misc folders.

It suggests that the stylevar is no longer acceptable in php, or the syntax has altered a wee bit. I can only find stylevar reference in vBulletin docs under templates.

Could anyone suggest where I'm going wrong...

The plugin adds an appropriate image on ['postbit_userinfo_right_after_posts'] (or it should do !!!), and this is the only bit that's not working correctly.

Thanks in antic.

Easy5s.net
06-22-2015, 06:28 AM
try $ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc'). '/critique/nocritique.png';

jagtpf
06-22-2015, 10:07 AM
try $ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc'). '/critique/nocritique.png';

Thank you - unfortunately very little difference - that returns ...

images/misc/critique/nocritique.png (slightly more than the above. again no errors in debug)

[The full statement in the php files is written ;

$template_hook['postbit_userinfo_right_after_posts'] .=
'<br /><dt>Critique Level</dt><br /> <dd>' .$ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc'). '/critique/nocritique.png'. '</dd>';

which yields the display of

Critique Level: images/misc/critique/nocritique.png]

kh99
06-22-2015, 10:43 AM
So what you want is for the image to be displayed? Then you'd need an img tag in there, like maybe:

$ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc'). '/critique/nocritique.png';
$template_hook['postbit_userinfo_right_after_posts'] .=
'<br /><dt>Critique Level</dt><br /> <dd><img src="' . $ImagePath . '"/></dd>';

jagtpf
06-22-2015, 10:53 AM
So what you want is for the image to be displayed? Then you'd need an img tag in there, like maybe:

$ImagePath = vB_Template_Runtime::fetchStyleVar('imgdir_misc'). '/critique/nocritique.png';
$template_hook['postbit_userinfo_right_after_posts'] .=
'<br /><dt>Critique Level</dt><br /> <dd><img src="' . $ImagePath . '"/></dd>';


Thank you.

That's solved it for me. :)

I have a slight alignment issue, but you've cracked it !:D