biz9-logic 3.2.21 → 3.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +2 -17
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -15,23 +15,7 @@ class DataType {
|
|
|
15
15
|
return String(Str.get_title(data_type.replaceAll('_',' ').replaceAll('dt','').replace('biz',''))).trim();
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
static DATA_TYPE = 'data_type';
|
|
20
|
-
static TITLE = 'title';
|
|
21
|
-
static TITLE_URL = 'title_url';
|
|
22
|
-
static COST = 'cost';
|
|
23
|
-
static NOTE = 'note';
|
|
24
|
-
static SUB_NOTE = 'sub_note';
|
|
25
|
-
static ORDER = 'order';
|
|
26
|
-
static VISIBLE = 'visible';
|
|
27
|
-
static PHOTOFILENAME = 'photofilename';
|
|
28
|
-
static SETTING_SORT_TYPE = 'setting_sort_type';
|
|
29
|
-
static SETTING_SORT_ORDER = 'setting_sort_order';
|
|
30
|
-
static DELETE_PROTECTION = 'delete_protection';
|
|
31
|
-
static TOP_ID = 'top_id';
|
|
32
|
-
static TOP_DATA_TYPE = 'top_data_type';
|
|
33
|
-
static PARENT_ID = 'parent_id';
|
|
34
|
-
static PARENT_DATA_TYPE = 'parent_data_type';
|
|
18
|
+
|
|
35
19
|
static DT_ADMIN='admin_biz';
|
|
36
20
|
static DT_BLANK='blank_biz';
|
|
37
21
|
static DT_BLOG_POST='blog_post_biz';
|
|
@@ -49,6 +33,7 @@ class DataType {
|
|
|
49
33
|
static DT_PAGE='page_biz';
|
|
50
34
|
static DT_REVIEW='review_biz';
|
|
51
35
|
static DT_SERVICE='service_biz';
|
|
36
|
+
static DT_TEMPLATE='template_biz';
|
|
52
37
|
static DT_USER='user_biz';
|
|
53
38
|
static DT_VIDEO='video_biz';
|
|
54
39
|
}
|