table = "public.parm_periode"; $this->primary_key = "p_id"; /* * List of columns */ $this->name=array( "p_id"=>"p_id" ,"p_start"=>"p_start" ,"p_end"=>"p_end" ,"p_exercice"=>"p_exercice" ,"p_closed"=>"p_closed" ,"p_central"=>"p_central" ); /* * Type of columns */ $this->type = array( "p_id"=>"numeric" ,"p_start"=>"date" ,"p_end"=>"date" ,"p_exercice"=>"text" ,"p_closed"=>"boolean" ,"p_central"=>"boolean" ); $this->default = array( "p_id" => "auto" ); $this->date_format = "DD.MM.YYYY"; parent::__construct($p_cn,$p_id); } }