Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3773 Rev 3779
Line 126... Line 126...
126
		}
126
		}
127
	}
127
	}
Line 128... Line 128...
128
 
128
 
129
	private function getProjectLatest(array $project, int $startDate, string $lifecycle): array {
129
	private function getProjectLatest(array $project, int $startDate, string $lifecycle): array {
-
 
130
		$this->currentProject = $project;
Line 130... Line 131...
130
		$this->currentProject = $project;
131
		$this->refreshBddConnexion();
131
 
132
 
Line 132... Line 133...
132
		if (!$this->currentPage) {
133
		if (!$this->currentPage) {
Line 788... Line 789...
788
	private function log($text) {
789
	private function log($text) {
789
		if ('log' == $this->debug) {
790
		if ('log' == $this->debug) {
790
			echo 'LOG - ' . $text . "\n";
791
			echo 'LOG - ' . $text . "\n";
791
		}
792
		}
792
	}
793
	}
-
 
794
 
-
 
795
	private function refreshBddConnexion() {
-
 
796
		$this->bdd = null;
-
 
797
		$this->log("Fermeture et création d'une nouvelle connexion à la BdD");
-
 
798
		$this->bdd = new Bdd();
-
 
799
	}
793
}
800
}
794
801