PDA

View Full Version : $notifications_total on an external page


jacobomoya
07-14-2010, 11:08 AM
Hi, I'm having a small problem here.

I'm currently using using a simple external login code in order to be able to log into the forum from a separate, main page with content.

Now, this allows me to use every $vbulletin->userinfo variable on the external page, the username, the unread PMs, etc...

However, I have no idea what to do to show the notifications_total variable. Do I have to include something besides the usual global.php? What do I do?

Thanks in advance.

Majidm
07-27-2010, 11:42 PM
Bumping... same question

jim doodle
01-25-2013, 11:30 AM
Did you ever find an answer to this?

--------------- Added 1359119363 at 1359119363 ---------------

The solution, using lynne's custom page example: https://vborg.vbsupport.ru/showthread.php?t=228112

Simply register some extra template variable thingies, taken from the navbit template.

// ###### NOW YOUR TEMPLATE IS BEING RENDERED ######

$templater = vB_Template::create('loginWidget');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
$templater->register('notifications_total', $GLOBALS['notifications_total']);
$templater->register('notices', $GLOBALS['notices']);
$templater->register('notifications_menubits', $GLOBALS['notifications_menubits']);
print_output($templater->render());