├── .csslintrc ├── CHANGELOG.md ├── CONDUCT.md ├── LICENSE.md ├── Module.php ├── README.md ├── actions └── VoteAction.php ├── assets ├── VoteAsset.php └── static │ ├── mixins.less │ ├── vote.css │ └── vote.less ├── behaviors ├── VoteBehavior.php └── VoteQueryBehavior.php ├── composer.json ├── controllers └── DefaultController.php ├── docs ├── action-events.md ├── behaviors.md └── customization.md ├── events └── VoteActionEvent.php ├── migrations ├── Migration.php ├── m160620_131811_vote.php ├── m160706_223457_vote_index.php └── m160706_223500_vote_updates.php ├── models ├── Vote.php ├── VoteAggregate.php └── VoteForm.php ├── traits └── ModuleTrait.php └── widgets ├── BaseWidget.php ├── Favorite.php ├── Like.php ├── Vote.php ├── VoteToggle.php └── views ├── favorite.php ├── toggle.php └── vote.php /.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/.csslintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/README.md -------------------------------------------------------------------------------- /actions/VoteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/actions/VoteAction.php -------------------------------------------------------------------------------- /assets/VoteAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/assets/VoteAsset.php -------------------------------------------------------------------------------- /assets/static/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/assets/static/mixins.less -------------------------------------------------------------------------------- /assets/static/vote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/assets/static/vote.css -------------------------------------------------------------------------------- /assets/static/vote.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/assets/static/vote.less -------------------------------------------------------------------------------- /behaviors/VoteBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/behaviors/VoteBehavior.php -------------------------------------------------------------------------------- /behaviors/VoteQueryBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/behaviors/VoteQueryBehavior.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/controllers/DefaultController.php -------------------------------------------------------------------------------- /docs/action-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/docs/action-events.md -------------------------------------------------------------------------------- /docs/behaviors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/docs/behaviors.md -------------------------------------------------------------------------------- /docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/docs/customization.md -------------------------------------------------------------------------------- /events/VoteActionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/events/VoteActionEvent.php -------------------------------------------------------------------------------- /migrations/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/migrations/Migration.php -------------------------------------------------------------------------------- /migrations/m160620_131811_vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/migrations/m160620_131811_vote.php -------------------------------------------------------------------------------- /migrations/m160706_223457_vote_index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/migrations/m160706_223457_vote_index.php -------------------------------------------------------------------------------- /migrations/m160706_223500_vote_updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/migrations/m160706_223500_vote_updates.php -------------------------------------------------------------------------------- /models/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/models/Vote.php -------------------------------------------------------------------------------- /models/VoteAggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/models/VoteAggregate.php -------------------------------------------------------------------------------- /models/VoteForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/models/VoteForm.php -------------------------------------------------------------------------------- /traits/ModuleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/traits/ModuleTrait.php -------------------------------------------------------------------------------- /widgets/BaseWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/BaseWidget.php -------------------------------------------------------------------------------- /widgets/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/Favorite.php -------------------------------------------------------------------------------- /widgets/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/Like.php -------------------------------------------------------------------------------- /widgets/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/Vote.php -------------------------------------------------------------------------------- /widgets/VoteToggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/VoteToggle.php -------------------------------------------------------------------------------- /widgets/views/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/views/favorite.php -------------------------------------------------------------------------------- /widgets/views/toggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/views/toggle.php -------------------------------------------------------------------------------- /widgets/views/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntd/yii2-vote/HEAD/widgets/views/vote.php --------------------------------------------------------------------------------