Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

Rev 18 Rev 19
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 18 2010-03-23 18:14:32Z jpm $
13
* @version   SVN: $Id: ColModele.php 19 2010-03-24 18:22:25Z jpm $
14
*/
14
*/
15
abstract class ColModele extends Modele {
15
abstract class ColModele extends Modele {
16
	protected $limite_debut = null;
16
	protected $limite_debut = null;
17
	protected $limite_nbre = null;
17
	protected $limite_nbre = null;
-
 
18
	protected $url_jrest = null;
-
 
19
	
-
 
20
	public function __construct() {
-
 
21
		parent::__construct();
-
 
22
		$this->url_jrest = config::get('url_jrest');
-
 
23
	}
Line 18... Line 24...
18
	
24
	
19
	public function avoirLimitation() {
25
	public function avoirLimitation() {
20
		$limitation = false;
26
		$limitation = false;
21
		if (!is_null($this->limite_debut) && !is_null($this->limite_nbre)) {
27
		if (!is_null($this->limite_debut) && !is_null($this->limite_nbre)) {