/
v.bolshakov
/
AIEcosystem-Testing
Обзор
Документация
Войти
/
v.bolshakov
/
AIEcosystem-Testing
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
common/views/elem/_text.php
17 строк
452 B
Developer
Initial commit
03 авг 2026, 17:43
03 авг 2026, 17:43
7433917
Код
Авторство
О чём код?
<?php use yii\bootstrap\ActiveForm; use yii\helpers\ArrayHelper; /** @var $form ActiveForm */ /** @var $model common\models\base\BaseModel */ /** @var $options [] */ /** @var $name string */ $options = isset($options) ? $options : []; $options['autocomplete'] = 'off'; $enableLabel = ArrayHelper::getValue($options, 'enableLabel', true); echo $form->field($model, $name) ->textInput(['maxlength' => true] + $options) ->label($enableLabel);