peng/yii2-evaluation

一个 Yii2 扩展,一个用于创建在线调查、评估等的部件

安装: 47

依赖: 0

建议者: 0

安全: 0

星标: 4

关注者: 2

分支: 2

开放问题: 0

类型:yii2-extension

0.1.0 2016-01-05 07:44 UTC

This package is not auto-updated.

Last update: 2024-09-18 18:53:55 UTC


README

一个 Yii2 扩展,一个用于创建在线调查、评估等的部件

安装

安装此扩展的首选方式是通过 Composer

运行

php composer.phar require --prefer-dist peng/yii2-evaluation "0.1.0"

或将

"peng/yii2-evaluation": "0.1.0"

添加到您的 composer.json 文件的 require 部分中。

使用方法

一旦扩展安装完成,只需在代码中使用它即可

<?= \peng\evaluation\RadioButtonMatrix::widget([
	'id' => 'self-evalution',
	'questions' => ['Strength of Mind', 'Open Communication', 'Leadership',
		'Understanding', 'Teamwork', 'Integrity', 'Originality', 'Notification',
	],
	'scale' => ['min' => 0, 'max' => 5],
	'sections' => ['2015 Scores', '2016 Scores'],
	'enableComment' => true,
]); ?>

截图