codecamp

Joomla 目录结构

WWW  WEB部署目录(或者子目录),一般称为网站的根目录
├─administrator           后台管理目录,在这个目录中包含了后台管理的所有文件。后台本身也是一个Joomla网站
│  ├─cache      
│  ├─components    
│  ├─help
│  ├─includes
│  ├─language
│  ├─logs
│  ├─ manifests
│  ├─ media
│  ├─ modules
│  ├─ templates
│  │
│  └─index.php        后台入口点文件
├─bin                     缓存文件目录
├─cache                   缓存文件目录
├─cli                     PHP CLI模式下的范例代码
├─components              组件文件目录
├─images                  图片文件目录
├─includes                核心代码文件目录
├─installation            程序的安装目录,安装成功后,此目录将被删除
├─layout                  布局文件目录
├─language                语言文件目录
├─libraries               库文件目录
├─logs                    日志文件目录。默认情况下这个目录不存在
├─media                   媒体资源文件
├─modules                 模块文件目录
├─plugins                 插件文件目录
├─templates               模板文件目录
├─tmp                     临时文件目录
│  
├─configuration.php       系统配置文件
├─htaccess.txt            Apache下的.htaccess文件
├─index.php            入口点文件
├─LICENSE.txt             授权说明文件
├─README.txt              README 文件
├─robots.txt              robots文件
├─robots.txt.dist         
├─web.config.txt          Negix下的web.config文件


Joomla 架构
Joomla Application类
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

处理URL请求参数

Joomla 错误和调试

Joomla 缓存

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }