tpl_mainpage = $this->arrPluginInfo['fullpath'] . 'tpl/admin/index.tpl'; $this->tpl_mainno = 'plugin'; $this->tpl_subno = $this->arrPluginInfo['path']; $this->tpl_subtitle = "プラグイン「{$this->arrPluginInfo['name']}」の設定"; } /** * Page のプロセス. * * @return void */ function process() { // 認証可否の判定 SC_Utils_Ex::sfIsSuccess(new SC_Session()); $objView = new SC_AdminView_Ex(); $objView->assignobj($this); $objView->display(MAIN_FRAME); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } } ?>