Level
extends BaseEntity
in package
Level Entity - Award precedence tier (e.g., Entry, Advanced, Master, Peerage).
Progression order determines hierarchical ranking for ceremonies and member advancement.
Table of Contents
Properties
- $branch_id : int|null
- $created : DateTime
- $created_by : int|null
- $deleted : DateTime|null
- $id : int
- $modified : DateTime|null
- $modified_by : int|null
- $name : string
- $progression_order : int|null
- $_accessible : array<string, bool>
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
Properties
$branch_id
public
int|null
$branch_id
Associated branch ID (when applicable)
$created
public
DateTime
$created
$created_by
public
int|null
$created_by
$deleted
public
DateTime|null
$deleted
$id
public
int
$id
$modified
public
DateTime|null
$modified
$modified_by
public
int|null
$modified_by
$name
public
string
$name
$progression_order
public
int|null
$progression_order
$_accessible
protected
array<string, bool>
$_accessible
= ['name' => true, 'progression_order' => true, 'modified' => true, 'created' => true, 'created_by' => true, 'modified_by' => true, 'deleted' => 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