Disclaimer: I've been reading the API and will continue to do so, just trying to get a feel for this and hopefully some folks will be patient enough to do a little hand-holding.
I'm trying to write my first plugin, something extremely basic, just to get the feel for how it works. I'm decent with template edits and variables, but I've never attempted writing a plugin before, and would really like to.
That said, I'm looking to write a simple plugin to drop a variable into a template.
In FORUMHOME, here's the default Who's Online:
Code:
<a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
All I want to do is add the following code after the end parenthesis:
Code:
Invisible: $numberinvisible
So that the end result is:
Code:
<a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
Invisible: $numberinvisible
I'm looking at
This post on writing plug-ins and the first thing I need is the hook location. So I opened up forum/index.php, and I *think* that the proper hook location is (from around line 407):
Code:
($hook = vBulletinHook::fetch_hook('forumhome_loggedinuser')) ? eval($hook) : false;
Judging by that, the hook loction is forumhome_loggedinuser, correct?
So in using the basic code from the howto post, I come up with something like:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1">
<title>Chris's Newbie Plugin</title>
<hookname>forumhome_loggedinuser</hookname>
<phpcode>
<![CDATA[ ]]>
</phpcode>
</plugin>
</plugins>
If I'm correct so far, I'm not sure:
A: Where the actual code goes.
B: How I tell vB where to actually put it, (Eg: "directly following $vbphrase[x_members_and_y_guests]</phrase>) ".
I'm guessing that the code that I want to inject goes inside the CDATA brackets, like this:
Code:
<![CDATA[Invisible: $numberinvisible]]>
But from there, I'm stumped, and that's assuming I'm even close to correct this far.
If anyone could shed some light on where I should go from here, I'd really appreciate the help.

In the meantime I'll keep scouring the docs. :bunny:
Update #1
Here's what I have so far, but I don't think I'm going about it correctly:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="chris777_showinvisible" active="1">
<title>Show Invisible Users</title>
<description>Will add a count of invisible users in WGO.</description>
<version>1.0.0</version>
<codes>
</codes>
<templates>
</templates>
<plugins>
<plugin active="1">
<title>Show Invisible Users</title>
<hookname>forumhome_loggedinuser</hookname>
<phpcode><![CDATA[
if ($totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>))
{
Invisible: $numberinvisible;
}
]]>
</phpcode>
</plugin>
</plugins>
<phrases>
</phrases>
<options>
</options>
</product>
The if statement I'm guessing will look for that particular line in a template, and just stick my code after it.
[high]* Guest210212002 scratches his head and continues to dig.[/high]