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

staff_profile.php

Type
php
Size
238 B
Modified
15 May
staff_profile.php 238 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 profiles have moved to Administration.');