add PAGE_NAME constant to every page under src/.
[squirrelmail.git] / src / printer_friendly_top.php
... / ...
CommitLineData
1<?php
2
3/**
4 * printer_friendly top frame
5 *
6 * top frame of printer_friendly_main.php
7 * displays some javascript buttons for printing & closing
8 *
9 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package squirrelmail
13 */
14
15/** This is the printer_friendly_top page */
16define('PAGE_NAME', 'printer_friendly_top');
17
18/**
19 * Include the SquirrelMail initialization file.
20 */
21include('../include/init.php');
22
23displayHtmlHeader( _("Printer Friendly"));
24$oErrorHandler->setDelayedErrors(true);
25
26$oTemplate->display('printer_friendly_top.tpl');
27
28$oTemplate->display('footer.tpl');