Files
@ c7d7e38b2269
Branch filter:
Location: hot67beta/administrator/includes/application.php
c7d7e38b2269
6.6 KiB
text/x-php
Initial import of the site.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | <?php
/**
* @version $Id: application.php 11409 2009-01-10 02:27:08Z willebil $
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license 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.
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.application.component.helper');
/**
* Joomla! Application class
*
* Provide many supporting API functions
*
* @package Joomla
* @final
*/
class JAdministrator extends JApplication
{
/**
* Class constructor
*
* @access protected
* @param array An optional associative array of configuration settings.
* Recognized key values include 'clientId' (this list is not meant to be comprehensive).
*/
function __construct($config = array())
{
$config['clientId'] = 1;
parent::__construct($config);
//Set the root in the URI based on the application name
JURI::root(null, str_replace('/'.$this->getName(), '', JURI::base(true)));
}
/**
* Initialise the application.
*
* @access public
* @param array An optional associative array of configuration settings.
*/
function initialise($options = array())
{
// if a language was specified it has priority
// otherwise use user or default language settings
if (empty($options['language']))
{
$user = & JFactory::getUser();
$lang = $user->getParam( 'admin_language' );
// Make sure that the user's language exists
if ( $lang && JLanguage::exists($lang) ) {
$options['language'] = $lang;
} else {
$params = JComponentHelper::getParams('com_languages');
$client =& JApplicationHelper::getClientInfo($this->getClientId());
$options['language'] = $params->get($client->name, 'en-GB');
}
}
// One last check to make sure we have something
if ( ! JLanguage::exists($options['language']) ) {
$options['language'] = 'en-GB';
}
parent::initialise($options);
}
/**
* Route the application
*
* @access public
*/
function route()
{
$uri = JURI::getInstance();
if($this->getCfg('force_ssl') >= 1 && strtolower($uri->getScheme()) != 'https') {
//forward to https
$uri->setScheme('https');
$this->redirect($uri->toString());
}
}
/**
* Return a reference to the JRouter object.
*
* @access public
* @return JRouter.
* @since 1.5
*/
function &getRouter()
{
$router =& parent::getRouter('administrator');
return $router;
}
/**
* Dispatch the application
*
* @access public
*/
function dispatch($component)
{
$document =& JFactory::getDocument();
$user =& JFactory::getUser();
switch($document->getType())
{
case 'html' :
{
$document->setMetaData( 'keywords', $this->getCfg('MetaKeys') );
if ( $user->get('id') ) {
$document->addScript( JURI::root(true).'/includes/js/joomla.javascript.js');
}
JHTML::_('behavior.mootools');
} break;
default : break;
}
$document->setTitle( htmlspecialchars_decode($this->getCfg('sitename' )). ' - ' .JText::_( 'Administration' ));
$document->setDescription( $this->getCfg('MetaDesc') );
$contents = JComponentHelper::renderComponent($component);
$document->setBuffer($contents, 'component');
}
/**
* Display the application.
*
* @access public
*/
function render()
{
$component = JRequest::getCmd('option');
$template = $this->getTemplate();
$file = JRequest::getCmd('tmpl', 'index');
if($component == 'com_login') {
$file = 'login';
}
$params = array(
'template' => $template,
'file' => $file.'.php',
'directory' => JPATH_THEMES
);
$document =& JFactory::getDocument();
$data = $document->render($this->getCfg('caching'), $params );
JResponse::setBody($data);
}
/**
* Login authentication function
*
* @param array Array( 'username' => string, 'password' => string )
* @param array Array( 'remember' => boolean )
* @access public
* @see JApplication::login
*/
function login($credentials, $options = array())
{
//The minimum group
$options['group'] = 'Public Backend';
//Make sure users are not autoregistered
$options['autoregister'] = false;
//Set the application login entry point
if(!array_key_exists('entry_url', $options)) {
$options['entry_url'] = JURI::base().'index.php?option=com_user&task=login';
}
$result = parent::login($credentials, $options);
if(!JError::isError($result))
{
$lang = JRequest::getCmd('lang');
$lang = preg_replace( '/[^A-Z-]/i', '', $lang );
$this->setUserState( 'application.lang', $lang );
JAdministrator::purgeMessages();
}
return $result;
}
/**
* Get the template
*
* @return string The template name
* @since 1.0
*/
function getTemplate()
{
static $template;
if (!isset($template))
{
// Load the template name from the database
$db =& JFactory::getDBO();
$query = 'SELECT template'
. ' FROM #__templates_menu'
. ' WHERE client_id = 1'
. ' AND menuid = 0'
;
$db->setQuery( $query );
$template = $db->loadResult();
$template = JFilterInput::clean($template, 'cmd');
if (!file_exists(JPATH_THEMES.DS.$template.DS.'index.php')) {
$template = 'khepri';
}
}
return $template;
}
/**
* Purge the jos_messages table of old messages
*
* static method
* @since 1.5
*/
function purgeMessages()
{
$db =& JFactory::getDBO();
$user =& JFactory::getUser();
$userid = $user->get('id');
$query = 'SELECT *'
. ' FROM #__messages_cfg'
. ' WHERE user_id = ' . (int) $userid
. ' AND cfg_name = "auto_purge"'
;
$db->setQuery( $query );
$config = $db->loadObject( );
// check if auto_purge value set
if (is_object( $config ) and $config->cfg_name == 'auto_purge' )
{
$purge = $config->cfg_value;
}
else
{
// if no value set, default is 7 days
$purge = 7;
}
// calculation of past date
// if purge value is not 0, then allow purging of old messages
if ($purge > 0)
{
// purge old messages at day set in message configuration
$past =& JFactory::getDate(time() - $purge * 86400);
$pastStamp = $past->toMySQL();
$query = 'DELETE FROM #__messages'
. ' WHERE date_time < ' . $db->Quote( $pastStamp )
. ' AND user_id_to = ' . (int) $userid
;
$db->setQuery( $query );
$db->query();
}
}
/**
* Deprecated, use JURI::root() instead.
*
* @since 1.5
* @deprecated As of version 1.5
* @see JURI::root()
*/
function getSiteURL()
{
return JURI::root();
}
}
|