Documentation

Timezone extends Model
in package
Uses Searchable, SoftDelete, Timezonable

Clake\Userextended\Models\Timezone

Tags
mixin

\Eloquent

Table of Contents

$abbr  : string
$attachMany  : mixed
$attachOne  : mixed
$belongsTo  : mixed
$belongsToMany  : mixed
$count  : int
$created_at  : Carbon|null
$deleted_at  : Carbon|null
$hasMany  : mixed
$hasOne  : array<string|int, mixed>
$id  : int
$morphMany  : mixed
$morphOne  : mixed
$morphTo  : mixed
$name  : string
$offset  : string
$table  : string
$updated_at  : Carbon|null
$utc  : string
$dates  : array<string|int, mixed>
$fillable  : array<string|int, mixed>
$forceDeleting  : bool
Indicates if the model is currently force deleting.
$guarded  : array<string|int, mixed>
$searchable  : array<string|int, mixed>
$timezonable  : array<string|int, mixed>
all()  :
bootSearchable()  : mixed
Called by the system on runtime, Binds an event to the model to adjust timezones
bootSoftDelete()  : void
Boot the soft deleting trait for a model.
bootTimezonable()  : mixed
Called by the system on runtime, Binds an event to the model to adjust timezones
forceDelete()  : void
Force a hard delete on a soft deleted model.
get()  :
getDeletedAtColumn()  : string
Get the name of the "deleted at" column.
getQualifiedDeletedAtColumn()  : string
Get the fully qualified "deleted at" column.
getSearchableAttributes()  : array<string|int, mixed>
Returns a collection of fields that will be encrypted.
getTime()  : mixed
Returns a timestamp adjusted by the logged in users Timezone
getTimezonableAttributes()  : array<string|int, mixed>
Returns a collection of fields that will be encrypted.
getTimezonesList()  : array<string|int, mixed>
Returns a list of timezones setup to populate dropdown menus
isSoftDelete()  : bool
Helper method to check if the model is currently being hard or soft deleted, useful in events.
newModelQuery()  :
newQuery()  :
onlyTrashed()  : Builder|static
Get a new query builder that only includes soft deletes.
query()  :
restore()  : bool|null
Restore a soft-deleted model instance.
restored()  : void
Register a restored model event with the dispatcher.
restoring()  : void
Register a restoring model event with the dispatcher.
search()  : mixed
Loops through all the different fields to search by
timezonify()  : mixed
Returns a timestamp adjusted by the logged in users Timezone Alias for getTime()
trashed()  : bool
Determine if the model instance has been soft-deleted.
whereAbbr()  :
whereCount()  :
whereCreatedAt()  :
whereDeletedAt()  :
whereId()  :
whereName()  :
whereOffset()  :
whereUpdatedAt()  :
whereUtc()  :
withTrashed()  : Builder|static
Get a new query builder that includes soft deletes.
performDeleteOnModel()  : mixed
Perform the actual delete query on this model instance.
performRestoreOnRelations()  : void
Locates relations with softDelete flag and cascades the restore event.
performSoftDeleteOnRelations()  : void
Locates relations with softDelete flag and cascades the delete event.
runSoftDelete()  : void
Perform the actual delete query on this model instance.
searchUserByAttribute()  : mixed
Preforms the actual search

Properties

$attachMany

public mixed $attachMany = []

$attachOne

public mixed $attachOne = []

$belongsToMany

public mixed $belongsToMany = []

$hasMany

public mixed $hasMany = ['users' => ['Clake\Userextended\Models\UserExtended', 'key' => 'timezone_id']]

$hasOne

public array<string|int, mixed> $hasOne = []

Relations

$morphMany

public mixed $morphMany = []

$table

public string $table = 'clake_userextended_timezones'

The database table used by the model.

$dates

protected array<string|int, mixed> $dates = ['deleted_at']

$fillable

protected array<string|int, mixed> $fillable = ['abbr', 'name', 'utc', 'offset']

Fillable fields

$forceDeleting

Indicates if the model is currently force deleting.

protected bool $forceDeleting = false

$guarded

protected array<string|int, mixed> $guarded = ['*']

Guarded fields

$searchable

protected array<string|int, mixed> $searchable = ['name', 'abbr', 'utc']

$timezonable

protected array<string|int, mixed> $timezonable = ['updated_at', 'created_at']

Methods

all()

public static all(mixed $columns) :
Parameters
$columns : mixed
Return values

bootSearchable()

Called by the system on runtime, Binds an event to the model to adjust timezones

