View of /mambo/branches/4.6/offline.php
Parent Directory
|
Revision Log
Revision 370 -
(download)
(annotate)
Wed Mar 8 17:51:22 2006 UTC (7 years, 2 months ago) by counterpoint
File size: 2478 byte(s)
Wed Mar 8 17:51:22 2006 UTC (7 years, 2 months ago) by counterpoint
File size: 2478 byte(s)
Fix access to Mambo configuration - cope in different contexts
<?php /** * @package Mambo Open Source * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); $mainframe = mosMainFrame::getInstance(); // needed to seperate the ISO number from the language file constant _ISO $iso = split( '=', _ISO ); // xml prolog echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title><?php echo mamboCore::get('mosConfig_sitename'); ?> - <?php echo T_('Offline') ?></title> <link rel="stylesheet" href="<?php echo mamboCore::get('mosConfig_live_site'); ?>/templates/<?php echo $mainframe->getTemplate();?>/css/template_css.css" type="text/css" /> <meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" /> </head> <body> <p> </p> <table width="550" align="center" style="background-color: #ffffff; border: 1px solid"> <tr> <td width="60%" height="50" align="center"> <img src="<?php echo mamboCore::get('mosConfig_live_site'); ?>/images/logo.png" alt="<?php echo T_('Mambo Logo') ?>" align="middle" /> </td> </tr> <tr> <td align="center"> <h1> <?php echo mamboCore::get('mosConfig_sitename'); ?> </h1> </td> </tr> <?php if ( mamboCore::get('mosConfig_offline') == 1 ) { ?> <tr> <td width="39%" align="center"> <h2> <?php echo mamboCore::get('mosConfig_offline_message'); ?> </h2> </td> </tr> <?php } else if (@$mosSystemError) { ?> <tr> <td width="39%" align="center"> <h2> <?php echo mamboCore::get('mosConfig_error_message'); ?> </h2> <?php echo $mosSystemError; ?> </td> </tr> <?php } else { ?> <tr> <td width="39%" align="center"> <h2> <?php echo T_('For your security please completely remove the installation directory including all files and sub-folders - then refresh this page'); ?> </h2> </td> </tr> <?php } ?> </table> </body> </html>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

