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


PHP DataColumn::getDataCellValue方法代碼示例

本文整理匯總了PHP中yii\grid\DataColumn::getDataCellValue方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataColumn::getDataCellValue方法的具體用法?PHP DataColumn::getDataCellValue怎麽用?PHP DataColumn::getDataCellValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在yii\grid\DataColumn的用法示例。


在下文中一共展示了DataColumn::getDataCellValue方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getDataCellValue

 /**
  * @inheritdoc
  */
 public function getDataCellValue($model, $key, $index)
 {
     if ($this->value !== null) {
         return parent::getDataCellValue($model, $key, $index);
     } else {
         $class = $this->menuClass;
         return $class::create(['model' => $model])->render(MenuButton::class);
     }
 }
開發者ID:hiqdev,項目名稱:yii2-menumanager,代碼行數:12,代碼來源:MenuColumn.php

示例2: getDataCellValue

 /**
  * @inheritdoc
  */
 public function getDataCellValue($model, $key, $index)
 {
     if ($this->value !== null) {
         return parent::getDataCellValue($model, $key, $index);
     }
     $attributeSet = $this->attribute !== null;
     $mappingSet = is_array($this->valueMapping);
     $vKey = ArrayHelper::getValue($model, $this->attribute);
     if ($attributeSet && $mappingSet && isset($this->valueMapping[$vKey])) {
         return $this->valueMapping[$vKey];
     }
     return parent::getDataCellValue($model, $key, $index);
 }
開發者ID:netbrothers-gmbh,項目名稱:yii-lib-basic,代碼行數:16,代碼來源:LabeledNumberColumn.php

示例3: getDataCellValue

 /**
  * @inheritdoc
  * @param mixed $model
  * @param mixed $key
  * @param int $index
  * @return null|string
  * @throws InvalidConfigException
  */
 public function getDataCellValue($model, $key, $index)
 {
     if (count($this->editable) == 2) {
         if (is_string($this->editable[0]) && $this->editable[0] == 'editor') {
             $editorConfig = call_user_func($this->editable[1], $model, $key, $index, $this);
             $this->initEditableColumns($model, $editorConfig);
             if ($this->value !== null) {
                 if (is_string($this->value)) {
                     return Html::a(ArrayHelper::getValue($model, $this->value), '', $editorConfig);
                 } else {
                     return Html::a(call_user_func($this->value, $model, $key, $index, $this), '', $editorConfig);
                 }
             } elseif ($this->attribute !== null) {
                 return Html::a(ArrayHelper::getValue($model, $this->attribute), '', $editorConfig);
             }
         } else {
             throw new InvalidConfigException('配置錯誤');
         }
         return null;
     } else {
         return parent::getDataCellValue($model, $key, $index);
     }
 }
開發者ID:xuguoliangjj,項目名稱:yiiblog,代碼行數:31,代碼來源:EditorDataColumn.php

示例4: getDataCellValue

 /**
  * @param mixed $model
  * @param mixed $key
  * @param int $index
  * @return mixed
  */
 public function getDataCellValue($model, $key, $index)
 {
     $value = parent::getDataCellValue($model, $key, $index);
     return ArrayHelper::getValue($this->enum, $value, $value);
 }
開發者ID:oakcms,項目名稱:oakcms,代碼行數:11,代碼來源:EnumColumn.php

示例5: getDataCellValue

 /**
  * @inheritdoc
  */
 public function getDataCellValue($model, $key, $index)
 {
     $value = parent::getDataCellValue($model, $key, $index);
     if ($this->trueValue !== true) {
         if ($value == $this->falseValue) {
             return $this->falseIcon;
         } else {
             return $this->trueIcon;
         }
     } else {
         if ($value !== null) {
             return $value ? $this->trueIcon : $this->falseIcon;
         }
         return $this->showNullAsFalse ? $this->falseIcon : $value;
     }
 }
開發者ID:skeeks-cms,項目名稱:cms,代碼行數:19,代碼來源:BooleanColumn.php

示例6: getDataCellValue

 public function getDataCellValue($model, $key, $index)
 {
     $value = parent::getDataCellValue($model, $key, $index);
     $this->_total += $value;
     return $value;
 }
開發者ID:pulselife,項目名稱:calculator,代碼行數:6,代碼來源:NumberColumn.php


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