1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
<?php /** * @version $Id: index2.php 2509 2006-02-21 04:37:29Z stingrey $ * @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_once( '../globals.php' ); require_once( '../configuration.php' ); 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 = strtolower( mosGetParam( $_REQUEST, 'option', '' ) );
// mainframe is an API workhorse, lots of 'core' interaction routines $mainframe = new mosMainFrame( $database, $option, '..', true );
// admin session handling $my = $mainframe->initSessionAdmin( $option );
// initialise some common request directives $task = mosGetParam( $_REQUEST, 'task', '' ); $act = strtolower( mosGetParam( $_REQUEST, 'act', '' ) ); $section = mosGetParam( $_REQUEST, 'section', '' ); $no_html = strtolower( mosGetParam( $_REQUEST, 'no_html', '' ) ); $id = intval( mosGetParam( $_REQUEST, 'id' ) );
$cur_template = $mainframe->getTemplate();
// default admin homepage if ($option == '') { $option = 'com_admin'; }
// set for overlib check $mainframe->set( 'loadOverlib', false );
// precapture the output of the component require_once( $mosConfig_absolute_path . '/editor/editor.php' );
ob_start(); if ($path = $mainframe->getPath( 'admin' )) { require_once ( $path ); } else { ?> <img src="images/joomla_logo_black.jpg" border="0" alt="<?php echo 'Joomla! Logo'; ?>" /> <br /> <?php }
$_MOS_OPTION['buffer'] = ob_get_contents(); ob_end_clean();
initGzip();
// start the html output if ($no_html == 0) { // loads template file if ( !file_exists( $mosConfig_absolute_path .'/administrator/templates/'. $cur_template .'/index.php' ) ) { echo 'TEMPLATE '. $cur_template .' NOT FOUND' ; } else { require_once( $mosConfig_absolute_path .'/administrator/templates/'. $cur_template .'/index.php' ); } } else { mosMainBody_Admin(); }
// displays queries performed for page if ($mosConfig_debug) { echo $database->_ticker . ' queries executed'; echo '<pre>'; foreach ($database->_log as $k=>$sql) { echo $k+1 . "\n" . $sql . '<hr />'; } }
doGzip(); ?>
|