git-svn-id: https://192.168.0.254/svn/Proyectos.MatritumCantat_Web/trunk@2 8e3496fd-7892-4c45-be36-0ff06e9dacc6
108 lines
3.8 KiB
PHP
108 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: index3.php 10041 2008-02-15 21:48:13Z eddieajau $
|
|
* @package Joomla
|
|
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
|
|
* Joomla! is free software. This version may have been modified pursuant
|
|
* to the GNU General Public License, and as distributed it includes or
|
|
* is derivative of works licensed under the GNU General Public License or
|
|
* other free or open source software licenses.
|
|
* See COPYRIGHT.php for copyright notices and details.
|
|
*/
|
|
|
|
// Set flag that this is a parent file
|
|
define( '_VALID_MOS', 1 );
|
|
|
|
if (!file_exists( '../configuration.php' )) {
|
|
header( 'Location: ../installation/index.php' );
|
|
exit();
|
|
}
|
|
|
|
require( '../globals.php' );
|
|
require( '../configuration.php' );
|
|
|
|
// SSL check - $http_host returns <live site url>:<port number if it is 443>
|
|
$http_host = explode(':', $_SERVER['HTTP_HOST'] );
|
|
if( (!empty( $_SERVER['HTTPS'] ) && strtolower( $_SERVER['HTTPS'] ) != 'off' || isset( $http_host[1] ) && $http_host[1] == 443) && substr( $mosConfig_live_site, 0, 8 ) != 'https://' ) {
|
|
$mosConfig_live_site = 'https://'.substr( $mosConfig_live_site, 7 );
|
|
}
|
|
|
|
require_once( $mosConfig_absolute_path . '/includes/joomla.php' );
|
|
include_once( $mosConfig_absolute_path . '/language/'. $mosConfig_lang. '.php' );
|
|
require_once( $mosConfig_absolute_path . '/administrator/includes/admin.php' );
|
|
|
|
// must start the session before we create the mainframe object
|
|
session_name( md5( $mosConfig_live_site ) );
|
|
session_start();
|
|
|
|
$option = strval( strtolower( mosGetParam( $_REQUEST, 'option', '' ) ) );
|
|
$task = strval( mosGetParam( $_REQUEST, 'task', '' ) );
|
|
|
|
// mainframe is an API workhorse, lots of 'core' interaction routines
|
|
$mainframe = new mosMainFrame( $database, $option, '..', true );
|
|
|
|
// admin session handling
|
|
$my = $mainframe->initSessionAdmin( $option, $task );
|
|
|
|
// initialise some common request directives
|
|
$act = strtolower( mosGetParam( $_REQUEST, 'act', '' ) );
|
|
$section = mosGetParam( $_REQUEST, 'section', '' );
|
|
$mosmsg = strval( strip_tags( mosGetParam( $_REQUEST, 'mosmsg', '' ) ) );
|
|
$no_html = mosGetParam( $_REQUEST, 'no_html', '' );
|
|
$id = intval( mosGetParam( $_REQUEST, 'id', 0 ) );
|
|
|
|
// start the html output
|
|
if ($no_html) {
|
|
if ($path = $mainframe->getPath( 'admin' )) {
|
|
require $path;
|
|
}
|
|
exit;
|
|
}
|
|
|
|
initGzip();
|
|
|
|
?>
|
|
<?php echo "<?xml version=\"1.0\"?>"; ?>
|
|
<!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 $mosConfig_sitename; ?> - Administration [Joomla!]</title>
|
|
<link rel="stylesheet" href="templates/<?php echo $mainframe->getTemplate(); ?>/css/template_css.css" type="text/css" />
|
|
<link rel="stylesheet" href="templates/<?php echo $mainframe->getTemplate(); ?>/css/theme.css" type="text/css" />
|
|
<script language="JavaScript" src="../includes/js/JSCookMenu_mini.js" type="text/javascript"></script>
|
|
<script language="JavaScript" src="includes/js/ThemeOffice/theme.js" type="text/javascript"></script>
|
|
<script language="JavaScript" src="../includes/js/joomla.javascript.js" type="text/javascript"></script>
|
|
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
|
|
<?php
|
|
$mainframe->set( 'loadEditor', true );
|
|
include_once( $mosConfig_absolute_path . '/editor/editor.php' );
|
|
initEditor();
|
|
?>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
if ($mosmsg) {
|
|
if (!get_magic_quotes_gpc()) {
|
|
$mosmsg = addslashes( $mosmsg );
|
|
}
|
|
echo "\n<script language=\"javascript\" type=\"text/javascript\">alert('$mosmsg');</script>";
|
|
}
|
|
|
|
// Show list of items to edit or delete or create new
|
|
if ($path = $mainframe->getPath( 'admin' )) {
|
|
require $path;
|
|
} else {
|
|
?>
|
|
<img src="images/joomla_logo_black.jpg" border="0" alt="Joomla! Logo" />
|
|
<br />
|
|
<?php
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
doGzip();
|
|
|
|
|
|
?>
|