function applyAction($actionName, $httpVars, $filesVar) { if ($actionName == "get_ajxp_info_panels" || $actionName == "get_driver_info_panels") { $this->sendInfoPanelsDef(); return; } else { if ($actionName == "cross_copy") { $this->crossRepositoryCopy($httpVars); return; } } return parent::applyAction($actionName, $httpVars, $filesVar); }
function applyAction($actionName, $httpVars, $filesVar) { if ($actionName == "get_ajxp_actions") { AJXP_XMLWriter::header(); $this->sendActionsToClient(false, null, null); $authDriver = ConfService::getAuthDriverImpl(); $authDriver->sendActionsToClient(false, null, null); $confDriver = ConfService::getConfStorageImpl(); $confDriver->sendActionsToClient(false, null, null); AJXP_XMLWriter::close(); exit(1); } else { parent::applyAction($actionName, $httpVars, $filesVar); } }