function doAction()
 {
     $resolve_flag = $this->_formdata->getValue('post', 'resolve_conflict_flag', 'i', false);
     if ($resolve_flag) {
         parent::doAction();
     }
 }
 function XooNIpsActionOaipmhSearchDetail()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionOaipmhSearchDefault()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionImportImport()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionImportDefault()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionTransfer()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionXoonipsSearchMetadataDetail()
 {
     parent::XooNIpsAction();
 }
 function XooNIpsActionImportUpload()
 {
     parent::XooNIpsAction();
 }
 function doAction()
 {
     if ((bool) $this->_formdata->getValue('post', 'search_flag', 'i', false) || !$this->searchCacheExists($this->_formdata->getValue('post', 'search_cache_id', 's', false))) {
         $this->_logicName = 'oaipmhSearch';
         parent::doAction();
     }
     //global $xoopsDB;var_dump(xoops_getenv('HTTP_REFERER'),$_SERVER['REQUEST_METHOD'],get_class($xoopsDB));
     if ($this->_response->getResult()) {
         $this->_searchCacheId = $this->_response->getSuccess();
     }
     if ($this->_response->getResult() && (bool) $this->_formdata->getValue('post', 'search_flag', 'i', false)) {
         $event_handler =& xoonips_getormhandler('xoonips', 'event_log');
         $event_handler->recordQuickSearchEvent('metadata', $this->_formdata->getValue('post', 'keyword', 'n', false), $this->getRepositoryUrl($this->_formdata->getValue('post', 'repository_id', 'i', false)));
     }
 }