ICQ extension
天下维客,你可以修改的网络知识库
This is the simplest extension ever.... but it works;) It will give out your current ICQ-Status in a small graphic and a Link to your Web-Profile.
The $img=21 in the url sets the type of image...ICQ has prepared some real ugly ones. I think number 21 fits best. Example
<?php
# Usage: <icq>your UIN</icq>
# save it in your extensions-folder
# include("extensions/icq.php");
$wgExtensionFunctions[] = "wfICQStatus";
function wfICQStatus() {
global $wgParser;
$wgParser->setHook( "icq", "ICQfunction" );
}
function ICQfunction( $input, $argv ) {
$output = "<a href=\"http://www.icq.com/people/about_me.php?uin=$input\"><img src=\"http://status.icq.com/online.gif?icq=$input&img=21\"></a>";
return $output;
}


