web_action.anubis
2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Created by PyramIDE.
* User: フランスのトトロ aka (David RENÉ)
* Date: 11/03/2017
* Time: 21:55
* © David RENÉ
*/
read calexium_lib/web/CXM_making_a_web_site.anubis
here are defined all action managed by Hayamiki Controller
public define WEB_Action_Name hkc_edit_table = controller_action("hk_c", "edit_table").
public define WEB_Action_Name hkc_view_editor = controller_action("hk_c", "view_editor").
public define WEB_Action_Name hkc_grid_view = controller_action("hk_c", "grid_view").
public define WEB_Action_Name hkc_grid_action = controller_action("hk_c", "grid_action").
public define WEB_Action_Name hkc_combo_search = controller_action("hk_c", "combo_search").
public define WEB_Action_Name hkc_selector = controller_action("hk_c", "selector"). //get dropdown HMTL content
public define WEB_Action_Name hkc_query = controller_action("hk_c", "query"). //CRUD action
public define WEB_Action_Name hkc_list_view = controller_action("hk_c", "view_table").
public define WEB_Action_Name hkc_list_view_name = controller_action("hk_c", "hkc_list_view_name").
public define WEB_Action_Name hkc_list_view_filter = controller_action("hk_c", "hkc_list_view_filter").
public define WEB_Action_Name hkc_save_row = controller_action("hk_c", "save_row").
public define WEB_Action_Name hkc_save_row_and_new = controller_action("hk_c", "save_row_and_new").
public define WEB_Action_Name hkc_update_row = controller_action("hk_c", "update_row").
public define WEB_Action_Name hkc_update_row_and_new = controller_action("hk_c", "update_row_and_new").
public define WEB_Action_Name hkc_delete_row = controller_action("hk_c", "delete_row").
public define WEB_Action_Name hkc_cancel = controller_action("hk_c", "cancel").
public define WEB_Action_Name hkc_ajax_edit_table = controller_action("hk_c", "ajax_edit_table").
public define WEB_Action_Name hkc_show_apps = controller_action("hk_c", "show_apps").
public define WEB_Action_Name hkc_import_dropzone = controller_action("hk_c", "hkc_import_dz").
public define WEB_Action_Name hkc_import_file = controller_action("hk_c", "hkc_import_file").
public define WEB_Action_Name hkc_import_choose_col = controller_action("hk_c", "hkc_import_col").
public define WEB_Action_Name hkc_import_execute = controller_action("hk_c", "hkc_import_exec").
//file management
public define WEB_Action_Name hkc_file_upload = controller_action("hk_c", "upload").
public define WEB_Action_Name hkc_file_download = controller_action("hk_c", "download").