| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla.Site 4 * @subpackage Application 5 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 6 * @license GNU General Public License version 2 or later; see LICENSE.txt 7 */ 8 9 // No direct access. 10 defined('_JEXEC') or die; 11 12 /** 13 * Joomla! Application define. 14 */ 15 16 //Global definitions. 17 //Joomla framework path definitions. 18 $parts = explode(DIRECTORY_SEPARATOR, JPATH_BASE); 19 20 //Defines. 21 define('JPATH_ROOT', implode(DIRECTORY_SEPARATOR, $parts)); 22 23 define('JPATH_SITE', JPATH_ROOT); 24 define('JPATH_CONFIGURATION', JPATH_ROOT); 25 define('JPATH_ADMINISTRATOR', JPATH_ROOT . '/administrator'); 26 define('JPATH_LIBRARIES', JPATH_ROOT . '/libraries'); 27 define('JPATH_PLUGINS', JPATH_ROOT . '/plugins' ); 28 define('JPATH_INSTALLATION', JPATH_ROOT . '/installation'); 29 define('JPATH_THEMES', JPATH_BASE . '/templates'); 30 define('JPATH_CACHE', JPATH_BASE . '/cache'); 31 define('JPATH_MANIFESTS', JPATH_ADMINISTRATOR . '/manifests');
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |