PDA

View Full Version : Notice special variables


JohnGBSA
06-29-2008, 09:37 AM
I am trying to add a user profile field to the list of special variables that can be used in notices.

Does anyone know where (as in what template, php file or xml setting) the special variables are defined for the notices?

By special variables I mean the things like {username}, {musername}, {userid} etc.

Any help or a push in the right direction would be appreciated :confused:

Dismounted
06-29-2008, 12:58 PM
There are only four:
{userid}, {username}, {musername}, {sessionurl}

JohnGBSA
06-29-2008, 03:21 PM
I realise there are only four, but the question goes to where they are parsed and hence how it is possible to add more for custom profile fields.

Opserty
06-29-2008, 03:38 PM
Try this:

AdminCP > Plugins & Products > Add New Product

Hook Location: notices_noticebit
PHP Code:
$notice_html = str_replace(array('{fieldX}', '{fieldY}'), array($vbulletin->userinfo['fieldX'], $vbulletin->userinfo['fieldY']), $notice_html)X & Y being field ids. Remove the Y ones if you need to.

Line 662 of global.php

JohnGBSA
06-29-2008, 03:58 PM
Thanks VERY much Opserty. That is exactly what I was looking for!