1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-24 08:42:56 +01:00
php-e107/e107_files/shortcode/print_item.sc

12 lines
353 B
Python

global $imode;
if (defined("ICONPRINT") && file_exists(THEME."images/".ICONPRINT))
{
$icon = THEME."images/".ICONPRINT;
}
else
{
$icon = e_IMAGE."packs/".$imode."/generic/printer.png";
}
$parms = explode("^",$parm);
return "<a href='".e_BASE."print.php?{$parms[1]}'><img src='".$icon."' style='border:0' alt='{$parms[0]}' title='{$parms[0]}' /></a>";