Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 89 Rev 91
Line 7... Line 7...
7
 * @package		Collection
7
 * @package		Collection
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
8
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
 * @copyright	2010 Tela-Botanica
9
 * @copyright	2010 Tela-Botanica
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
10
 * @license		http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
11
 * @license		http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
 * @version		SVN: $Id: ColControleur.php 89 2010-06-09 16:20:39Z jpm $
12
 * @version		SVN: $Id: ColControleur.php 91 2010-06-21 10:12:41Z jpm $
13
 */
13
 */
14
abstract class ColControleur extends Controleur {
14
abstract class ColControleur extends Controleur {
Line 15... Line 15...
15
	
15
	
16
	const FMT_DATE = '%d/%m/%Y';// Supporte les formats de dates non valides (1989-00-00)
16
	const FMT_DATE = '%d/%m/%Y';// Supporte les formats de dates non valides (1989-00-00)
Line 388... Line 388...
388
			}
388
			}
389
		}
389
		}
390
	}
390
	}
Line 391... Line 391...
391
	
391
	
-
 
392
	protected function chargerPiedDePage() {
392
	protected function chargerPiedDePage() {
393
		$donnees['appli'] = Application::getInfo();
393
		$this->setSortie(self::RENDU_PIED, $this->getVue('pied'));
394
		$this->setSortie(self::RENDU_PIED, $this->getVue('pied', $donnees));
394
	}
395
	}
395
}
396
}