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


PHP Model::getAttributeValue方法代碼示例

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


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

示例1: getAttributeValue

 public function getAttributeValue($key)
 {
     $value = parent::getAttributeValue($key);
     if (in_array($key, array_keys($this->postgresifyTypes))) {
         if (!is_null($value)) {
             return PostgresifyTypeTransformer::transform($key, $value, $this->postgresifyTypes[$key]);
         }
     }
     return $value;
 }
開發者ID:aejnsn,項目名稱:postgresify,代碼行數:10,代碼來源:PostgresifyModel.php

示例2: getAttributeValue

 /**
  * Get a plain attribute (not a relationship).
  * @param  string  $key
  * @return mixed
  */
 public function getAttributeValue($key)
 {
     $attr = parent::getAttributeValue($key);
     /*
      * Return valid json (boolean, array) if valid, otherwise
      * jsonable fields will return a string for invalid data.
      */
     if (in_array($key, $this->jsonable) && !empty($attr)) {
         $_attr = json_decode($attr, true);
         if (json_last_error() === JSON_ERROR_NONE) {
             $attr = $_attr;
         }
     }
     return $attr;
 }
開發者ID:nevinsm,項目名稱:personalSite,代碼行數:20,代碼來源:Model.php

示例3: getWidgetValue

 /**
  * Get a plain attribute (not a relationship).
  *
  * @param  string          $key
  * @param  WidgetInterface $widget
  *
  * @return mixed
  */
 public function getWidgetValue($key, WidgetInterface $widget)
 {
     $value = parent::getAttributeValue($key);
     if (!is_null($field = $this->getFieldsCollection()->getByKey($key))) {
         $value = $field->onGetWidgetValue($this, $widget, $value);
     }
     return $value;
 }
開發者ID:KodiComponents,項目名稱:module-datasource,代碼行數:16,代碼來源:Document.php

示例4: getAttributeValue

 /**
  * Get a plain attribute (not a relationship).
  * @param  string  $key
  * @return mixed
  */
 protected function getAttributeValue($key)
 {
     $attr = parent::getAttributeValue($key);
     // Handle jsonable
     if (in_array($key, $this->jsonable) && !empty($attr)) {
         $attr = json_decode($attr, true);
     }
     return $attr;
 }
開發者ID:janusnic,項目名稱:23copperleaf,代碼行數:14,代碼來源:Model.php

示例5: getAttributeValue

 /**
  * Get a plain attribute (not a relationship).
  * @param  string  $key
  * @return mixed
  */
 public function getAttributeValue($key)
 {
     /*
      * Before Event
      */
     if (($attr = $this->fireEvent('model.beforeGetAttribute', [$key], true)) !== null) {
         return $attr;
     }
     $attr = parent::getAttributeValue($key);
     /*
      * Return valid json (boolean, array) if valid, otherwise
      * jsonable fields will return a string for invalid data.
      */
     if ($this->isJsonable($key) && !empty($attr)) {
         $_attr = json_decode($attr, true);
         if (json_last_error() === JSON_ERROR_NONE) {
             $attr = $_attr;
         }
     }
     /*
      * After Event
      */
     if (($_attr = $this->fireEvent('model.getAttribute', [$key, $attr], true)) !== null) {
         return $_attr;
     }
     return $attr;
 }
開發者ID:richlove1,項目名稱:avc-october,代碼行數:32,代碼來源:Model.php

示例6: getAttributeValue

 public function getAttributeValue($key)
 {
     if (!$key) {
         return null;
     }
     return parent::getAttributeValue($key);
 }
開發者ID:pkirkaas,項目名稱:PkExtensions,代碼行數:7,代碼來源:PkModel.php

示例7: getAttributeValue

 /**
  * Get a plain attribute (not a relationship).
  *
  * @param  string $key
  * @return mixed
  */
 public function getAttributeValue($key)
 {
     $value = parent::getAttributeValue($key);
     if ($value instanceof Carbon && $this->timestamp_get_with_user_timezone) {
         $value->setTimezone($this->getAuthUserDateTimezone());
     }
     return $value;
 }
開發者ID:someline,項目名稱:starter-framework,代碼行數:14,代碼來源:BaseModel.php


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