Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 19 Rev 20
Line 8... Line 8...
8
* @package   Collection
8
* @package   Collection
9
* @author	Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
* @author	Jean-Pascal MILCENT <jpm@tela-botanica.org>
10
* @copyright 2010 Tela-Botanica
10
* @copyright 2010 Tela-Botanica
11
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
11
* @license   http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
12
* @license   http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
12
* @license   http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
13
* @version   SVN: $Id: ColModele.php 19 2010-03-24 18:22:25Z jpm $
13
* @version   SVN: $Id: ColModele.php 20 2010-03-29 17:28:43Z jpm $
14
*/
14
*/
15
abstract class ColModele extends Modele {
15
abstract class ColModele extends Modele {
-
 
16
	protected $distinction = '0';
16
	protected $limite_debut = null;
17
	protected $limite_debut = null;
17
	protected $limite_nbre = null;
18
	protected $limite_nbre = null;
18
	protected $url_jrest = null;
19
	protected $url_jrest = null;
Line 19... Line 20...
19
	
20
	
Line 28... Line 29...
28
			$limitation = true;
29
			$limitation = true;
29
		}
30
		}
30
		return $limitation;
31
		return $limitation;
31
	}
32
	}
Line -... Line 33...
-
 
33
	
-
 
34
	public function setDistinction($distinct) {
-
 
35
		$this->distinction = $distinct;
-
 
36
	}
-
 
37
	
-
 
38
	public function getDistinction() {
-
 
39
		return $this->distinction;
-
 
40
	}
32
	
41
	
33
	public function setLimitation($limite_debut, $limite_nbre) {
42
	public function setLimitation($limite_debut, $limite_nbre) {
34
		$this->limite_debut = $limite_debut;
43
		$this->limite_debut = $limite_debut;
35
		$this->limite_nbre = $limite_nbre;
44
		$this->limite_nbre = $limite_nbre;