The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
I thought a pretty useful feature would be to show what percent of your PM Inbox is being used in your PM Inbox display screen.
A simple formula like: (number of current PMs) / (number of max PMs) * 100 can probably be used. Even creating a bar to show the percentage wouldn't be difficult either as you can use table width in percent for that bar. It would be awesome if someone can do it, or if you can tell me the variables to show the max number of PMs someone can have and their current, I can put a hack together myself. Thanks a lot. |
#2
|
||||
|
||||
For the main forum page (index.php), total PMs is $allpm[messages].
For the inbox display page (private.php), you'll need to add it yourself: Code:
$ignoreusers=""; if (trim($bbuserinfo['ignorelist'])!="") { $ignoreusers='AND fromuserid<>'.implode(' AND fromuserid<>',explode(' ', trim($bbuserinfo['ignorelist']))); } $allpm=$DB_site->query_first("SELECT COUNT(*) AS messages FROM privatemessage WHERE userid=$bbuserinfo[userid] $ignoreusers"); In any file/template, $pmquota is the total PMs allowed. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|