BestowalTodoTemplate
extends BaseEntity
in package
Bestowal to-do template configuration.
A reusable, named checklist assigned to awards. When a bestowal is created for an award, the award's template items are materialized into parallel action items (to-dos).
Table of Contents
Properties
- $bestowal_todo_template_items : array<string|int, BestowalTodoTemplateItem>
- $branch_id : int|null
- $created : DateTime|null
- $created_by : int|null
- $deleted : DateTime|null
- $description : string|null
- $id : int
- $is_active : bool
- $modified : DateTime|null
- $modified_by : int|null
- $name : string
- $_accessible : array<string, bool>
Methods
- getBranchId() : int|null
- Get the branch ID for authorization checks.
- _getItemSummary() : string
- Summarize configured items for grids and detail views.
Properties
$bestowal_todo_template_items
public
array<string|int, BestowalTodoTemplateItem>
$bestowal_todo_template_items
$branch_id
public
int|null
$branch_id
$created
public
DateTime|null
$created
$created_by
public
int|null
$created_by
$deleted
public
DateTime|null
$deleted
$description
public
string|null
$description
$id
public
int
$id
$is_active
public
bool
$is_active
$modified
public
DateTime|null
$modified
$modified_by
public
int|null
$modified_by
$name
public
string
$name
$_accessible
protected
array<string, bool>
$_accessible
= ['name' => true, 'description' => true, 'is_active' => true, 'branch_id' => true, 'created' => true, 'modified' => true, 'created_by' => true, 'modified_by' => true, 'deleted' => true, 'bestowal_todo_template_items' => 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
_getItemSummary()
Summarize configured items for grids and detail views.
protected
_getItemSummary() : string