16 lines
233 B
PHP
16 lines
233 B
PHP
<?php
|
|
if (!defined('ES_PATH')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
class EmptyController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
global $controller;
|
|
trigger_error(' Controller <b>' . $controller . '</b> Not Found !');
|
|
}
|
|
}
|
|
|
|
?>
|