1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-18 05:09:05 +01:00

21 lines
525 B
Python
Raw Normal View History

/*
2008-12-21 12:03:28 +00:00
* e107 website system Copyright (C) 2001-2008 e107 Inc (e107.org)
* $Id: pdf.sc,v 1.3 2008-12-21 12:03:28 e107steved Exp $
*/
2008-12-21 12:03:28 +00:00
if (!plugInstalled('pdf'))
{
return;
}
2006-12-02 04:36:16 +00:00
if (defined("ICONPRINTPDF") && file_exists(THEME."images/".ICONPRINTPDF))
{
$icon = THEME_ABS."images/".ICONPRINTPDF;
2006-12-02 04:36:16 +00:00
}
else
{
$icon = e_PLUGIN_ABS."pdf/images/pdf_16.png";
2006-12-02 04:36:16 +00:00
}
$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>";