├── .gitmodules ├── CHANGELOG.md ├── CommentModule.php ├── README.md ├── behaviors ├── CommentEvent.php └── CommentableBehavior.php ├── composer.json ├── controllers └── CommentController.php ├── migrations └── m111104_135414_commentTable.php ├── models └── Comment.php ├── tests ├── bootstrap.php └── phpunit.xml └── views └── comment ├── _form.php ├── _search.tpl ├── _view.php ├── admin.tpl ├── commentList.php ├── create.tpl ├── index.tpl ├── update.tpl └── view.tpl /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CommentModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/CommentModule.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/README.md -------------------------------------------------------------------------------- /behaviors/CommentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/behaviors/CommentEvent.php -------------------------------------------------------------------------------- /behaviors/CommentableBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/behaviors/CommentableBehavior.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/controllers/CommentController.php -------------------------------------------------------------------------------- /migrations/m111104_135414_commentTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/migrations/m111104_135414_commentTable.php -------------------------------------------------------------------------------- /models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/models/Comment.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /views/comment/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/_form.php -------------------------------------------------------------------------------- /views/comment/_search.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/_search.tpl -------------------------------------------------------------------------------- /views/comment/_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/_view.php -------------------------------------------------------------------------------- /views/comment/admin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/admin.tpl -------------------------------------------------------------------------------- /views/comment/commentList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/commentList.php -------------------------------------------------------------------------------- /views/comment/create.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/create.tpl -------------------------------------------------------------------------------- /views/comment/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/index.tpl -------------------------------------------------------------------------------- /views/comment/update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/update.tpl -------------------------------------------------------------------------------- /views/comment/view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiiext/comment-module/HEAD/views/comment/view.tpl --------------------------------------------------------------------------------