private function setfacl($path)
 {
     $this->acl_updater->recursivelyApplyACL($path, $GLOBALS['sys_http_user'], '', '');
 }
 public function process()
 {
     $project = $this->getProjectFromParameters();
     $this->acl_updater->recursivelyApplyACL($this->getDirectoryPath($project), $GLOBALS['sys_http_user'], $this->getWriters($project), $this->getReaders($project));
     $this->done();
 }