WowPress-Tailwind/theme/vendor/wenprise/wp-orm/src/Meta/Meta.php

57 lines
1.0 KiB
PHP
Executable File

<?php
namespace Wenprise\ORM\Meta;
use Wenprise\Eloquent\Model;
use Wenprise\ORM\Collection\MetaCollection;
use Exception;
/**
* Class Meta
*
* @package Wenprise\ORM\Model\Meta
* @author Junior Grossi <juniorgro@gmail.com>
*/
abstract class Meta extends Model
{
/**
* @var string
*/
protected $primaryKey = 'meta_id';
/**
* @var bool
*/
public $timestamps = false;
/**
* @var array
*/
protected $appends = ['value'];
/**
* @return mixed
*/
public function getValueAttribute()
{
try {
$value = unserialize($this->meta_value);
return $value === false && $this->meta_value !== false ?
$this->meta_value :
$value;
} catch (Exception $ex) {
return $this->meta_value;
}
}
/**
* @param array $models
* @return MetaCollection
*/
public function newCollection(array $models = [])
{
return new MetaCollection($models);
}
}