Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 536 Rev 563
Line 42... Line 42...
42
	/** tableau contenant tous les champs d'une table (est rempli par la fonction Commun::recupererNomChamp($table)) */
42
	/** tableau contenant tous les champs d'une table (est rempli par la fonction Commun::recupererNomChamp($table)) */
43
	protected $champs_table = array();
43
	protected $champs_table = array();
44
	private static $tri_multi_dimension = array();
44
	private static $tri_multi_dimension = array();
45
	private static $tri_type = '';
45
	private static $tri_type = '';
Line 46... Line 46...
46
 
46
 
47
	public function __construct() {
47
	public function __construct($config = null) {
48
		$this->config = is_null($config) ? Config::get($this->serviceNom) : $config;
48
		$this->config = is_null($config) ? Config::get($this->serviceNom) : $config;
Line 49... Line 49...
49
	}
49
	}
50
	
50