├── .bowerrc ├── .env.dist ├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── backend ├── assets │ └── AppAsset.php ├── config │ ├── _urlManager.php │ ├── bootstrap.php │ ├── main.php │ └── params.php ├── controllers │ ├── ArticleCategoryController.php │ ├── ArticleController.php │ ├── FileManagerController.php │ ├── KeyStorageController.php │ ├── LogController.php │ ├── MenuController.php │ ├── PageController.php │ ├── ServiceController.php │ ├── SiteController.php │ ├── TagController.php │ └── UserController.php ├── mail │ └── layouts │ │ ├── html.php │ │ └── text.php ├── models │ ├── Log.php │ ├── UserForm.php │ └── search │ │ ├── ArticleCategorySearch.php │ │ ├── ArticleSearch.php │ │ ├── KeyStorageItemSearch.php │ │ ├── LogSearch.php │ │ ├── MenuSearch.php │ │ ├── PageSearch.php │ │ ├── TagSearch.php │ │ └── UserSearch.php ├── runtime │ └── .gitignore ├── views │ ├── article-category │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── article │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── file-manager │ │ ├── frame.php │ │ └── index.php │ ├── key-storage │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── layouts │ │ ├── _content.php │ │ ├── _header.php │ │ ├── _left.php │ │ ├── main-login.php │ │ └── main.php │ ├── log │ │ ├── index.php │ │ └── view.php │ ├── menu │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── page │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── service │ │ └── cache.php │ ├── site │ │ ├── error.php │ │ ├── login.php │ │ └── settings.php │ ├── tag │ │ ├── _form.php │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ └── user │ │ ├── create.php │ │ ├── index.php │ │ └── update.php ├── web │ ├── .htaccess │ ├── assets │ │ └── .gitignore │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ └── static │ │ ├── css │ │ └── style.css │ │ └── img │ │ └── default.png └── widgets │ ├── Menu.php │ └── TinyMCECallback.php ├── backups ├── .gitignore └── .htaccess ├── common ├── assets │ ├── AdminLte.php │ ├── FontAwesome.php │ ├── Highlight.php │ ├── Html5shiv.php │ ├── JquerySlimScroll.php │ ├── OpenSans.php │ └── TimeCircles.php ├── behaviors │ ├── GlobalAccessBehavior.php │ └── LastActionBehavior.php ├── components │ ├── keyStorage │ │ ├── FormModel.php │ │ ├── FormWidget.php │ │ └── KeyStorage.php │ └── maintenance │ │ ├── Maintenance.php │ │ ├── assets │ │ ├── MaintenanceAsset.php │ │ ├── css │ │ │ └── maintenance.css │ │ └── js │ │ │ └── maintenance.js │ │ ├── controllers │ │ └── MaintenanceController.php │ │ └── views │ │ ├── layouts │ │ └── main.php │ │ └── maintenance │ │ └── index.php ├── config │ ├── bootstrap.php │ ├── main.php │ └── params.php ├── env.php ├── messages │ ├── config.php │ └── ru-RU │ │ ├── backend.php │ │ ├── common.php │ │ └── frontend.php ├── models │ ├── Article.php │ ├── ArticleCategory.php │ ├── KeyStorageItem.php │ ├── LoginForm.php │ ├── Menu.php │ ├── Page.php │ ├── Tag.php │ ├── User.php │ ├── UserProfile.php │ └── query │ │ ├── ArticleCategoryQuery.php │ │ ├── ArticleQuery.php │ │ ├── MenuQuery.php │ │ └── UserQuery.php ├── rbac │ └── OwnModelRule.php └── shortcuts.php ├── composer.json ├── console ├── config │ ├── bootstrap.php │ ├── main.php │ └── params.php ├── controllers │ ├── AppController.php │ ├── RbacController.php │ └── SitemapController.php ├── migrations │ ├── m160101_000001_user.php │ ├── m160101_000002_key_storage_item.php │ ├── m160101_000003_navbar_menu.php │ ├── m160101_000004_page.php │ ├── m160101_000005_article.php │ ├── m160101_000006_tag.php │ └── m160101_000007_data.php ├── models │ └── .gitkeep └── runtime │ └── .gitignore ├── docs ├── img │ ├── backend.png │ └── frontend.png └── installation.md ├── frontend ├── assets │ └── AppAsset.php ├── config │ ├── _cache.php │ ├── _urlManager.php │ ├── bootstrap.php │ ├── main.php │ └── params.php ├── controllers │ ├── ArticleController.php │ ├── PageController.php │ └── SiteController.php ├── mail │ ├── activation.php │ ├── layouts │ │ ├── html.php │ │ └── text.php │ └── passwordReset.php ├── models │ ├── ContactForm.php │ └── NavItem.php ├── modules │ └── account │ │ ├── Module.php │ │ ├── controllers │ │ ├── DefaultController.php │ │ └── SignInController.php │ │ ├── models │ │ ├── MessageForm.php │ │ ├── PasswordForm.php │ │ ├── PasswordResetRequestForm.php │ │ ├── ResetPasswordForm.php │ │ ├── SignupForm.php │ │ └── search │ │ │ └── UserSearch.php │ │ └── views │ │ ├── default │ │ ├── _search.php │ │ ├── message.php │ │ ├── password.php │ │ ├── settings.php │ │ ├── users.php │ │ └── view.php │ │ └── sign-in │ │ ├── login.php │ │ ├── requestPasswordResetToken.php │ │ ├── resetPassword.php │ │ └── signup.php ├── runtime │ └── .gitignore ├── views │ ├── article │ │ ├── _categoryItem.php │ │ ├── _item.php │ │ ├── category.php │ │ ├── index.php │ │ ├── tag.php │ │ └── view.php │ ├── layouts │ │ └── main.php │ ├── page │ │ └── view.php │ └── site │ │ ├── contact.php │ │ ├── error.php │ │ └── index.php └── web │ ├── .gitignore │ ├── .htaccess │ ├── assets │ └── .gitignore │ ├── favicon.ico │ ├── humans.txt │ ├── index.php │ ├── robots.txt │ └── static │ ├── css │ └── style.css │ └── img │ └── default.png ├── requirements.php ├── storage ├── .gitignore └── .htaccess ├── vagrant ├── config │ ├── .gitignore │ └── vagrant-local.example.yml ├── nginx │ ├── app.conf │ └── log │ │ └── .gitignore └── provision │ ├── always-as-root.sh │ ├── ascii-art │ └── planet-express.txt │ ├── common.sh │ ├── once-as-root.sh │ └── once-as-vagrant.sh ├── yii └── yii.bat /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "vendor/bower-asset" 3 | } 4 | -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/Vagrantfile -------------------------------------------------------------------------------- /backend/assets/AppAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/backend/assets/AppAsset.php -------------------------------------------------------------------------------- /backend/config/_urlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaten-Sect0r/yii2-core/HEAD/backend/config/_urlManager.php -------------------------------------------------------------------------------- /backend/config/bootstrap.php: -------------------------------------------------------------------------------- 1 |