Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1435 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1435 Rev 1450
Line 39... Line 39...
39
	
39
	
40
	public function obtenirUrlWikini() {
40
	public function obtenirUrlWikini() {
41
		$titre = urlencode(Config::get('smartFloreSectionsFiches'));
41
		$titre = urlencode(Config::get('smartFloreSectionsFiches'));
42
		$base_url_wiki = Config::get('smartFloreWikiTpl');
42
		$base_url_wiki = Config::get('smartFloreWikiTpl');
43
		$url_wiki = $base_url_wiki
43
		$url_wiki = $base_url_wiki
44
			.strtoupper($this->conteneur->getParametre('referentiel'))."nt".$this->nomCourant->getNomSelectionne()->get('num_taxonomique')
44
			. $this->obtenirTagFiche()
Line 45... Line 45...
45
			."?txt.format=".$this->format."&txt.section.titre=".$titre;
45
			. "?txt.format=".$this->format."&txt.section.titre=".$titre;
46
		
46
		
-
 
47
		return ($url_wiki);
-
 
48
	}
-
 
49
 
-
 
50
	// retourne le "tag" de la fiche SmartFlore dans Wikini, ex: BDTFXnt664
-
 
51
	public function obtenirTagFiche() {
47
		return ($url_wiki);
52
		return strtoupper($this->conteneur->getParametre('referentiel'))."nt".$this->nomCourant->getNomSelectionne()->get('num_taxonomique');
48
	}
53
	}
49
}
54
}