├── Articles.php ├── Bootstrap.php ├── README.md ├── assets ├── ArticlesAsset.php └── assets │ └── css │ └── articles.css ├── composer.json ├── controllers ├── AttachmentsController.php ├── CategoriesController.php ├── DefaultController.php ├── ItemsController.php └── TagsController.php ├── docs └── advanced-template-recommended-configuration.md ├── filters └── FrontendFilter.php ├── img └── articles │ ├── categories │ ├── blog.png │ ├── default.jpg │ ├── portfolio.png │ └── thumb │ │ ├── extra │ │ ├── blog.png │ │ └── portfolio.png │ │ ├── large │ │ ├── blog.png │ │ └── portfolio.png │ │ ├── medium │ │ ├── blog.png │ │ └── portfolio.png │ │ └── small │ │ ├── blog.png │ │ └── portfolio.png │ └── items │ ├── default.jpg │ ├── lorem-ipsum-i.jpg │ ├── lorem-ipsum-ii.jpg │ ├── lorem-ipsum-iii.jpg │ ├── lorem-ipsum-iv.jpg │ ├── lorem-ipsum-v.jpg │ ├── lorem-ipsum-vi.jpg │ └── thumb │ ├── extra │ ├── lorem-ipsum-i.jpg │ ├── lorem-ipsum-ii.jpg │ ├── lorem-ipsum-iii.jpg │ ├── lorem-ipsum-iv.jpg │ ├── lorem-ipsum-v.jpg │ └── lorem-ipsum-vi.jpg │ ├── large │ ├── lorem-ipsum-i.jpg │ ├── lorem-ipsum-ii.jpg │ ├── lorem-ipsum-iii.jpg │ ├── lorem-ipsum-iv.jpg │ ├── lorem-ipsum-v.jpg │ └── lorem-ipsum-vi.jpg │ ├── medium │ ├── lorem-ipsum-i.jpg │ ├── lorem-ipsum-ii.jpg │ ├── lorem-ipsum-iii.jpg │ ├── lorem-ipsum-iv.jpg │ ├── lorem-ipsum-v.jpg │ └── lorem-ipsum-vi.jpg │ └── small │ ├── lorem-ipsum-i.jpg │ ├── lorem-ipsum-ii.jpg │ ├── lorem-ipsum-iii.jpg │ ├── lorem-ipsum-iv.jpg │ ├── lorem-ipsum-v.jpg │ └── lorem-ipsum-vi.jpg ├── messages ├── it │ └── articles.php └── ru │ └── articles.php ├── migrations ├── m151021_200401_create_article_categories_table.php ├── m151021_200427_create_article_items_table.php ├── m151021_200518_create_article_attachments_table.php ├── m151105_204528_create_article_tags_table.php ├── m170616_185620_insert_article_data_demo.php ├── m170626_185620_insert_article_auth_permissions.php ├── m170636_185630_create_article_items_translations.php └── m170636_185640_create_article_categories_translations.php ├── models ├── Articles.php ├── Attachments.php ├── AttachmentsSearch.php ├── Categories.php ├── CategoriesQuery.php ├── CategoriesSearch.php ├── CategoriesTranslations.php ├── CategoriesTranslationsQuery.php ├── Items.php ├── ItemsQuery.php ├── ItemsSearch.php ├── Tags.php ├── TagsQuery.php ├── TagsSearch.php ├── Tagsassign.php ├── TagsassignQuery.php ├── Translations.php └── TranslationsQuery.php ├── overrides ├── CategoriesController.php ├── DefaultController.php ├── ItemsController.php └── TagsController.php ├── views ├── attachments │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php ├── categories │ ├── _form.php │ ├── _form_params.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── themes │ │ ├── blog.php │ │ └── portfolio.php │ ├── update.php │ └── view.php ├── default │ ├── _dashboard_adminlte.php │ ├── _dashboard_default.php │ ├── _menu.php │ ├── _meta_data.php │ ├── _meta_facebook.php │ ├── _meta_twitter.php │ └── index.php ├── items │ ├── _form.php │ ├── _form_params.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php └── tags │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php └── widgets ├── CategoriesWidget.php ├── CategoryWidget.php └── ItemWidget.php /Articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/Articles.php -------------------------------------------------------------------------------- /Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/Bootstrap.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/README.md -------------------------------------------------------------------------------- /assets/ArticlesAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/assets/ArticlesAsset.php -------------------------------------------------------------------------------- /assets/assets/css/articles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/assets/assets/css/articles.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/AttachmentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/controllers/AttachmentsController.php -------------------------------------------------------------------------------- /controllers/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/controllers/CategoriesController.php -------------------------------------------------------------------------------- /controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/controllers/DefaultController.php -------------------------------------------------------------------------------- /controllers/ItemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/controllers/ItemsController.php -------------------------------------------------------------------------------- /controllers/TagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/controllers/TagsController.php -------------------------------------------------------------------------------- /docs/advanced-template-recommended-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/docs/advanced-template-recommended-configuration.md -------------------------------------------------------------------------------- /filters/FrontendFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/filters/FrontendFilter.php -------------------------------------------------------------------------------- /img/articles/categories/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/blog.png -------------------------------------------------------------------------------- /img/articles/categories/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/default.jpg -------------------------------------------------------------------------------- /img/articles/categories/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/portfolio.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/extra/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/extra/blog.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/extra/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/extra/portfolio.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/large/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/large/blog.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/large/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/large/portfolio.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/medium/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/medium/blog.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/medium/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/medium/portfolio.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/small/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/small/blog.png -------------------------------------------------------------------------------- /img/articles/categories/thumb/small/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/categories/thumb/small/portfolio.png -------------------------------------------------------------------------------- /img/articles/items/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/default.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-i.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-ii.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-iii.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-iv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-iv.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-v.jpg -------------------------------------------------------------------------------- /img/articles/items/lorem-ipsum-vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/lorem-ipsum-vi.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-i.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-ii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-iii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-iv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-iv.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-v.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/extra/lorem-ipsum-vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/extra/lorem-ipsum-vi.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-i.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-ii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-iii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-iv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-iv.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-v.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/large/lorem-ipsum-vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/large/lorem-ipsum-vi.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-i.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-ii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-iii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-iv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-iv.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-v.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/medium/lorem-ipsum-vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/medium/lorem-ipsum-vi.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-i.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-ii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-ii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-iii.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-iii.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-iv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-iv.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-v.jpg -------------------------------------------------------------------------------- /img/articles/items/thumb/small/lorem-ipsum-vi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/img/articles/items/thumb/small/lorem-ipsum-vi.jpg -------------------------------------------------------------------------------- /messages/it/articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/messages/it/articles.php -------------------------------------------------------------------------------- /messages/ru/articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/messages/ru/articles.php -------------------------------------------------------------------------------- /migrations/m151021_200401_create_article_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m151021_200401_create_article_categories_table.php -------------------------------------------------------------------------------- /migrations/m151021_200427_create_article_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m151021_200427_create_article_items_table.php -------------------------------------------------------------------------------- /migrations/m151021_200518_create_article_attachments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m151021_200518_create_article_attachments_table.php -------------------------------------------------------------------------------- /migrations/m151105_204528_create_article_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m151105_204528_create_article_tags_table.php -------------------------------------------------------------------------------- /migrations/m170616_185620_insert_article_data_demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m170616_185620_insert_article_data_demo.php -------------------------------------------------------------------------------- /migrations/m170626_185620_insert_article_auth_permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m170626_185620_insert_article_auth_permissions.php -------------------------------------------------------------------------------- /migrations/m170636_185630_create_article_items_translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m170636_185630_create_article_items_translations.php -------------------------------------------------------------------------------- /migrations/m170636_185640_create_article_categories_translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/migrations/m170636_185640_create_article_categories_translations.php -------------------------------------------------------------------------------- /models/Articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Articles.php -------------------------------------------------------------------------------- /models/Attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Attachments.php -------------------------------------------------------------------------------- /models/AttachmentsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/AttachmentsSearch.php -------------------------------------------------------------------------------- /models/Categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Categories.php -------------------------------------------------------------------------------- /models/CategoriesQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/CategoriesQuery.php -------------------------------------------------------------------------------- /models/CategoriesSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/CategoriesSearch.php -------------------------------------------------------------------------------- /models/CategoriesTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/CategoriesTranslations.php -------------------------------------------------------------------------------- /models/CategoriesTranslationsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/CategoriesTranslationsQuery.php -------------------------------------------------------------------------------- /models/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Items.php -------------------------------------------------------------------------------- /models/ItemsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/ItemsQuery.php -------------------------------------------------------------------------------- /models/ItemsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/ItemsSearch.php -------------------------------------------------------------------------------- /models/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Tags.php -------------------------------------------------------------------------------- /models/TagsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/TagsQuery.php -------------------------------------------------------------------------------- /models/TagsSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/TagsSearch.php -------------------------------------------------------------------------------- /models/Tagsassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Tagsassign.php -------------------------------------------------------------------------------- /models/TagsassignQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/TagsassignQuery.php -------------------------------------------------------------------------------- /models/Translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/Translations.php -------------------------------------------------------------------------------- /models/TranslationsQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/models/TranslationsQuery.php -------------------------------------------------------------------------------- /overrides/CategoriesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/overrides/CategoriesController.php -------------------------------------------------------------------------------- /overrides/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/overrides/DefaultController.php -------------------------------------------------------------------------------- /overrides/ItemsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/overrides/ItemsController.php -------------------------------------------------------------------------------- /overrides/TagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/overrides/TagsController.php -------------------------------------------------------------------------------- /views/attachments/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/_form.php -------------------------------------------------------------------------------- /views/attachments/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/_search.php -------------------------------------------------------------------------------- /views/attachments/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/create.php -------------------------------------------------------------------------------- /views/attachments/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/index.php -------------------------------------------------------------------------------- /views/attachments/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/update.php -------------------------------------------------------------------------------- /views/attachments/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/attachments/view.php -------------------------------------------------------------------------------- /views/categories/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/_form.php -------------------------------------------------------------------------------- /views/categories/_form_params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/_form_params.php -------------------------------------------------------------------------------- /views/categories/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/_search.php -------------------------------------------------------------------------------- /views/categories/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/create.php -------------------------------------------------------------------------------- /views/categories/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/index.php -------------------------------------------------------------------------------- /views/categories/themes/blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/themes/blog.php -------------------------------------------------------------------------------- /views/categories/themes/portfolio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/themes/portfolio.php -------------------------------------------------------------------------------- /views/categories/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/update.php -------------------------------------------------------------------------------- /views/categories/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/categories/view.php -------------------------------------------------------------------------------- /views/default/_dashboard_adminlte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_dashboard_adminlte.php -------------------------------------------------------------------------------- /views/default/_dashboard_default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_dashboard_default.php -------------------------------------------------------------------------------- /views/default/_menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_menu.php -------------------------------------------------------------------------------- /views/default/_meta_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_meta_data.php -------------------------------------------------------------------------------- /views/default/_meta_facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_meta_facebook.php -------------------------------------------------------------------------------- /views/default/_meta_twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/_meta_twitter.php -------------------------------------------------------------------------------- /views/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/default/index.php -------------------------------------------------------------------------------- /views/items/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/_form.php -------------------------------------------------------------------------------- /views/items/_form_params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/_form_params.php -------------------------------------------------------------------------------- /views/items/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/_search.php -------------------------------------------------------------------------------- /views/items/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/create.php -------------------------------------------------------------------------------- /views/items/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/index.php -------------------------------------------------------------------------------- /views/items/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/update.php -------------------------------------------------------------------------------- /views/items/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/items/view.php -------------------------------------------------------------------------------- /views/tags/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/_form.php -------------------------------------------------------------------------------- /views/tags/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/_search.php -------------------------------------------------------------------------------- /views/tags/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/create.php -------------------------------------------------------------------------------- /views/tags/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/index.php -------------------------------------------------------------------------------- /views/tags/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/update.php -------------------------------------------------------------------------------- /views/tags/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/views/tags/view.php -------------------------------------------------------------------------------- /widgets/CategoriesWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/widgets/CategoriesWidget.php -------------------------------------------------------------------------------- /widgets/CategoryWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/widgets/CategoryWidget.php -------------------------------------------------------------------------------- /widgets/ItemWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinghie/yii2-articles/HEAD/widgets/ItemWidget.php --------------------------------------------------------------------------------