69 lines
1.8 KiB
PHP
69 lines
1.8 KiB
PHP
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: model_mld_stdmeldinggroep.inc
|
|
|
|
Description: Vanuit CodeCharge gegenereerd model voor mld_stdmeldinggroep
|
|
|
|
Context:
|
|
|
|
Notes:
|
|
*/
|
|
%>
|
|
<%
|
|
|
|
function model_mld_stdmeldinggroep()
|
|
{
|
|
this.records_name = "callgroups";
|
|
this.record_name = "callgroup";
|
|
this.table = "mld_stdmeldinggroep";
|
|
this.primary = "mld_stdmeldinggroep_key";
|
|
this.autfunction = "WEB_PRSSYS";
|
|
this.record_title = L("mld_stdmeldinggroep");
|
|
this.records_title = L("mld_stdmeldinggroep_m");
|
|
|
|
|
|
this.fields = {
|
|
"id": {
|
|
"dbs": "mld_stdmeldinggroep_key",
|
|
"label": "Key",
|
|
"typ": "key",
|
|
"hidden_fld": true,
|
|
"required": true,
|
|
"seq": "mld_s_mld_stdmeldinggroep_key",
|
|
"defaultvalue": null
|
|
},
|
|
"name": {
|
|
"dbs": "mld_stdmeldinggroep_naam",
|
|
"label": L("mld_stdmeldinggroep_naam"),
|
|
"typ": "varchar",
|
|
"translate": true,
|
|
"required": true
|
|
},
|
|
"description": {
|
|
"dbs": "mld_stdmeldinggroep_oms",
|
|
"label": L("mld_stdmeldinggroep_oms"),
|
|
"typ": "varchar",
|
|
"translate": true
|
|
},
|
|
"symbolname": {
|
|
"dbs": "mld_stdmeldinggroep_image",
|
|
"typ": "symbol",
|
|
"module": "MLDG",
|
|
"label": L("lcl_mld_symbol_name")
|
|
},
|
|
"color": {
|
|
"dbs": "mld_stdmeldinggroep_color",
|
|
"typ": "color",
|
|
"label": L("lcl_mld_colors")
|
|
}
|
|
};
|
|
|
|
|
|
this.REST_GET = generic_REST_GET(this);
|
|
this.REST_POST = generic_REST_POST(this);
|
|
this.REST_PUT = generic_REST_PUT(this);
|
|
this.REST_DELETE = generic_REST_DELETE(this);
|
|
}
|
|
%> |