Log in

View Full Version : Add php variable in notices


GS-Liam
08-07-2009, 06:05 AM
Hi

Is it possible to set a php variable in a notice?
I've been trying to add the amount of members and posts in my notice (when people are unregistered) But I can't seem to get it to work with just '$variable' nor {variable}.

Kind regards

James Birkett
08-07-2009, 10:59 AM
Notices are HTML-only. In order to execute PHP in notices you're going to have to modify the notices code to accept PHP.
Which notices? The ones you declare conditions for (Admin CP notices) or the guest welcome message notices?

ragtek
08-07-2009, 11:08 AM
Notices are HTML-only. In order to execute PHP in notices you're going to have to modify the notices code to accept PHP.
Which notices? The ones you declare conditions for (Admin CP notices) or the guest welcome message notices?

It's not true that they are HTML only, because you can add the username, userid, etc to the text;)



$notice_html = str_replace(array('{musername}', '{username}', '{userid}', '{sessionurl}'), array($vbulletin->userinfo['musername'], $vbulletin->userinfo['username'], $vbulletin->userinfo['userid'], $vbulletin->session->vars['sessionurl']), $vbphrase["notice_{$_noticeid}_html"]);

($hook = vBulletinHook::fetch_hook('notices_noticebit')) ? eval($hook) : false;

So you can use the notices_noticebit to replace youre own "aliases" with php variables;)