HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/thread-self/cwd/pm/app/Controllers/Forbidden.php
<?php

namespace App\Controllers;

class Forbidden extends App_Controller {

    function __construct() {
        parent::__construct();
    }

    function index() {
        $view_data["heading"] = "403 Forbidden";
        $view_data["message"] = "You don't have  permission to access this module.";
        if ($this->request->isAJAX()) {
            $view_data["no_css"] = true;
        }
        return $this->template->view("errors/html/error_general", $view_data);
    }

}