The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How to add custom notification to notification list?
Hello
I am currently using this code as a plugin hooked to global_start and calling it in the NAVBAR template with it's variable; PHP Code:
Thank you |
#2
|
|||
|
|||
In place of your plugin, you could create a plugin using hook notifications_list and code like:
Code:
$sql = mysql_query("select count(*) from songrequests where req_status <= 1"); $row = mysql_fetch_row($sql); if($row) { if ($row[0] == 1) { $msg = "There is $row[0] Song Request Waiting"; } elseif ($row[0] > 1) { $msg = "There are $row[0] Song Requests Waiting"; } $notifications['countsr'] = array( 'phrase' => $msg, 'link' => 'SongRequests.php', 'order' => 20 ); $vbulletin->userinfo['countsr'] = $row[0]; } |
#3
|
|||
|
|||
Ty works perfect
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|