Beispiel #1
0
 public function init(Website $website, Request $request)
 {
     $isStaff = $website->isLoggedInAsStaff(true);
     $documentRepo = new DocumentRepository($website->getDatabase(), $isStaff);
     $this->documents = $documentRepo->getAll();
     $this->editLinks = $isStaff;
 }