Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 379 | Rev 448 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
291 jpm 1
<?php
293 delphine 2
class NomCourant {
291 jpm 3
	private $nns = null;
4
	private $selectionne = null;
5
	private $retenu = null;
6
 
7
	public function __construct($num_nom_selectionne, Noms $noms, Taxons $taxons) {
8
		$this->nns = $num_nom_selectionne;
9
		$this->selectionne = new Nom($noms->getNom($this->nns));
10
		$this->retenu = new Nom($taxons->getTaxon($this->nns));
380 delphine 11
		$this->retenu->setTaxonsSuperieurs($taxons->getTaxonsSup($this->nns), $this->nns);
379 delphine 12
		$taxons_sup = $taxons->getTaxonsSup($this->nns);
13
		$this->taxons_sup = $taxons_sup[$this->nns];
291 jpm 14
	}
15
 
16
	/**
293 delphine 17
	 * Retour le numéro du nom sélectionné courant.
291 jpm 18
	 *
19
	 * @return le numéro du nom sélectionné.
20
	 */
21
	public function getNns() {
22
		return $this->nns;
23
	}
24
 
25
	public function getNomSelectionne() {
26
		return $this->selectionne;
27
	}
28
 
29
	public function getNomRetenu() {
361 delphine 30
		return $this->retenu;
291 jpm 31
	}
32
 
33
}
34
?>