Event
extends BaseEntity
in package
Event Entity - Award ceremony and presentation events.
Events are scheduled occasions where recommendations are fulfilled through formal presentation (e.g., Royal Courts, Baronial Courts, Special Events).
Table of Contents
Properties
- $branch : Branch
- $branch_id : int
- $closed : bool|null
- $created : DateTime
- $created_by : int|null
- $deleted : DateTime|null
- $description : string
- $end_date : DateTime|null
- $id : int
- $modified : DateTime|null
- $modified_by : int|null
- $name : string
- $start_date : DateTime|null
- $_accessible : array<string, bool>
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
Properties
$branch
public
Branch
$branch
$branch_id
public
int
$branch_id
$closed
public
bool|null
$closed
$created
public
DateTime
$created
$created_by
public
int|null
$created_by
$deleted
public
DateTime|null
$deleted
$description
public
string
$description
$end_date
public
DateTime|null
$end_date
$id
public
int
$id
$modified
public
DateTime|null
$modified
$modified_by
public
int|null
$modified_by
$name
public
string
$name
$start_date
public
DateTime|null
$start_date
$_accessible
protected
array<string, bool>
$_accessible
= ['name' => true, 'description' => true, 'branch_id' => true, 'start_date' => true, 'end_date' => true, 'modified' => true, 'created' => true, 'created_by' => true, 'modified_by' => true, 'deleted' => true, 'branch' => true, 'closed' => true]
Methods
getBranchId()
Get the branch ID for authorization checks.
public
getBranchId() : int|null
Child classes should override for complex branch relationships.
Return values
int|null —The branch ID, or null if no association