nns = $num_nom_selectionne; $this->selectionne = new Nom($noms->getNom($this->nns)); $this->retenu = new Nom($taxons->getTaxon($this->nns)); $this->nnr = $this->retenu->get('id'); $taxons_sup = $taxons->getTaxonsSup($this->nnr); if ($taxons_sup != false) { $this->taxons_sup = $taxons_sup[$this->nnr]; $this->retenu->setTaxonsSuperieurs($taxons_sup, $this->nnr); } } /** * Retour le numéro du nom sélectionné courant. * * @return le numéro du nom sélectionné. */ public function getNns() { return $this->nns; } public function getNnr() { return $this->nnr; } public function getNomSelectionne() { return $this->selectionne; } public function getNomRetenu() { return $this->retenu; } public function getNt() { return $this->retenu->get('num_taxonomique'); } public function getInpn() { return $this->selectionne->get('cd_nom'); } } ?>