Minahito
minah****@users*****
2006年 5月 30日 (火) 12:55:18 JST
Index: xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php diff -u xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.4 xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.5 --- xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.4 Tue Mar 28 22:28:35 2006 +++ xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php Tue May 30 12:55:18 2006 @@ -1,6 +1,6 @@ <?php /** - * @version $Id: ModuleUpdateAction.class.php,v 1.1.2.4 2006/03/28 13:28:35 minahito Exp $ + * @version $Id: ModuleUpdateAction.class.php,v 1.1.2.5 2006/05/30 03:55:18 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -25,6 +25,9 @@ function executeViewSuccess(&$controller,&$xoopsUser,&$renderer) { + $root =& XCube_Root::getSingleton(); + $root->mEventManager->raiseEvent("Module.Legacy.ModuleUpdate.Success", $this, $this->mModuleObject); + $renderer->setTemplateName("module_update_success.html"); $renderer->setAttribute('log',$this->mLog->mMessages); } Index: xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php diff -u xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.7 xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.8 --- xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.7 Sun Apr 16 11:10:50 2006 +++ xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php Tue May 30 12:55:18 2006 @@ -1,6 +1,6 @@ <?php /** - * @version $Id: ModuleInstallAction.class.php,v 1.1.2.7 2006/04/16 02:10:50 minahito Exp $ + * @version $Id: ModuleInstallAction.class.php,v 1.1.2.8 2006/05/30 03:55:18 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -51,6 +51,9 @@ function executeViewSuccess(&$controller,&$xoopsUser,&$renderer) { + $root =& XCube_Root::getSingleton(); + $root->mEventManager->raiseEvent("Module.Legacy.ModuleInstall.Success", $this, $this->mModuleObject); + $renderer->setTemplateName("module_install_success.html"); $renderer->setAttribute('log', $this->mLog->mMessages); }