Joomla 路径

先积累点笔记

 

define( 'JPATH_ROOT',            implode( DS, $parts ) );

define( 'JPATH_SITE',            JPATH_ROOT );
define( 'JPATH_CONFIGURATION',     JPATH_ROOT );
define( 'JPATH_ADMINISTRATOR',     JPATH_ROOT.DS.'administrator' );
define( 'JPATH_XMLRPC',         JPATH_ROOT.DS.'xmlrpc' );
define( 'JPATH_LIBRARIES',         JPATH_ROOT.DS.'libraries' );
define( 'JPATH_PLUGINS',        JPATH_ROOT.DS.'plugins'   );
define( 'JPATH_INSTALLATION',    JPATH_ROOT.DS.'installation' );
define( 'JPATH_THEMES',            JPATH_BASE.DS.'templates' );
define( 'JPATH_CACHE',            JPATH_BASE.DS.'cache' );

 

define('JPATH_BASE', dirname(__FILE__) );

 

你可能感兴趣的:(Joomla源码解剖,plugins,templates,themes,cache,file)