mirror of
https://github.com/itflow-org/itflow
synced 2026-08-05 07:07:14 +00:00
Response/resolution targets stamped at creation from per-client/priority assignments, business-hours due date math, warn/breach alert stages via cron/ticket_sla.php, ticket list coloring, per-ticket SLA override, admin page for plans/assignments/business hours. DB update 2.5.0. No behavior change unless SLAs are assigned. Bulk reply now only counts Public replies as first response.
21 lines
819 B
PHP
21 lines
819 B
PHP
<?php
|
|
|
|
// Role check failed wording
|
|
DEFINE("WORDING_ROLECHECK_FAILED", "You are not permitted to do that!");
|
|
|
|
// functions.php is now a loader. Helper functions live in topical files
|
|
// under functions/ - see each file's header comment for scope.
|
|
|
|
require_once __DIR__ . '/functions/security.php';
|
|
require_once __DIR__ . '/functions/sanitize.php';
|
|
require_once __DIR__ . '/functions/format.php';
|
|
require_once __DIR__ . '/functions/request.php';
|
|
require_once __DIR__ . '/functions/files.php';
|
|
require_once __DIR__ . '/functions/domain.php';
|
|
require_once __DIR__ . '/functions/auth.php';
|
|
require_once __DIR__ . '/functions/logging.php';
|
|
require_once __DIR__ . '/functions/app.php';
|
|
require_once __DIR__ . '/functions/db.php';
|
|
require_once __DIR__ . '/functions/payments.php';
|
|
require_once __DIR__ . '/functions/sla.php';
|