3

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

Marat_Galiev
  • 1,251
  • 5
  • 21
  • 31

2 Answers2

3

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.

jgallant
  • 11,143
  • 1
  • 38
  • 72
0

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
  • 30,090
  • 27
  • 90
  • 124
  • Some simple rating,just 2 buttons, up and down. – Marat_Galiev Sep 21 '10 at 19:59
  • 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 Sep 22 '10 at 19:26