bitheater / rating-bundle
Allows rating elements
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.4.0
- symfony/framework-bundle: ~2.3
Requires (Dev)
- doctrine/doctrine-bundle: ~1.3
This package is auto-updated.
Last update: 2025-03-29 00:24:06 UTC
README
This bundle allows you to include ratings for any kind of element in your web page.
UNDER CONSTRUCTION, so please don't use this bundle yet :)
Installation
- Add the dependency to your
composer.json
:composer require bitheater/rating-bundle
- Bootstrap the bundle in your
AppKernel.php
file:new Bitheater\RatingBundle\BitheaterRatingBundle()
- Configure the bundle (for now we just support MySQL, but it should be trivial to support other datastores!):
bitheater_rating: driver: orm model_class: MyBundle\Entity\Vote
Create the vote class, extending the base vote one:
use Bitheater\RatingBundle\Model\Vote as RatingVote; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="Bitheater\RatingBundle\Repository\Doctrine\ORMRepository") * @ORM\Table(name="vote") */ class Vote extends RatingVote { /** * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ protected $id; public function getId() { return $this->id; } }
- Done! Just use the service now:
$ratingManager = $this->get('bitheater_rating.manager');
Enjoy!