Beispiel #1
0
<?php

//////////////////////////////////////////////////////////////////////////////////////
//  更新履歴
//  要件ID      更新日       更新者        概要
//  nm00188     2010/03/15   kyo           月次レポートクライアント表示
//////////////////////////////////////////////////////////////////////////////////////
require_once '../../../conf/config.php';
require_once 'AlladinCore.php';
//↓↓===========nm00188 2010/03/15 start===================================
// admin認証は不要
//$core = new AlladinCore();
$core = new AlladinCore(false);
//↑↑===========nm00188 2010/03/15 end=====================================
// コントローラ取得
$ctrl =& $core->getController();
// 実行
$ctrl->execute();
Beispiel #2
0
<?php

require_once '../../../conf/config.php';
require_once 'AlladinCore.php';
$core = new AlladinCore();
// コントローラ取得
$key = $_GET['aid'];
$ctrl =& $core->getController($key);
// 実行
$ctrl->execute();