人人商城

empty.php 235B

12345678910111213141516
  1. <?php
  2. if (!(defined('ES_PATH'))) {
  3. exit('Access Denied');
  4. }
  5. class EmptyController extends Controller
  6. {
  7. public function index()
  8. {
  9. global $controller;
  10. trigger_error(' Controller <b>' . $controller . '</b> Not Found !');
  11. }
  12. }
  13. ?>