├── .gitignore ├── .travis.yml ├── Controller └── VoteController.php ├── DependencyInjection ├── Configuration.php └── MsalsasVotingExtension.php ├── Entity ├── Click.php ├── ClickRepository.php ├── ReferenceClicks.php ├── ReferenceClicksRepository.php ├── ReferenceVotes.php ├── ReferenceVotesRepository.php ├── Vote │ └── AbstractVote.php ├── VoteNegative.php ├── VotePositive.php └── VoteRepository.php ├── LICENSE ├── MsalsasVotingBundle.php ├── README.md ├── Resources ├── config │ ├── doctrine │ │ ├── Click.orm.xml │ │ ├── ReferenceClicks.orm.xml │ │ ├── ReferenceVotes.orm.xml │ │ ├── VoteNegative.orm.xml │ │ └── VotePositive.orm.xml │ ├── routing │ │ └── msalsas_voting.xml │ └── services.xml ├── doc │ ├── clicks_or_views.rst │ ├── configuration_reference.rst │ ├── index.rst │ ├── publish.rst │ └── screenshot-1.png ├── public │ ├── css │ │ └── msalsas_voting_styles.css │ └── js │ │ ├── msalsas_voting_bottomBar.js │ │ └── msalsas_voting_shakeIt.js ├── translations │ ├── messages.en.yml │ └── messages.es.yml └── views │ └── msalsas_voting_widget.html.twig ├── Service ├── Clicker.php └── Voter.php ├── Tests ├── DependencyInjection │ └── MsalsasVotingExtensionTest.php ├── Entity │ ├── ClickTest.php │ ├── ReferenceClicksTest.php │ ├── ReferenceVotesTest.php │ ├── VoteNegativeTest.php │ └── VotePositiveTest.php ├── Mock │ ├── AnonymousUserMock.php │ ├── ClickMock.php │ ├── UserMock.php │ ├── VoteNegativeMock.php │ └── VotePositiveMock.php ├── Service │ ├── AbstractServiceTest.php │ ├── ClickerTest.php │ └── VoterTest.php └── bootstrap.php ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Controller/VoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Controller/VoteController.php -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/MsalsasVotingExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/DependencyInjection/MsalsasVotingExtension.php -------------------------------------------------------------------------------- /Entity/Click.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/Click.php -------------------------------------------------------------------------------- /Entity/ClickRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/ClickRepository.php -------------------------------------------------------------------------------- /Entity/ReferenceClicks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/ReferenceClicks.php -------------------------------------------------------------------------------- /Entity/ReferenceClicksRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/ReferenceClicksRepository.php -------------------------------------------------------------------------------- /Entity/ReferenceVotes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/ReferenceVotes.php -------------------------------------------------------------------------------- /Entity/ReferenceVotesRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/ReferenceVotesRepository.php -------------------------------------------------------------------------------- /Entity/Vote/AbstractVote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/Vote/AbstractVote.php -------------------------------------------------------------------------------- /Entity/VoteNegative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/VoteNegative.php -------------------------------------------------------------------------------- /Entity/VotePositive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/VotePositive.php -------------------------------------------------------------------------------- /Entity/VoteRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Entity/VoteRepository.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /MsalsasVotingBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/MsalsasVotingBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/doctrine/Click.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/doctrine/Click.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/ReferenceClicks.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/doctrine/ReferenceClicks.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/ReferenceVotes.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/doctrine/ReferenceVotes.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/VoteNegative.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/doctrine/VoteNegative.orm.xml -------------------------------------------------------------------------------- /Resources/config/doctrine/VotePositive.orm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/doctrine/VotePositive.orm.xml -------------------------------------------------------------------------------- /Resources/config/routing/msalsas_voting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/routing/msalsas_voting.xml -------------------------------------------------------------------------------- /Resources/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/config/services.xml -------------------------------------------------------------------------------- /Resources/doc/clicks_or_views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/doc/clicks_or_views.rst -------------------------------------------------------------------------------- /Resources/doc/configuration_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/doc/configuration_reference.rst -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/doc/index.rst -------------------------------------------------------------------------------- /Resources/doc/publish.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/doc/publish.rst -------------------------------------------------------------------------------- /Resources/doc/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/doc/screenshot-1.png -------------------------------------------------------------------------------- /Resources/public/css/msalsas_voting_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/public/css/msalsas_voting_styles.css -------------------------------------------------------------------------------- /Resources/public/js/msalsas_voting_bottomBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/public/js/msalsas_voting_bottomBar.js -------------------------------------------------------------------------------- /Resources/public/js/msalsas_voting_shakeIt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/public/js/msalsas_voting_shakeIt.js -------------------------------------------------------------------------------- /Resources/translations/messages.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/translations/messages.en.yml -------------------------------------------------------------------------------- /Resources/translations/messages.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/translations/messages.es.yml -------------------------------------------------------------------------------- /Resources/views/msalsas_voting_widget.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Resources/views/msalsas_voting_widget.html.twig -------------------------------------------------------------------------------- /Service/Clicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Service/Clicker.php -------------------------------------------------------------------------------- /Service/Voter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Service/Voter.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/MsalsasVotingExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/DependencyInjection/MsalsasVotingExtensionTest.php -------------------------------------------------------------------------------- /Tests/Entity/ClickTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Entity/ClickTest.php -------------------------------------------------------------------------------- /Tests/Entity/ReferenceClicksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Entity/ReferenceClicksTest.php -------------------------------------------------------------------------------- /Tests/Entity/ReferenceVotesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Entity/ReferenceVotesTest.php -------------------------------------------------------------------------------- /Tests/Entity/VoteNegativeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Entity/VoteNegativeTest.php -------------------------------------------------------------------------------- /Tests/Entity/VotePositiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Entity/VotePositiveTest.php -------------------------------------------------------------------------------- /Tests/Mock/AnonymousUserMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Mock/AnonymousUserMock.php -------------------------------------------------------------------------------- /Tests/Mock/ClickMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Mock/ClickMock.php -------------------------------------------------------------------------------- /Tests/Mock/UserMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Mock/UserMock.php -------------------------------------------------------------------------------- /Tests/Mock/VoteNegativeMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Mock/VoteNegativeMock.php -------------------------------------------------------------------------------- /Tests/Mock/VotePositiveMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Mock/VotePositiveMock.php -------------------------------------------------------------------------------- /Tests/Service/AbstractServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Service/AbstractServiceTest.php -------------------------------------------------------------------------------- /Tests/Service/ClickerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Service/ClickerTest.php -------------------------------------------------------------------------------- /Tests/Service/VoterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/Service/VoterTest.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msalsas/MsalsasVotingBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------