public static bootSearchable() : mixed
Tags
throws
Exception
Return values
mixed

bootSoftDelete()

Boot the soft deleting trait for a model.

public static bootSoftDelete() : void
Return values
void

bootTimezonable()

Called by the system on runtime, Binds an event to the model to adjust timezones

public static bootTimezonable() : mixed
Tags
throws
Exception
Return values
mixed

forceDelete()

Force a hard delete on a soft deleted model.

public forceDelete() : void
Return values
void

get()

public static get(mixed $columns) :
Parameters
$columns : mixed
Return values

getDeletedAtColumn()

Get the name of the "deleted at" column.

public getDeletedAtColumn() : string
Return values
string

getQualifiedDeletedAtColumn()

Get the fully qualified "deleted at" column.

public getQualifiedDeletedAtColumn() : string
Return values
string

getSearchableAttributes()

Returns a collection of fields that will be encrypted.

public getSearchableAttributes() : array<string|int, mixed>
Return values
array<string|int, mixed>

getTime()

Returns a timestamp adjusted by the logged in users Timezone

public getTime( $timestamp[, UserExtended|null $user = null ]) : mixed
Parameters
$timestamp :
$user : UserExtended|null = null
Return values
mixed

getTimezonableAttributes()

Returns a collection of fields that will be encrypted.

public getTimezonableAttributes() : array<string|int, mixed>
Return values
array<string|int, mixed>

getTimezonesList()

Returns a list of timezones setup to populate dropdown menus

public static getTimezonesList() : array<string|int, mixed>
Return values
array<string|int, mixed>

isSoftDelete()

Helper method to check if the model is currently being hard or soft deleted, useful in events.

public isSoftDelete() : bool
Return values
bool

newModelQuery()

public static newModelQuery() :
Return values

newQuery()

public static newQuery() :
Return values

onlyTrashed()

Get a new query builder that only includes soft deletes.

public static onlyTrashed() : Builder|static
Return values
Builder|static

query()

public static query() :
Return values

restore()

Restore a soft-deleted model instance.

public restore() : bool|null
Return values
bool|null

restored()

Register a restored model event with the dispatcher.

public static restored(Closure|string $callback) : void
Parameters
$callback : Closure|string
Return values
void

restoring()

Register a restoring model event with the dispatcher.

public static restoring(Closure|string $callback) : void
Parameters
$callback : Closure|string
Return values
void

Loops through all the different fields to search by

public search( $phrase) : mixed
Parameters
$phrase :
Return values
mixed

timezonify()

Returns a timestamp adjusted by the logged in users Timezone Alias for getTime()

public timezonify( $timestamp) : mixed
Parameters
$timestamp :
Return values
mixed

trashed()

Determine if the model instance has been soft-deleted.

public trashed() : bool
Return values
bool

whereAbbr()

public static whereAbbr(mixed $value) :
Parameters
$value : mixed
Return values

whereCount()

public static whereCount(mixed $value) :
Parameters
$value : mixed
Return values

whereCreatedAt()

public static whereCreatedAt(mixed $value) :
Parameters
$value : mixed
Return values

whereDeletedAt()

public static whereDeletedAt(mixed $value) :
Parameters
$value : mixed
Return values

whereId()

public static whereId(mixed $value) :
Parameters
$value : mixed
Return values

whereName()

public static whereName(mixed $value) :
Parameters
$value : mixed
Return values

whereOffset()

public static whereOffset(mixed $value) :
Parameters
$value : mixed
Return values

whereUpdatedAt()

public static whereUpdatedAt(mixed $value) :
Parameters
$value : mixed
Return values

whereUtc()

public static whereUtc(mixed $value) :
Parameters
$value : mixed
Return values

withTrashed()

Get a new query builder that includes soft deletes.

public static withTrashed() : Builder|static
Return values
Builder|static

performDeleteOnModel()

Perform the actual delete query on this model instance.

protected performDeleteOnModel() : mixed
Return values
mixed

performRestoreOnRelations()

Locates relations with softDelete flag and cascades the restore event.

protected performRestoreOnRelations() : void
Return values
void

performSoftDeleteOnRelations()

Locates relations with softDelete flag and cascades the delete event.

protected performSoftDeleteOnRelations() : void
Return values
void

runSoftDelete()

Perform the actual delete query on this model instance.

protected runSoftDelete() : void
Return values
void

searchUserByAttribute()

Preforms the actual search

protected static searchUserByAttribute( $field,  $phrase) : mixed
Parameters
$field :
$phrase :
Return values
mixed

Search results