本文整理匯總了PHP中yii\widgets\ActiveForm::fieldSelect方法的典型用法代碼示例。如果您正苦於以下問題:PHP ActiveForm::fieldSelect方法的具體用法?PHP ActiveForm::fieldSelect怎麽用?PHP ActiveForm::fieldSelect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類yii\widgets\ActiveForm
的用法示例。
在下文中一共展示了ActiveForm::fieldSelect方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: renderConfigForm
/**
* @return string
*/
public function renderConfigForm(ActiveForm $activeForm)
{
echo $activeForm->fieldSelect($this, 'fieldElement', \skeeks\cms\relatedProperties\propertyTypes\PropertyTypeList::fieldElements());
echo \skeeks\cms\modules\admin\widgets\RelatedModelsGrid::widget(['label' => \Yii::t('skeeks/cms', "Values for list"), 'hint' => \Yii::t('skeeks/cms', "You can snap to the element number of properties, and set the value to them"), 'parentModel' => $this->property, 'relation' => ['property_id' => 'id'], 'controllerRoute' => $this->enumRoute, 'gridViewOptions' => ['sortable' => true, 'columns' => [['attribute' => 'id', 'enableSorting' => false], ['attribute' => 'code', 'enableSorting' => false], ['attribute' => 'value', 'enableSorting' => false], ['attribute' => 'priority', 'enableSorting' => false], ['class' => \skeeks\cms\grid\BooleanColumn::className(), 'attribute' => 'def', 'enableSorting' => false]]]]);
}
示例2: renderConfigForm
/**
* @return string
*/
public function renderConfigForm(ActiveForm $activeForm)
{
echo $activeForm->fieldSelect($this, 'fieldElement', \skeeks\cms\relatedProperties\propertyTypes\PropertyTypeElement::fieldElements());
echo $activeForm->fieldSelect($this, 'content_id', \skeeks\cms\models\CmsContent::getDataForSelect());
}
示例3: renderConfigForm
/**
* @return string
*/
public function renderConfigForm(ActiveForm $activeForm)
{
echo $activeForm->fieldSelect($this, 'fieldElement', \skeeks\cms\relatedProperties\propertyTypes\PropertyTypeText::fieldElements());
echo $activeForm->fieldInputInt($this, 'rows');
echo $activeForm->field($this, 'default_value');
}
示例4: renderConfigForm
public function renderConfigForm(ActiveForm $form)
{
echo $form->fieldSet(\Yii::t('app', 'Main'));
echo $form->fieldSelect($this, 'themeColor', static::themes(), ['allowDeselect' => true]);
echo $form->fieldRadioListBoolean($this, 'boxedLayout');
echo $form->field($this, 'boxedBgImage')->widget(\skeeks\cms\modules\admin\widgets\formInputs\OneImage::className());
echo $form->field($this, 'boxedBgCss')->textInput()->hint('repeat or fixed center center');
echo $form->fieldSetEnd();
}