PHP Класс Xpressengine\Support\Entity

Автор: XE Developers ([email protected])
Наследование: extends Illuminate\Support\Fluent
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$exists boolean Indicates if the entity exists.

Защищенные свойства (Protected)

Свойство Тип Описание
$fillable array The attributes that are mass assignable.
$guarded array The attributes that aren't mass assignable.
$hidden array The attributes that should be hidden for arrays.
$original array The entity attribute's original state.

Открытые методы

Метод Описание
__construct ( array $attributes = [] ) Constructor
fill ( array $attributes ) Fill the model with an array of attributes.
getDirty ( ) : array Get the attributes that have been changed since last sync.
getOriginal ( string | null $key = null, mixed $default = null ) : array Get the entity's original attribute values.
isFillable ( string $key ) : boolean Determine if the given attribute may be mass assigned.
isGuarded ( string $key ) : boolean Determine if the given key is guarded.
syncOriginal ( ) Sync the original attributes with the current.
toArray ( ) : array Convert the entity instance to an array.

Описание методов

__construct() публичный Метод

Constructor
public __construct ( array $attributes = [] )
$attributes array attributes

fill() публичный Метод

Fill the model with an array of attributes.
public fill ( array $attributes )
$attributes array attributes

getDirty() публичный Метод

Get the attributes that have been changed since last sync.
public getDirty ( ) : array
Результат array

getOriginal() публичный Метод

Get the entity's original attribute values.
public getOriginal ( string | null $key = null, mixed $default = null ) : array
$key string | null key name
$default mixed default value when not exists
Результат array

isFillable() публичный Метод

Determine if the given attribute may be mass assigned.
public isFillable ( string $key ) : boolean
$key string key name
Результат boolean

isGuarded() публичный Метод

Determine if the given key is guarded.
public isGuarded ( string $key ) : boolean
$key string key name
Результат boolean

syncOriginal() публичный Метод

Sync the original attributes with the current.
public syncOriginal ( )

toArray() публичный Метод

Convert the entity instance to an array.
public toArray ( ) : array
Результат array

Описание свойств

$exists публичное свойство

Indicates if the entity exists.
public bool $exists
Результат boolean

$fillable защищенное свойство

The attributes that are mass assignable.
protected array $fillable
Результат array

$guarded защищенное свойство

The attributes that aren't mass assignable.
protected array $guarded
Результат array

$hidden защищенное свойство

The attributes that should be hidden for arrays.
protected array $hidden
Результат array

$original защищенное свойство

The entity attribute's original state.
protected array $original
Результат array