Exemplo n.º 1
0
<?php

require_once realpath(dirname(__FILE__)) . '/../require.php';
require_once CLASS_EX_REALDIR . 'page_extends/au/LC_Page_Au_Xrds_Ex.php';
class LC_Page_User extends LC_Page_Ex
{
}
$objPage = new LC_Page_User();
$objPage->not_unsupported = true;
$objPage->init();
$objPage->process();
$objPage->sendResponse();
Exemplo n.º 2
0
     * Page を初期化する.
     *
     * @return void
     */
    function init()
    {
        parent::init();
    }
    /**
     * Page のプロセス.
     *
     * @return void
     */
    function process()
    {
        parent::process();
        $this->action();
        $this->sendResponse();
    }
    /**
     * Page のアクション.
     *
     * @return void
     */
    function action()
    {
    }
}
$objPage = new LC_Page_User();
$objPage->init();
$objPage->process();