Exemplo n.º 1
0
 function AJXP_ClientDriver($repository)
 {
     parent::AbstractDriver("ajxp_actions");
     $this->initXmlActionsFile(CLIENT_RESOURCES_FOLDER . "/xml/ajxpclient_actions.xml");
     unset($this->actions["get_driver_actions"]);
     unset($this->actions["get_driver_info_panels"]);
     $this->actions["get_ajxp_actions"] = array();
     $this->actions["get_ajxp_info_panels"] = array();
 }
Exemplo n.º 2
0
 function AbstractAccessDriver($driverName, $filePath, $repository)
 {
     parent::AbstractDriver($driverName);
     $this->repository = $repository;
     $this->initXmlActionsFile($filePath);
     $this->actions["get_driver_info_panels"] = array();
     if (is_object($repository) && $repository->detectStreamWrapper()) {
         $this->actions["cross_copy"] = array();
     }
 }