1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  | 
			<?php
if(!defined("IN_MYBB"))
{
    die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
} 
function pp_info()
{
    return array(
        "name"          => "Posting profile icon",
        "description"   => "The profile icon plugin let you see the contact details in their posting profile",
        "website"       => "http://www.phcompany.info/plugins",
        "author"        => "pachel	",
        "authorsite"    => "http://www.phcompany.info/plugins",
        "version"       => "0.5",
    );
}
function pp_activate()
{
require MYBB_ROOT.'/inc/adminfunctions_templates.php';
find_replace_templatesets("postbit_author_user", '#'.preg_quote('{$post[\'replink\']}<br />').'#' , '{$post[\'replink\']}<br />
<a href="private.php?action=send&uid={$post[\'uid\']}">{$lang->send_pm[\'username\']}<img src="images/pm.png" border="0" /></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=icq&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/icq.gif"></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=aim&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/aim.gif"></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=yahoo&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/yahoo.gif"></a>
{$post[\'msndet\']}');
}
function pp_deactivate()
{
require MYBB_ROOT.'/inc/adminfunctions_templates.php';
find_replace_templatesets("postbit_author_user", '#'.preg_quote('{$post[\'replink\']}<br />
<a href="private.php?action=send&uid={$post[\'uid\']}">{$lang->send_pm[\'username\']}<img src="images/pm.png" border="0" /></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=icq&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/icq.gif"></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=aim&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/aim.gif"></a>
<a href="javascript:;" onclick="MyBB.popupWindow(\'misc.php?action=imcenter&imtype=yahoo&uid={$post[\'uid\']}\', \'imcenter\', 450, 300);"><img src="images/yahoo.gif"></a>
{$post[\'msndet\']}').'#s' , '{$post[\'replink\']}<br />',0);
} 
function parse_details()
{	
global $db, $mybb;
	if ($post['msn'])
	{
                $query = $db->query("select * FROM ".TABLE_PREFIX."userfields WHERE name='msn");
		$ffid = $db->fetch_array($query);
		$fid = $ffid['fid'];
		$source = "fid".$fid;
		if ($post[$source] != '') 
		{
			$post['msndet'] = "<a href=\"javascript:onclick='MyBB.popupWindow(\\'misc.php?action=imcenter&imtype=msn&uid={$post['uid']}\\', \\'imcenter\\', 450, 300);\">{$post['msn']}<img src=\"images/msn.gif\"></a><br />";
		}
	} 
	else 
	{
          $ffid = $db->fetch_array($query);
		$fid = $ffid['fid'];
		$source = "fid".$post['msn'];
		if ($post[$source] != '') 
		{
			$post['msndet'] = "<a href=\"javascript:onclick='MyBB.popupWindow(\\'misc.php?action=imcenter&imtype=msn&uid={$post['uid']}\\', \\'imcenter\\', 450, 300);\">{$post['msn']}<img src=\"images/msn.gif\"></a><br />";
		}
	}	
}
?>
  |