Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 1106 Rev 1111
Line 1... Line 1...
1
<?php
1
<?php
2
/**
2
/**
3
* Retourne la liste des noms répertoriés par le projet chorodep
3
* Retourne la liste des noms répertoriés par le projet chorodep
4
* 
4
* 
5
* @package chorodep
5
* @package chorodep
6
* @author Tela Botanica <equipe-dev@tela-botanica.org>
6
* @author Mathias Chouet <mathias@tela-botanica.org>
7
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
7
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
8
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
8
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
9
* @version 1.0
9
* @version 1.0
10
* @copyright 1999-2014 Tela Botanica (accueil@tela-botanica.org)
10
* @copyright 1999-2014 Tela Botanica (accueil@tela-botanica.org)
11
*/
11
*/
Line 18... Line 18...
18
	protected $depart;
18
	protected $depart;
19
	protected $limite;
19
	protected $limite;
20
	protected $tri;
20
	protected $tri;
21
	protected $tri_dir;
21
	protected $tri_dir;
Line 22... Line -...
22
 
-
 
23
	public function __construct($config = null) {
22
 
24
		parent::__construct($config);
23
	protected function init() {
25
		$this->masque = array();
24
		$this->masque = array();
26
		$this->depart = 0;
25
		$this->depart = 0;
27
		$this->limite = 20;
26
		$this->limite = 20;
28
		$this->tri = 'nom_sci';
27
		$this->tri = 'nom_sci';
29
		$this->tri_dir = 'ASC';
-
 
30
		$this->init();
-
 
31
	}
-
 
32
 
-
 
33
	protected function init() {
28
		$this->tri_dir = 'ASC';
34
		$this->traiterVersionProjet();
29
		$this->traiterVersionProjet();
35
		$this->table = $this->table_version[0];
30
		$this->table = $this->table_version[0];
Line 36... Line 31...
36
	}
31
	}