Files
@ f43d1a4680a9
Branch filter:
Location: hot67beta/includes/application.php
f43d1a4680a9
8.4 KiB
text/x-php
menubar 0 to 10
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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | <?php
/**
* @version $Id: application.php 10912 2008-09-05 19:45:22Z 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 JSite 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'] = 0;
parent::__construct($config);
}
/**
* Initialise the application.
*
* @access public
*/
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( '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() {
parent::route();
}
/**
* Dispatch the application
*
* @access public
*/
function dispatch($component)
{
$document =& JFactory::getDocument();
$user =& JFactory::getUser();
$router =& $this->getRouter();
$params =& $this->getParams();
switch($document->getType())
{
case 'html':
{
//set metadata
$document->setMetaData( 'keywords', $this->getCfg('MetaKeys') );
if ( $user->get('id') ) {
$document->addScript( JURI::root(true).'/includes/js/joomla.javascript.js');
}
if($router->getMode() == JROUTER_MODE_SEF) {
$document->setBase(JURI::current());
}
} break;
case 'feed':
{
$document->setBase(JURI::current());
} break;
default: break;
}
$document->setTitle( $params->get('page_title') );
$document->setDescription( $params->get('page_description') );
$contents = JComponentHelper::renderComponent($component);
$document->setBuffer( $contents, 'component');
}
/**
* Display the application.
*
* @access public
*/
function render()
{
$document =& JFactory::getDocument();
$user =& JFactory::getUser();
// get the format to render
$format = $document->getType();
switch($format)
{
case 'feed' :
{
$params = array();
} break;
case 'html' :
default :
{
$template = $this->getTemplate();
$file = JRequest::getCmd('tmpl', 'index');
if ($this->getCfg('offline') && $user->get('gid') < '23' ) {
$file = 'offline';
}
if (!is_dir( JPATH_THEMES.DS.$template ) && !$this->getCfg('offline')) {
$file = 'component';
}
$params = array(
'template' => $template,
'file' => $file.'.php',
'directory' => JPATH_THEMES
);
} break;
}
$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())
{
//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';
}
return parent::login($credentials, $options);
}
/**
* Check if the user can access the application
*
* @access public
*/
function authorize($itemid)
{
$menus =& JSite::getMenu();
$user =& JFactory::getUser();
$aid = $user->get('aid');
if(!$menus->authorize($itemid, $aid))
{
if ( ! $aid )
{
// Redirect to login
$uri = JFactory::getURI();
$return = $uri->toString();
$url = 'index.php?option=com_user&view=login';
$url .= '&return='.base64_encode($return);;
//$url = JRoute::_($url, false);
$this->redirect($url, JText::_('You must login first') );
}
else
{
JError::raiseError( 403, JText::_('ALERTNOTAUTH') );
}
}
}
/**
* Get the appliaction parameters
*
* @param string The component option
* @return object The parameters object
* @since 1.5
*/
function &getParams($option = null)
{
static $params = array();
$hash = '__default';
if(!empty($option)) $hash = $option;
if (!isset($params[$hash]))
{
// Get component parameters
if (!$option) {
$option = JRequest::getCmd('option');
}
$params[$hash] =& JComponentHelper::getParams($option);
// Get menu parameters
$menus =& JSite::getMenu();
$menu = $menus->getActive();
$title = htmlspecialchars_decode($this->getCfg('sitename' ));
$description = $this->getCfg('MetaDesc');
// Lets cascade the parameters if we have menu item parameters
if (is_object($menu))
{
$params[$hash]->merge(new JParameter($menu->params));
$title = $menu->name;
}
$params[$hash]->def( 'page_title' , $title );
$params[$hash]->def( 'page_description', $description );
}
return $params[$hash];
}
/**
* Get the appliaction parameters
*
* @param string The component option
* @return object The parameters object
* @since 1.5
*/
function &getPageParameters( $option = null )
{
return $this->getParams( $option );
}
/**
* Get the template
*
* @return string The template name
* @since 1.0
*/
function getTemplate()
{
// Allows for overriding the active template from a component, and caches the result of this function
// e.g. $mainframe->setTemplate('solar-flare-ii');
if ($template = $this->get('setTemplate')) {
return $template;
}
// Get the id of the active menu item
$menu =& JSite::getMenu();
$item = $menu->getActive();
$id = 0;
if(is_object($item)) { // valid item retrieved
$id = $item->id;
}
// Load template entries for the active menuid and the default template
$db =& JFactory::getDBO();
$query = 'SELECT template'
. ' FROM #__templates_menu'
. ' WHERE client_id = 0 AND (menuid = 0 OR menuid = '.(int) $id.')'
. ' ORDER BY menuid DESC'
;
$db->setQuery($query, 0, 1);
$template = $db->loadResult();
// Allows for overriding the active template from the request
$template = JRequest::getCmd('template', $template);
$template = JFilterInput::clean($template, 'cmd'); // need to filter the default value as well
// Fallback template
if (!file_exists(JPATH_THEMES.DS.$template.DS.'index.php')) {
$template = 'rhuk_milkyway';
}
// Cache the result
$this->set('setTemplate', $template);
return $template;
}
/**
* Overrides the default template that would be used
*
* @param string The template name
*/
function setTemplate( $template )
{
if (is_dir(JPATH_THEMES.DS.$template)) {
$this->set('setTemplate', $template);
}
}
/**
* Return a reference to the JPathway object.
*
* @access public
* @return object JPathway.
* @since 1.5
*/
function &getMenu()
{
$options = array();
$menu =& parent::getMenu('site', $options);
return $menu;
}
/**
* Return a reference to the JPathway object.
*
* @access public
* @return object JPathway.
* @since 1.5
*/
function &getPathWay()
{
$options = array();
$pathway =& parent::getPathway('site', $options);
return $pathway;
}
/**
* Return a reference to the JRouter object.
*
* @access public
* @return JRouter.
* @since 1.5
*/
function &getRouter()
{
$config =& JFactory::getConfig();
$options['mode'] = $config->getValue('config.sef');
$router =& parent::getRouter('site', $options);
return $router;
}
}
|