MyBB Community Forums

Full Version: Board Stats Functions?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am creating my own board stats (without a plugin) for the index page of my theme I'm creating and I would like to know the function of the codes.

Example: http://gyazo.com/c0cb31b76304267d98693aeeff294dbf
Website: http://ComingSoon.VisualizeEdits.com/

How can I make a function that display the users online for a certain group? I want to make a "Staff Online" which will display users in the "Staff" group who is online.

It's kind of like Yaldaram's plugin on his website's index.
I could not find a direct function code for above requirement. (see the plugin file available here)
(2013-07-25, 06:02 PM).m. Wrote: [ -> ]I could not find a direct function code for above requirement. (see the plugin file available here)

Okay, I'll take a look at the plugin and what about for
- Who's Online
- Today Birthdays
- Members Online Today
- Members Registered Today
- Board Statistics
- Total Posts
- Total Threads
- Total Members
- Latest Member
- Most Online
- Website Visits Stats

The kind of function I'm looking for is something like
{$mybb->user['uid']}
{$boardstats} on the index template provides some of above required things
see content of index_boardstats template of MyBB's default stock theme (in Index Page Templates)
(2013-07-25, 06:22 PM).m. Wrote: [ -> ]{$boardstats} on the index template provides some of above required things
see content of index_boardstats template of MyBB's default stock theme (in Index Page Templates)

Okay thank you very much! I'll check it out.