Semantic UI extension for Yii2
yii2-semantic-ui 2.* works with Semantic UI 2.*
The preferred way to install this extension is through Composer.
Either run
php composer.phar require obregonco/yii2-semantic-ui "~2"
or add
"obregonco/yii2-semantic-ui": "~2"
to the require section of your composer.json
Add SemanticUICSSAsset to AppAsset:
<?php
namespace backend\assets;
use yii\web\AssetBundle;
class AppAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [];
public $js = [];
public $depends = [
'yii\web\YiiAsset',
'yii\web\JqueryAsset',
'obregonco\SemanticUI\assets\SemanticUICSSAsset'
];
}
Use Semantic UI widgets and elements. Standard Yii2 widgets also adopted.
You may replace yii2 standard widgets. Write in bootstrap.php:
Yii::$container->set(\yii\grid\GridView::className(), \obregonco\SemanticUI\widgets\GridView::class);
Yii::$container->set(\yii\widgets\ActiveForm::className(), \obregonco\SemanticUI\widgets\ActiveForm::class);
Yii::$container->set(\yii\bootstrap\ActiveForm::className(), \obregonco\SemanticUI\widgets\ActiveForm::class);
Yii::$container->set(\yii\widgets\Breadcrumbs::className(), \obregonco\SemanticUI\collections\Breadcrumb::class);
Yii::$container->set(\yii\grid\CheckboxColumn::className(), \obregonco\SemanticUI\widgets\CheckboxColumn::class);
Be very careful with it.
- Inside an
ActiveForm
object
$form->field($model, 'username')->label(false)->textInput([
'autofocus' => true,
'placeHolder' => $model->getAttributeLabel('username'),
'uiOptions' => [
'appendTo' => '<i class="user icon"></i>',
'class' => 'ui left icon input',
]
])
Original maintainer Aleksandr Zelenin