Yii主題的簡單操作

2021-06-20 07:53:18 字數 513 閱讀 1420

和protected在同級目錄的themes目錄裡面放置的是主題檔案

--/themes/

--classic 預設存在的

--mytheme 自定義新增的

--/themes/mytheme/  目錄下面的檔案

--/view 資料夾 必須存在的

--/themes/mytheme/view/  目錄下面檔案

--layouts 布局檔案

--system 系統檔案 例如 404 500錯誤顯示的檔案

--site sitecontroller控制器檔案

... 依次新增

最後在/protected/config/main.php 系統的配置檔案

新增 return array(

'basepath'=>dirname(__file__).directory_separator.'..',

'name'=>'...',

'theme'=>'mytheme',  

....

Yii小物件widget的簡單操作

1.直接widget呼叫,不包含內容體 body 第一步 在protected components 資料夾下面 建立檔案 bannermagicwidget.php bannermagicwidget.php的內容如下 class bannermagicwidget extends cwidget...

yii2框架 yii2的主題化設計 十九

最近發現漏了很重要的一章章節知識點 關於yii2的主題化設計。所謂的主題話設計簡單點說就是通過設定不同的模板主題,可以快速切換,無需更改檢視渲染 的方法。在yii2中使用主題,首先要配置主題,在components中 view theme baseurl web themes blue pathma...

YII快取操作

檔案依賴 dependency new yii caching filedependency filename hw.txt cache add file key hello world 3000,dependency dependency決定了當快取檔案發生修改時也會失效 表示式的依賴 depen...