action(); // $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { $arrParam = $_REQUEST; list($response_outer, $arrResponse) = SC_Api_Operation::doApiAction($arrParam); SC_Api_Operation_Ex::sendApiResponse('json', $response_outer, $arrResponse); SC_Response_Ex::actionExit(); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } }