Files
Facilitor/APPL/API2/model_mld_stdmeldinggroep.inc
Erik Groener 02a084ab45 FSN#39312 Verder ontsluiten van modellen via de API
svn path=/Website/trunk/; revision=33052
2017-03-06 15:38:02 +00:00

59 lines
1.5 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,
"filter": "exact",
"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
}
};
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);
}
%>