noalyss  Version-6.7.2
Public Member Functions
Profile_Menu_sql Class Reference

Manage the table public.profile_menu. More...

Inheritance diagram for Profile_Menu_sql:
Noalyss_SQL Profile_Menu

Public Member Functions

 __construct (&$p_cn, $p_id=-1)

Detailed Description

Manage the table public.profile_menu.

Definition at line 38 of file class_profile_menu_sql.php.


Constructor & Destructor Documentation

Profile_Menu_sql::__construct ( &$  p_cn,
p_id = -1 
)

Reimplemented from Noalyss_SQL.

Definition at line 41 of file class_profile_menu_sql.php.

References name, table, and type.

    {
        $this->table="public.profile_menu";
        $this->primary_key="pm_id";

        $this->name=array(
            "pm_id"=>"pm_id", "me_code"=>"me_code"
            , "me_code_dep"=>"me_code_dep"
            , "p_id"=>"p_id"
            , "p_order"=>"p_order"
            , "p_type_display"=>"p_type_display"
            , "pm_default"=>"pm_default"
        );

        $this->type=array(
            "pm_id"=>"number",
            "me_code"=>"text"
            , "me_code_dep"=>"text"
            , "p_id"=>"number"
            , "p_order"=>"number"
            , "p_type_display"=>"text"
            , "pm_default"=>"text"
        );

        $this->default=array(
            "pm_id"=>"auto"
        );

        parent::__construct($p_cn, $p_id);
    }

The documentation for this class was generated from the following file:
 All Data Structures Namespaces Files Functions Variables Enumerations