MaintenanceWindow
extends Model
in package
Model for scheduled maintenance windows.
Supports per-store and platform-wide maintenance periods with configurable access levels and advance notice banners.
Tags
Table of Contents
Constants
- LEVELS = ['client', 'admin_store', 'admin_site', 'admin_only']
- MAX_NOTICE_HOURS = 72
Properties
- $db : PDO
- $fillable : array<string|int, mixed>
- $primaryKey : string
- $table : string
Methods
- __construct() : mixed
- Initialize model with database connection.
- all() : array<string|int, mixed>
- Get all records from the table.
- cancel() : bool
- Cancel a maintenance window.
- count() : int
- Count records matching optional conditions.
- create() : int
- Create a new record.
- delete() : bool
- Delete a record by primary key.
- find() : array<string|int, mixed>|null
- Find a record by primary key.
- findBy() : array<string|int, mixed>|null
- Find a record by a specific field value.
- getActiveForBusiness() : array<string|int, mixed>|null
- Get active maintenance window currently in effect for a specific business.
- getActivePlatformWide() : array<string|int, mixed>|null
- Get active platform-wide maintenance window currently in effect.
- getDb() : PDO
- Get the underlying PDO connection.
- getForBusiness() : array<string|int, mixed>
- Get all windows for a business (active and past).
- getPlatformWide() : array<string|int, mixed>
- Get all platform-wide windows.
- getUpcomingNoticeForBusiness() : array<string|int, mixed>|null
- Get upcoming maintenance window with advance notice for a business.
- getUpcomingPlatformNotice() : array<string|int, mixed>|null
- Get upcoming platform-wide maintenance with advance notice.
- hasAccess() : bool
- Check if a given maintenance level allows access for a role.
- paginate() : array<string|int, mixed>
- Paginate records matching conditions.
- query() : PDOStatement
- Execute a raw SQL query with parameter binding.
- update() : bool
- Update a record by primary key.
- where() : array<string|int, mixed>
- Find records matching conditions.
- filterFillable() : array<string|int, mixed>
- Filter data to only include fillable fields.
Constants
LEVELS
public
array<string|int, mixed>
LEVELS
= ['client', 'admin_store', 'admin_site', 'admin_only']
Valid maintenance levels
MAX_NOTICE_HOURS
public
int
MAX_NOTICE_HOURS
= 72
Maximum advance notice hours
Properties
$db
protected
PDO
$db
Database connection
$fillable
protected
array<string|int, mixed>
$fillable
= ['business_id', 'maintenance_level', 'starts_at', 'ends_at', 'notice_hours', 'reason', 'is_active', 'created_by_type', 'created_by_id']
Mass-assignable fields
$primaryKey
protected
string
$primaryKey
= 'id'
Primary key column
$table
protected
string
$table
= 'maintenance_windows'
Database table name
Methods
__construct()
Initialize model with database connection.
public
__construct() : mixed
all()
Get all records from the table.
public
all([string $orderBy = 'id' ][, string $direction = 'ASC' ]) : array<string|int, mixed>
Parameters
- $orderBy : string = 'id'
-
Column to order by
- $direction : string = 'ASC'
-
Sort direction (ASC or DESC)
Return values
array<string|int, mixed>cancel()
Cancel a maintenance window.
public
cancel(int $id) : bool
Parameters
- $id : int
-
Window ID
Return values
boolcount()
Count records matching optional conditions.
public
count([array<string|int, mixed> $conditions = [] ]) : int
Parameters
- $conditions : array<string|int, mixed> = []
-
Associative array of field => value pairs
Return values
intcreate()
Create a new record.
public
create(array<string|int, mixed> $data) : int
Parameters
- $data : array<string|int, mixed>
-
Associative array of field => value pairs
Return values
int —The ID of the newly created record
delete()
Delete a record by primary key.
public
delete(int $id) : bool
Parameters
- $id : int
-
Primary key value
Return values
boolfind()
Find a record by primary key.
public
find(int $id) : array<string|int, mixed>|null
Parameters
- $id : int
-
Primary key value
Return values
array<string|int, mixed>|nullfindBy()
Find a record by a specific field value.
public
findBy(string $field, mixed $value) : array<string|int, mixed>|null
Parameters
- $field : string
-
Column name
- $value : mixed
-
Value to match
Return values
array<string|int, mixed>|nullgetActiveForBusiness()
Get active maintenance window currently in effect for a specific business.
public
getActiveForBusiness(int $businessId) : array<string|int, mixed>|null
Parameters
- $businessId : int
-
Business ID
Return values
array<string|int, mixed>|nullgetActivePlatformWide()
Get active platform-wide maintenance window currently in effect.
public
getActivePlatformWide() : array<string|int, mixed>|null
Return values
array<string|int, mixed>|nullgetDb()
Get the underlying PDO connection.
public
getDb() : PDO
Return values
PDOgetForBusiness()
Get all windows for a business (active and past).
public
getForBusiness(int $businessId) : array<string|int, mixed>
Parameters
- $businessId : int
-
Business ID
Return values
array<string|int, mixed>getPlatformWide()
Get all platform-wide windows.
public
getPlatformWide() : array<string|int, mixed>
Return values
array<string|int, mixed>getUpcomingNoticeForBusiness()
Get upcoming maintenance window with advance notice for a business.
public
getUpcomingNoticeForBusiness(int $businessId) : array<string|int, mixed>|null
Parameters
- $businessId : int
-
Business ID
Return values
array<string|int, mixed>|nullgetUpcomingPlatformNotice()
Get upcoming platform-wide maintenance with advance notice.
public
getUpcomingPlatformNotice() : array<string|int, mixed>|null
Return values
array<string|int, mixed>|nullhasAccess()
Check if a given maintenance level allows access for a role.
public
static hasAccess(string $level, string|null $role) : bool
Parameters
- $level : string
-
Maintenance level
- $role : string|null
-
User role (admin, client, staff_admin, staff, customer, null for public)
Return values
bool —True if access is allowed
paginate()
Paginate records matching conditions.
public
paginate(array<string|int, mixed> $conditions, int $page, int $perPage[, string $orderBy = 'id' ][, string $direction = 'ASC' ]) : array<string|int, mixed>
Parameters
- $conditions : array<string|int, mixed>
-
Associative array of field => value pairs
- $page : int
-
Current page number (1-based)
- $perPage : int
-
Records per page
- $orderBy : string = 'id'
-
Column to order by
- $direction : string = 'ASC'
-
Sort direction (ASC or DESC)
Return values
array<string|int, mixed> —Pagination result with data, total, page, per_page, total_pages
query()
Execute a raw SQL query with parameter binding.
public
query(string $sql[, array<string|int, mixed> $params = [] ]) : PDOStatement
Parameters
- $sql : string
-
SQL query string
- $params : array<string|int, mixed> = []
-
Bound parameters
Return values
PDOStatementupdate()
Update a record by primary key.
public
update(int $id, array<string|int, mixed> $data) : bool
Parameters
- $id : int
-
Primary key value
- $data : array<string|int, mixed>
-
Associative array of field => value pairs
Return values
boolwhere()
Find records matching conditions.
public
where(array<string|int, mixed> $conditions[, string $orderBy = 'id' ][, string $direction = 'ASC' ]) : array<string|int, mixed>
Parameters
- $conditions : array<string|int, mixed>
-
Associative array of field => value pairs
- $orderBy : string = 'id'
-
Column to order by
- $direction : string = 'ASC'
-
Sort direction
Return values
array<string|int, mixed>filterFillable()
Filter data to only include fillable fields.
protected
filterFillable(array<string|int, mixed> $data) : array<string|int, mixed>
Parameters
- $data : array<string|int, mixed>
-
Input data
Return values
array<string|int, mixed> —Filtered data