users = $users; $this->clubs = $clubs; parent::__construct(); } function renderIndex(): void { $query = $this->queryParam("query") ?? ""; $type = $this->queryParam("type") ?? "users"; $page = (int) ($this->queryParam("p") ?? 1); // https://youtu.be/pSAWM5YuXx8 switch($type) { case "groups": $iterator = $this->clubs->find($query, $page); $count = $this->clubs->getFoundCount($query); break; case "users": $iterator = $this->users->find($query, $page); $count = $this->users->getFoundCount($query); break; } $this->template->iterator = iterator_to_array($iterator); $this->template->count = $count; $this->template->type = $type; $this->template->page = $page; } }