Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 150 Rev 152
Line 7... Line 7...
7
 * @category	Php 5.2
7
 * @category	Php 5.2
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: Fiche.php 150 2010-09-06 15:24:03Z jpm $
12
 * @version		SVN: $Id: Fiche.php 152 2010-09-06 16:19:12Z jpm $
13
 */
13
 */
14
abstract class Fiche extends aControleur {
14
abstract class Fiche extends aControleur {
Line 15... Line 15...
15
	
15
	
16
	protected $structureDao = null;
16
	protected $structureDao = null;
Line 19... Line 19...
19
	
19
	
20
	public function __construct()  {
20
	public function __construct()  {
21
		parent::__construct();
21
		parent::__construct();
22
		$this->structureDao = new StructureDao();
22
		$this->structureDao = new StructureDao();
23
		$this->collectionDao = new CollectionDao();
23
		$this->collectionDao = new CollectionDao();
24
		$this->personneDao = $this->getModele('PersonneDao');
24
		$this->personneDao = new PersonneDao();
Line 25... Line 25...
25
	}
25
	}
26
	
26