The copyright symbol isn't really needed since the word "copyright" is there. Also...
[squirrelmail.git] / plugins / bug_report / show_system_specs.php
... / ...
CommitLineData
1<?php
2/**
3 * This script shows system specification details.
4 *
5 * @copyright 1999-2009 The SquirrelMail Project Team
6 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
7 * @version $Id$
8 * @package plugins
9 * @subpackage bug_report
10 */
11
12
13// This is the bug_report show system specs page
14//
15define('PAGE_NAME', 'bug_report_show_system_specs');
16
17
18// Include the SquirrelMail initialization file.
19//
20require('../../include/init.php');
21
22
23// load plugin functions
24//
25require_once(SM_PATH . 'plugins/bug_report/functions.php');
26
27
28// error out when bug_report plugin is disabled
29// or is called by the wrong user
30//
31if (! is_plugin_enabled('bug_report') || ! bug_report_check_user()) {
32 error_box(_("Plugin is disabled."));
33 $oTemplate->display('footer.tpl');
34 exit();
35}
36
37
38// get system specs
39//
40require_once(SM_PATH . 'plugins/bug_report/system_specs.php');
41list($body, $warnings, $corrections) = get_system_specs();
42
43global $oTemplate;
44$oTemplate->assign('body', $body);
45$oTemplate->display('plugins/bug_report/system_specs.tpl');
46$oTemplate->display('footer.tpl');
47
48