当前位置: 首页>>代码示例>>PHP>>正文


PHP ActiveForm::field方法代码示例

本文整理汇总了PHP中kartik\widgets\ActiveForm::field方法的典型用法代码示例。如果您正苦于以下问题:PHP ActiveForm::field方法的具体用法?PHP ActiveForm::field怎么用?PHP ActiveForm::field使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在kartik\widgets\ActiveForm的用法示例。


在下文中一共展示了ActiveForm::field方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _fieldWithAccessRules

 private function _fieldWithAccessRules($model, $attribute, $options, $rule)
 {
     switch ($this->_verifyAccessRules($rule)) {
         case self::EDITABLE:
             return parent::field($model, $attribute, $options);
         case self::NONEDITABLE:
             return parent::field($model, $attribute, array_merge($options, ['template' => '{label}' . $model->{$attribute}]));
         case self::INVISIBLE:
             return;
     }
 }
开发者ID:janwillemm,项目名称:sa-matcher,代码行数:11,代码来源:RoleBasedActiveForm.php

示例2: field

 /**
  * Generates a form field.
  * A form field is associated with a model and an attribute. It contains a label, an input and an error message
  * and use them to interact with end users to collect their inputs for the attribute.
  * @param Model $model the data model
  * @param string $attribute the attribute name or expression. See [[Html::getAttributeName()]] for the format
  * about attribute expression.
  * @param array $options the additional configurations for the field object
  * @return ActiveField the created ActiveField object
  * @see fieldConfig
  */
 public function field($model, $attribute, $options = [])
 {
     return parent::field($model, $attribute, $options);
 }
开发者ID:ayrozjlc,项目名称:yii2-metronic-2,代码行数:15,代码来源:ActiveForm.php


注:本文中的kartik\widgets\ActiveForm::field方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。