示例#1
0
 function Legacy_ActSearchAction($flag)
 {
     parent::Legacy_Action($flag);
     $this->mSearchAction = new XCube_Delegate();
     $this->mSearchAction->add(array(&$this, 'defaultSearch'));
     $this->mSearchAction->register('Legacy_ActSearchAction.SearchAction');
 }
 function Legacy_ModuleUpdateAction($flag)
 {
     parent::Legacy_Action($flag);
     $this->mUpdateSuccess = new XCube_Delegate();
     $this->mUpdateSuccess->register('Legacy_ModuleUpdateAction.UpdateSuccess');
     $this->mUpdateFail = new XCube_Delegate();
     $this->mUpdateFail->register('Legacy_ModuleUpdateAction.UpdateFail');
 }
示例#3
0
 function Legacy_HelpAction($flag)
 {
     parent::Legacy_Action($flag);
     $this->mCreateHelpSmarty = new XCube_Delegate();
     $this->mCreateHelpSmarty->add(array(&$this, '_createHelpSmarty'));
     $this->mCreateHelpSmarty->register('Legacy_HelpAction.CreateHelpSmarty');
 }
 function Legacy_ModuleInstallAction($flag)
 {
     parent::Legacy_Action($flag);
     $this->mInstallSuccess = new XCube_Delegate();
     $this->mInstallSuccess->register('Legacy_ModuleInstallAction.InstallSuccess');
     $this->mInstallFail = new XCube_Delegate();
     $this->mInstallFail->register('Legacy_ModuleInstallAction.InstallFail');
 }
示例#5
0
 function Legacy_BackendAction($flag)
 {
     parent::Legacy_Action($flag);
     $this->mGetRSSItems = new XCube_Delegate();
     $this->mGetRSSItems->register('Legacy_BackendAction.GetRSSItems');
 }