當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ActiveForm::fieldSelect方法代碼示例

本文整理匯總了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]]]]);
 }
開發者ID:skeeks-cms,項目名稱:cms,代碼行數:8,代碼來源:PropertyTypeList.php

示例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());
 }
開發者ID:skeeks-cms,項目名稱:cms,代碼行數:8,代碼來源:PropertyTypeElement.php

示例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');
 }
開發者ID:skeeks-cms,項目名稱:cms,代碼行數:9,代碼來源:PropertyTypeText.php

示例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();
 }
開發者ID:skeeks-cms,項目名稱:app-basic,代碼行數:9,代碼來源:TemplateBoomerang.php


注:本文中的yii\widgets\ActiveForm::fieldSelect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。