for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hipanel\modules\domain\widgets;
use yii\base\Widget;
use yii\helpers\Html;
class CheckCircle extends Widget
{
/**
* @var boolean
*/
public $value;
public function run()
return Html::tag('i', null, [
'class' => 'fa fa-fw fa-lg fa-check-circle pull-right',
'style' => 'color: #' . (boolval($this->value) ? '00a65a' : 'b3b3b3')
]);
}