id = $id; $this->name = $name; $noteManager = $wiki->services->get(NoteManager::class); foreach ($noteManager->allBulletins() as $bulletin) { if ($bulletin->getClasse() == $this->id) { array_push($this->bulletins, $bulletin); } } } public function getId() { return $this->id; } public function getName() { return $this->name; } public function getBulletins() { return $this->bulletins; } public function haveBulletins(){ return sizeof($this->bulletins) > 0; } }