mirror of
https://github.com/e107inc/e107.git
synced 2025-02-13 02:54:39 +01:00
21 lines
583 B
Scala
21 lines
583 B
Scala
@include_once(e_PLUGIN."pm/languages/".e_LANGUAGE.".php");
|
|
@include_once(e_PLUGIN."pm/languages/English.php");
|
|
global $sysprefs, $pm_prefs;
|
|
$pm_prefs = $sysprefs->getArray("pm_prefs");
|
|
if(check_class($pm_prefs['pm_class']))
|
|
{
|
|
if(file_exists(THEME."forum/pm.png"))
|
|
{
|
|
$img = "<img src='".THEME."forum/pm.png' alt='".LAN_PM."' title='".LAN_PM."' style='border:0' />";
|
|
}
|
|
else
|
|
{
|
|
$img = "<img src='".e_PLUGIN."pm/images/pm.png' alt='".LAN_PM."' title='".LAN_PM."' style='border:0' />";
|
|
}
|
|
return "<a href='".e_PLUGIN."pm/pm.php?send.{$parm}'>{$img}</a>";
|
|
}
|
|
else
|
|
{
|
|
return "";
|
|
}
|