承接 bitheater/rating-bundle 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bitheater/rating-bundle

Composer 安装命令:

composer require bitheater/rating-bundle

包简介

Allows rating elements

README 文档

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!

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-06-27