123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * This script shows system specification details.
- *
- * @copyright © 1999-2008 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package plugins
- * @subpackage bug_report
- */
- // This is the bug_report show system specs page
- //
- define('PAGE_NAME', 'bug_report_show_system_specs');
- // Include the SquirrelMail initialization file.
- //
- require('../../include/init.php');
- // load plugin functions
- //
- require_once(SM_PATH . 'plugins/bug_report/functions.php');
- // error out when bug_report plugin is disabled
- // or is called by the wrong user
- //
- if (! is_plugin_enabled('bug_report') || ! bug_report_check_user()) {
- error_box(_("Plugin is disabled."));
- $oTemplate->display('footer.tpl');
- exit();
- }
- // get system specs
- //
- require_once(SM_PATH . 'plugins/bug_report/system_specs.php');
- list($body, $warnings, $corrections) = get_system_specs();
- global $oTemplate;
- $oTemplate->assign('body', $body);
- $oTemplate->display('plugins/bug_report/system_specs.tpl');
- $oTemplate->display('footer.tpl');
|