7 |
jpm |
1 |
<?php
|
|
|
2 |
// declare(encoding='UTF-8');
|
|
|
3 |
/**
|
|
|
4 |
* Classe modèle spécifique à l'application Collection, donc d'accés au données, elle ne devrait pas être appelée de l'extérieur.
|
|
|
5 |
* Elle est abstraite donc doit obligatoirement être étendue.
|
|
|
6 |
*
|
|
|
7 |
* @category php5
|
|
|
8 |
* @package Collection
|
|
|
9 |
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
10 |
* @copyright 2010 Tela-Botanica
|
|
|
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
|
|
|
13 |
* @version SVN: $Id: ColModele.php 10 2010-03-05 14:15:42Z jpm $
|
|
|
14 |
*/
|
|
|
15 |
abstract class ColModele extends Modele {
|
|
|
16 |
protected $limite_debut = null;
|
|
|
17 |
protected $limite_nbre = null;
|
|
|
18 |
|
|
|
19 |
public function avoirLimitation() {
|
|
|
20 |
$limitation = false;
|
|
|
21 |
if (!is_null($this->limite_debut) && !is_null($this->limite_nbre)) {
|
|
|
22 |
$limitation = true;
|
|
|
23 |
}
|
|
|
24 |
return $limitation;
|
|
|
25 |
}
|
|
|
26 |
|
|
|
27 |
public function setLimitation($limite_debut, $limite_nbre) {
|
|
|
28 |
$this->limite_debut = $limite_debut;
|
|
|
29 |
$this->limite_nbre = $limite_nbre;
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
public function getLimiteDebut() {
|
|
|
33 |
return $this->limite_debut;
|
|
|
34 |
}
|
|
|
35 |
public function getLimiteNbre() {
|
|
|
36 |
return $this->limite_nbre;
|
|
|
37 |
}
|
|
|
38 |
}
|