muvo / yii2-column-stars
这是一个扩展,用于将一些值(如评分)显示为星星
dev-master
2016-04-30 19:44 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-14 19:09:28 UTC
README
作为常用小部件使用
<?= Stars::widget(['value'=>3.5]) ?>
作为数据列使用
<?= GridView::widget([
'dataProvider' => …,
'columns' => [
<some column definitions>,
[
'class' => columns\StarColumn::className(),
'attribute' => 'rating', /* In this example «rating»
attribute contains amount
of stars, which we need
to display */
],
],
]) ?>