Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 require_once('class_database.php');
00032 require_once('ac_common.php');
00033 require_once 'class_noalyss_sql.php';
00034
00035
00036
00037
00038 class Profile_Menu_sql extends Noalyss_SQL
00039 {
00040
00041 function __construct(&$p_cn,$p_id=-1)
00042 {
00043 $this->table="public.profile_menu";
00044 $this->primary_key="pm_id";
00045
00046 $this->name=array(
00047 "pm_id"=>"pm_id", "me_code"=>"me_code"
00048 , "me_code_dep"=>"me_code_dep"
00049 , "p_id"=>"p_id"
00050 , "p_order"=>"p_order"
00051 , "p_type_display"=>"p_type_display"
00052 , "pm_default"=>"pm_default"
00053 );
00054
00055 $this->type=array(
00056 "pm_id"=>"number",
00057 "me_code"=>"text"
00058 , "me_code_dep"=>"text"
00059 , "p_id"=>"number"
00060 , "p_order"=>"number"
00061 , "p_type_display"=>"text"
00062 , "pm_default"=>"text"
00063 );
00064
00065 $this->default=array(
00066 "pm_id"=>"auto"
00067 );
00068
00069 parent::__construct($p_cn, $p_id);
00070 }
00071
00072 }
00073
00074 ?>