id = $id; $this->nom = $nom; $eleveId = $bulletin->getId(); $entryManager = $wiki->services->get(EntryManager::class); $entries = $entryManager->search(['formsIds' => 7, 'queries' =>[ 'listefiche5bf_eleve' => $eleveId, 'listeListeMatièrebf_matiere' => $id ]]); // echo var_dump($entries)."\n\n"; foreach ($entries as $entry) { $this->notes[] = new Note($entry['bf_intitule'], $entry['bf_note'], $entry['bf_coef']); } } public function getId() { return $this->id; } public function getNom() { return $this->nom; } public function getMoyenne() { $total = 0; $totalCoef = 0.0; foreach ($this->notes as $note) { $total += $note->getNote() * $note->getCoef(); $totalCoef += $note->getCoef(); } return $total / $totalCoef; } public function getNotes() { return $this->notes; } public function isVisible() { return $this->notes; } }