Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 955 | Rev 1051 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 955 Rev 977
Line 81... Line 81...
81
		return $this->donnees;
81
		return $this->donnees;
82
	}
82
	}
Line 83... Line 83...
83
	
83
	
-
 
84
 
84
 
85
	public function getBloc() {
85
	public function getBloc() {
86
		$this->donnees['urls'] = $this->appUrls;
86
		$this->donnees['nom_selectionne'] = $this->nomCourant->getNomSelectionne()->get('nom_sci_html_complet');
87
		$this->donnees['nom_selectionne'] = $this->nomCourant->getNomSelectionne()->get('nom_sci_html_complet');
87
		$this->donnees['nom_retenu_formate'] = $this->nomCourant->getNomRetenu()->get('nom_sci_html_complet');
88
		$this->donnees['nom_retenu_formate'] = $this->nomCourant->getNomRetenu()->get('nom_sci_html_complet');
88
		$this->donnees['basionyme_nom_retenu'] = $this->nomCourant->getNomRetenu()->get('basionyme_html_complet');
89
		$this->donnees['basionyme_nom_retenu'] = $this->nomCourant->getNomRetenu()->get('basionyme_html_complet');
Line 92... Line 93...
92
		
93
		
93
		$this->donnees['taxons_sup'] = $this->nomCourant->taxons_sup;
94
		$this->donnees['taxons_sup'] = $this->nomCourant->taxons_sup;
94
		$this->donnees['taxons_inf'] = $this->getTaxonsInferieurs();
95
		$this->donnees['taxons_inf'] = $this->getTaxonsInferieurs();
95
		$this->donnees['taxons_sup'] = is_array($this->donnees['taxons_sup']) ? array_slice($this->donnees['taxons_sup'], -3 , 3) : array();
96
		$this->donnees['taxons_sup'] = is_array($this->donnees['taxons_sup']) ? array_slice($this->donnees['taxons_sup'], -3 , 3) : array();
96
		$this->donnees['taxons_inf'] = is_array($this->donnees['taxons_inf']) ? array_slice($this->donnees['taxons_inf'], 0 , 3) : array();
97
		$this->donnees['taxons_inf'] = is_array($this->donnees['taxons_inf']) ? array_slice($this->donnees['taxons_inf'], 0 , 3) : array();
97
		
98
	
98
		return $this->donnees;
99
		return $this->donnees;
Line 99... Line 100...
99
	}
100
	}
100
 
101