├── .php_cs ├── CommentAsset.php ├── LICENSE ├── Module.php ├── README.md ├── assets ├── css │ └── comment.css ├── images │ └── title-pattern.png └── js │ └── comment.js ├── composer.json ├── controllers ├── DefaultController.php └── ManageController.php ├── events └── CommentEvent.php ├── messages ├── config.php ├── en │ └── yii2mod.comments.php ├── pt-BR │ └── yii2mod.comments.php └── ru │ └── yii2mod.comments.php ├── migrations ├── m010101_100001_init_comment.php ├── m160629_121330_add_relatedTo_column_to_comment.php ├── m161109_092304_rename_comment_table.php └── m161114_094902_add_url_column_to_comment_table.php ├── models ├── CommentModel.php └── search │ └── CommentSearch.php ├── traits └── ModuleTrait.php ├── views └── manage │ ├── index.php │ └── update.php └── widgets ├── Comment.php └── views ├── _form.php ├── _list.php └── index.php /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/.php_cs -------------------------------------------------------------------------------- /CommentAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/CommentAsset.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/LICENSE -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/assets/css/comment.css -------------------------------------------------------------------------------- /assets/images/title-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/assets/images/title-pattern.png -------------------------------------------------------------------------------- /assets/js/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/assets/js/comment.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/controllers/DefaultController.php -------------------------------------------------------------------------------- /controllers/ManageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/controllers/ManageController.php -------------------------------------------------------------------------------- /events/CommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/events/CommentEvent.php -------------------------------------------------------------------------------- /messages/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/messages/config.php -------------------------------------------------------------------------------- /messages/en/yii2mod.comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/messages/en/yii2mod.comments.php -------------------------------------------------------------------------------- /messages/pt-BR/yii2mod.comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/messages/pt-BR/yii2mod.comments.php -------------------------------------------------------------------------------- /messages/ru/yii2mod.comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/messages/ru/yii2mod.comments.php -------------------------------------------------------------------------------- /migrations/m010101_100001_init_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/migrations/m010101_100001_init_comment.php -------------------------------------------------------------------------------- /migrations/m160629_121330_add_relatedTo_column_to_comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/migrations/m160629_121330_add_relatedTo_column_to_comment.php -------------------------------------------------------------------------------- /migrations/m161109_092304_rename_comment_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/migrations/m161109_092304_rename_comment_table.php -------------------------------------------------------------------------------- /migrations/m161114_094902_add_url_column_to_comment_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/migrations/m161114_094902_add_url_column_to_comment_table.php -------------------------------------------------------------------------------- /models/CommentModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/models/CommentModel.php -------------------------------------------------------------------------------- /models/search/CommentSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/models/search/CommentSearch.php -------------------------------------------------------------------------------- /traits/ModuleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/traits/ModuleTrait.php -------------------------------------------------------------------------------- /views/manage/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/views/manage/index.php -------------------------------------------------------------------------------- /views/manage/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/views/manage/update.php -------------------------------------------------------------------------------- /widgets/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/widgets/Comment.php -------------------------------------------------------------------------------- /widgets/views/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/widgets/views/_form.php -------------------------------------------------------------------------------- /widgets/views/_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/widgets/views/_list.php -------------------------------------------------------------------------------- /widgets/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/yii2-comments/HEAD/widgets/views/index.php --------------------------------------------------------------------------------