muvo/yii2-column-stars

这是一个扩展,用于将一些值(如评分)显示为星星

安装: 169

依赖项: 0

建议者: 0

安全性: 0

星星: 0

关注者: 2

分支: 0

开放问题: 0

类型:yii2-extension

dev-master 2016-04-30 19:44 UTC

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 */
		],
	],
]) ?>