Subversion Repositories Applications.referentiel

Rev

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

Rev 18 Rev 20
Line 10... Line 10...
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$
13
* @version		SVN: $Id$
14
*/
14
*/
15
abstract class AppliModele extends Modele {
15
abstract class Dao {
16
	protected $distinction = '0';
16
	protected $distinction = '0';
17
	protected $limite_debut = null;
17
	protected $limite_debut = null;
18
	protected $limite_nbre = null;
18
	protected $limite_nbre = null;
19
	protected $url_jrest = null;
19
	protected $url_jrest = null;
Line 20... Line 20...
20
	
20
	
21
	public function __construct() {
-
 
22
		parent::__construct();
21
	public function __construct() {
23
		$this->url_jrest = config::get('url_jrest');
22
		$this->url_jrest = config::get('url_jrest');
Line 24... Line 23...
24
	}
23
	}
25
	
24