本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例6: getAttributeValue
public function getAttributeValue($key)
{
if (!$key) {
return null;
}
return parent::getAttributeValue($key);
}
示例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;
}