Exemple #1
0
<?php

include_once 'configuracion.php';
abstract class index
{
    /**
     * 
     */
    static function run(configuracion $app)
    {
    }
}
index::run();
Exemple #2
0
<?php

/**********************************************************
* File         : logout.php
* Authors      : mie tsutsui
* Date         : 2011.07.29
* Last Update  : 2011.07.29
* Copyright    : 
***********************************************************/
//=================================
// 共通処理
//=================================
// 処理プログラム
require_once "mod/index.class.php";
//=================================
// メイン
//=================================
// モード設定
$_REQUEST["mode"] = "logout";
// 処理オブジェクト生成
$mgr = new index($_REQUEST);
// 処理開始
$ret = $mgr->run();
// 終了
exit;
Exemple #3
0
<?php

include_once 'configuracion.php';
class index
{
    private $app;
    /**
     * 
     */
    function run()
    {
        $this->app = new configuracion();
    }
}
$index = new index();
$index->run();