1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-19 06:02:40 +01:00
2009-11-18 01:06:08 +00:00

21 lines
525 B
Python

/*
* e107 website system Copyright (C) 2008-2009 e107 Inc (e107.org)
* $Id: pdf.sc,v 1.4 2009-11-18 01:05:53 e107coders Exp $
*/
if (!plugInstalled('pdf'))
{
return;
}
if (defined("ICONPRINTPDF") && file_exists(THEME."images/".ICONPRINTPDF))
{
$icon = THEME_ABS."images/".ICONPRINTPDF;
}
else
{
$icon = e_PLUGIN_ABS."pdf/images/pdf_16.png";
}
$parms = explode("^",$parm);
return " <a href='".e_PLUGIN_ABS."pdf/pdf.php?{$parms[1]}'><img src='".$icon."' style='border:0' alt='{$parms[0]}' title='{$parms[0]}' /></a>";