tags:

views:

52

answers:

2

Hi. Can someone give me some links to a maybe guide or to a symfony plugin, for voting system. Thanks.

+1  A: 

This is a star rating system plugin for Symfony. I am not sure if you are looking for a polling system or a voting system.

http://www.symfony-project.org/plugins/mpStarRatingPlugin

I have not tested this.

I am not aware of any polling plugins for the latest version of symfony.

Jon
Thanks, I will try this!
Marat_Galiev
A: 

What would be useful to know is what type of voting you need, as there may be good solutions that you can incorporate into your Symfony project easily, such as this Jquery star rating, which will take care of making the frontend implementation pretty.

Tom
Some simple rating,just 2 buttons, up and down.
Marat_Galiev
I'd probably build something this simple from scratch: a TINYINT field in some table for the backend and Jquery Ajax for up/down frontend functionality like here on StackOverflow.
Tom