Subversion Repositories Applications.referentiel

Rev

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

Rev 156 Rev 181
Line 20... Line 20...
20
		'auteur_principal', 'coordinateur', 'editeur', 'contact', 
20
		'auteur_principal', 'coordinateur', 'editeur', 'contact', 
21
		'contributeur', 
21
		'contributeur', 
22
		'classification', 'dom_tax', 'dom_geo', 'dom_code', 
22
		'classification', 'dom_tax', 'dom_geo', 'dom_code', 
23
		'source', 'copyright', 'licence', 'referencement');
23
		'source', 'copyright', 'licence', 'referencement');
24
	private $referentiel = null;
24
	private $referentiel = null;
-
 
25
	private $referentielDao = null;
25
	private $traitementDao = null;
26
	private $traitementDao = null;
Line 26... Line 27...
26
	
27
	
27
	public function __construct()  {
28
	public function __construct()  {
Line 31... Line 32...
31
		if (isset($_GET['ref'])) { // code du projet courrant
32
		if (isset($_GET['ref'])) { // code du projet courrant
32
			$this->referentiel = strtolower($_GET['ref']);
33
			$this->referentiel = strtolower($_GET['ref']);
33
		}
34
		}
Line 34... Line 35...
34
		
35
		
-
 
36
		// Chargement des DAO nécessaires
35
		// Chargement des DAO nécessaires
37
		$this->referentielDao = new ReferentielDao();
36
		$this->traitementDao = new TraitementDao();
38
		$this->traitementDao = new TraitementDao();
Line 37... Line 39...
37
	}
39
	}
38
	
40
	
Line 67... Line 69...
67
			$donnees['domaine_taxo'] = explode(';', $this->manuel['domaine_taxo']);
69
			$donnees['domaine_taxo'] = explode(';', $this->manuel['domaine_taxo']);
68
			$donnees['domaine_code'] = explode(';', $this->manuel['domaine_code']);
70
			$donnees['domaine_code'] = explode(';', $this->manuel['domaine_code']);
Line 69... Line 71...
69
			
71
			
70
			// Traitement de l'info sur le code du référentiel
72
			// Traitement de l'info sur le code du référentiel
-
 
73
			if (isset($this->referentiel)) {
-
 
74
				// Récupération du nom du référentiel courrant
-
 
75
				$donnees['nom_referentiel'] = $this->referentielDao->getNom($this->referentiel);
71
			if (isset($this->referentiel)) {
76
				
72
				// Récupération du référentiel courrant
77
				// Récupération du référentiel courrant
Line 73... Line 78...
73
				$donnees['ref'] = $this->referentiel;
78
				$donnees['ref'] = $this->referentiel;
74
				
79