コード例 #1
0
 protected function _emulateController($module, $action = 'index')
 {
     $app = new \core\BackendApplication();
     $emulatedController = $app->buildController($module, $action);
     return $emulatedController;
 }
コード例 #2
0
ファイル: backend.php プロジェクト: AICIDNN/symbiose-website
<?php

if (!ini_get('display_errors')) {
    ini_set('display_errors', '1');
}
date_default_timezone_set('Europe/Paris');
require '../core/autoload.php';
$app = new core\BackendApplication();
$app->render();