Files
Facilitor/APPL/API2/model_fac_profiel.inc
Jos Groot Lipman 68a774c4c2 FSN#39312 Verder ontsluiten van modellen via de API
svn path=/Website/trunk/; revision=33021
2017-03-02 16:52:23 +00:00

68 lines
1.7 KiB
PHP

<% /*
$Revision$
$Id$
File: model_fac_profiel.inc
Description: Vanuit CodeCharge gegenereerd model voor fac_profiel
Context:
Notes:
*/
%>
<!-- #include file="../api2/model_fac_profielwaarde.inc" -->
<%
function model_fac_profiel()
{
this.records_name = "profiles";
this.record_name = "profile";
this.table = "fac_profiel";
this.childtable = "fac_profielwaarde"
this.primary = "fac_profiel_key";
this.autfunction = "WEB_FINMSU";
this.record_title = L("fac_profiel");
this.records_title = L("fac_profiel_m");
this.fields = {
"id": {
"dbs": "fac_profiel_key",
"label": L("lcl_key"),
"typ": "key",
"required": true,
"filter": "exact",
"seq": "fac_s_fac_profiel_key"
},
"name": {
"dbs": "fac_profiel_omschrijving",
"label": L("fac_profiel_omschrijving"),
"typ": "varchar",
"required": true,
"translate": true,
"filter": "like"
},
"limit": {
"dbs": "fac_profiel_limiet",
"label": L("fac_profiel_limiet"),
"typ": "number"
}
};
this.includes = {
"profilevalues": {
"model": new model_fac_profielwaarde(),
"joinfield": "profile",
"enable_update": true,
"multiadd": "catalog"
}
};
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);
}
%>