Minahito
minah****@users*****
2006年 7月 27日 (木) 18:41:38 JST
Index: xoops2jp/html/modules/pm/class/ActionFrame.class.php diff -u xoops2jp/html/modules/pm/class/ActionFrame.class.php:1.1.2.1 xoops2jp/html/modules/pm/class/ActionFrame.class.php:1.1.2.2 --- xoops2jp/html/modules/pm/class/ActionFrame.class.php:1.1.2.1 Tue Jul 4 18:48:34 2006 +++ xoops2jp/html/modules/pm/class/ActionFrame.class.php Thu Jul 27 18:41:38 2006 @@ -1,7 +1,7 @@ <?php /** - * @package Pm - * @version $Id: ActionFrame.class.php,v 1.1.2.1 2006/07/04 09:48:34 minahito Exp $ + * @package pm + * @version $Id: ActionFrame.class.php,v 1.1.2.2 2006/07/27 09:41:38 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -17,6 +17,8 @@ define ("PM_FRAME_VIEW_ERROR", 3); define ("PM_FRAME_VIEW_INDEX", 4); define ("PM_FRAME_VIEW_INPUT", 5); +define ("PM_FRAME_VIEW_PREVIEW", 6); +define ("PM_FRAME_VIEW_CANCEL", 7); class Pm_ActionFrame extends XCube_ActionStrategy { @@ -100,6 +102,14 @@ case PM_FRAME_VIEW_INPUT: $this->mAction->executeViewInput($controller, $controller->getXoopsUser(), $controller->mRenderSystem); break; + + case PM_FRAME_VIEW_PREVIEW: + $this->mAction->executeViewPreview($controller, $controller->getXoopsUser(), $controller->mRenderSystem); + break; + + case PM_FRAME_VIEW_CANCEL: + $this->mAction->executeViewCancel($controller, $controller->getXoopsUser(), $controller->mRenderSystem); + break; } } @@ -160,6 +170,14 @@ function executeViewInput(&$controller, &$xoopsUser, &$render) { } + + function executeViewPreview(&$controller, &$xoopsUser, &$render) + { + } + + function executeViewCancel(&$controller, &$xoopsUser, &$render) + { + } } ?>