* @copyright Copyright (C) 2004, Sylvain Machefert * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @package Add-Ons-File */ if (PHPmyBrowser!="ok") { echo 'Hacking attempt!
Qu\'est-ce que tu fous ici ?'; exit; } /** * Add an image to preview a TTF font file. * * The popup call plug-in {@link fontpreview.php}. * * You can configure preview image size ($FONTPREVIEW_imageWidth and * $FONTPREVIEW_imageHeight) and colors in {@link config.php}. * * The icon used to open popup is templates/.../images/fontpreview.gif. * @param int Index * @return string * @access private */ function addon_font_display($idx) { global $tabName, $FONTPREVIEW_imageHeight, $FONTPREVIEW_imageWidth, $lang; if (extension($tabName[$idx]) == 'ttf') { return "\"".$lang['view_font'].""; } } ?>