├── .gitignore ├── AutoloadExample.php ├── Bootstrap.php ├── Module.php ├── README.md ├── assets ├── AppAsset.php └── default │ ├── css │ ├── ality.eot │ ├── ality.svg │ ├── ality.ttf │ ├── ality.woff │ ├── backend.css │ └── style.css │ ├── images │ ├── bg.gif │ ├── body_bg.gif │ ├── case_banner_bg.png │ ├── home.gif │ ├── home.png │ ├── home_banner_01.png │ ├── home_banner_02.png │ ├── home_banner_03.png │ ├── logo.gif │ ├── logo.png │ └── superiority.png │ └── js │ └── common.js ├── composer.json ├── controllers ├── backend │ ├── CmsCatalogController.php │ ├── CmsShowController.php │ └── DefaultController.php └── frontend │ └── DefaultController.php ├── messages └── zh-CN │ └── cms.php ├── migrations └── m141208_201481_cms_init.php ├── models ├── CmsCatalog.php ├── CmsCatalogSearch.php ├── CmsShow.php ├── CmsShowSearch.php ├── Status.php └── YesNo.php ├── views ├── backend │ ├── cms-catalog │ │ ├── _form.php │ │ ├── _search.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ ├── cms-show │ │ ├── _form.php │ │ ├── _search.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── view.php │ └── default │ │ └── index.php └── frontend │ ├── default │ ├── index.php │ ├── list.php │ ├── page.php │ └── show.php │ └── layouts │ ├── column2.php │ └── main.php └── widgets ├── Alert.php ├── Contact.php ├── SideMenu.php └── views ├── contact.php ├── portal.php └── sideMenu.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /AutoloadExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/AutoloadExample.php -------------------------------------------------------------------------------- /Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/Bootstrap.php -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/README.md -------------------------------------------------------------------------------- /assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/AppAsset.php -------------------------------------------------------------------------------- /assets/default/css/ality.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/ality.eot -------------------------------------------------------------------------------- /assets/default/css/ality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/ality.svg -------------------------------------------------------------------------------- /assets/default/css/ality.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/ality.ttf -------------------------------------------------------------------------------- /assets/default/css/ality.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/ality.woff -------------------------------------------------------------------------------- /assets/default/css/backend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/backend.css -------------------------------------------------------------------------------- /assets/default/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/css/style.css -------------------------------------------------------------------------------- /assets/default/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/bg.gif -------------------------------------------------------------------------------- /assets/default/images/body_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/body_bg.gif -------------------------------------------------------------------------------- /assets/default/images/case_banner_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/case_banner_bg.png -------------------------------------------------------------------------------- /assets/default/images/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/home.gif -------------------------------------------------------------------------------- /assets/default/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/home.png -------------------------------------------------------------------------------- /assets/default/images/home_banner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/home_banner_01.png -------------------------------------------------------------------------------- /assets/default/images/home_banner_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/home_banner_02.png -------------------------------------------------------------------------------- /assets/default/images/home_banner_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/home_banner_03.png -------------------------------------------------------------------------------- /assets/default/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/logo.gif -------------------------------------------------------------------------------- /assets/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/logo.png -------------------------------------------------------------------------------- /assets/default/images/superiority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/images/superiority.png -------------------------------------------------------------------------------- /assets/default/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/assets/default/js/common.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/backend/CmsCatalogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/controllers/backend/CmsCatalogController.php -------------------------------------------------------------------------------- /controllers/backend/CmsShowController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/controllers/backend/CmsShowController.php -------------------------------------------------------------------------------- /controllers/backend/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/controllers/backend/DefaultController.php -------------------------------------------------------------------------------- /controllers/frontend/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/controllers/frontend/DefaultController.php -------------------------------------------------------------------------------- /messages/zh-CN/cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/messages/zh-CN/cms.php -------------------------------------------------------------------------------- /migrations/m141208_201481_cms_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/migrations/m141208_201481_cms_init.php -------------------------------------------------------------------------------- /models/CmsCatalog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/CmsCatalog.php -------------------------------------------------------------------------------- /models/CmsCatalogSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/CmsCatalogSearch.php -------------------------------------------------------------------------------- /models/CmsShow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/CmsShow.php -------------------------------------------------------------------------------- /models/CmsShowSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/CmsShowSearch.php -------------------------------------------------------------------------------- /models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/Status.php -------------------------------------------------------------------------------- /models/YesNo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/models/YesNo.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/_form.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/_search.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/create.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/index.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/update.php -------------------------------------------------------------------------------- /views/backend/cms-catalog/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-catalog/view.php -------------------------------------------------------------------------------- /views/backend/cms-show/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/_form.php -------------------------------------------------------------------------------- /views/backend/cms-show/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/_search.php -------------------------------------------------------------------------------- /views/backend/cms-show/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/create.php -------------------------------------------------------------------------------- /views/backend/cms-show/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/index.php -------------------------------------------------------------------------------- /views/backend/cms-show/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/update.php -------------------------------------------------------------------------------- /views/backend/cms-show/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/cms-show/view.php -------------------------------------------------------------------------------- /views/backend/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/backend/default/index.php -------------------------------------------------------------------------------- /views/frontend/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/default/index.php -------------------------------------------------------------------------------- /views/frontend/default/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/default/list.php -------------------------------------------------------------------------------- /views/frontend/default/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/default/page.php -------------------------------------------------------------------------------- /views/frontend/default/show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/default/show.php -------------------------------------------------------------------------------- /views/frontend/layouts/column2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/layouts/column2.php -------------------------------------------------------------------------------- /views/frontend/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/views/frontend/layouts/main.php -------------------------------------------------------------------------------- /widgets/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/Alert.php -------------------------------------------------------------------------------- /widgets/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/Contact.php -------------------------------------------------------------------------------- /widgets/SideMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/SideMenu.php -------------------------------------------------------------------------------- /widgets/views/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/views/contact.php -------------------------------------------------------------------------------- /widgets/views/portal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/views/portal.php -------------------------------------------------------------------------------- /widgets/views/sideMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funson86/yii2-cms/HEAD/widgets/views/sideMenu.php --------------------------------------------------------------------------------