BROOKO icon
BROOKO UK NETWORK
Where code meets creativity & adventure
File viewer

staff.php

Type
php
Size
239 B
Modified
15 May
staff.php 239 B
<?php
require_once __DIR__ . '/../bootstrap.php';
requireAuth();
if (isAdminRole()) {
    header('Location: ' . app_url('admin/staff'), true, 301);
    exit;
}
http_response_code(404);
die('Staff management has moved to Administration.');