web_action.anubis 2.71 KB
/*
 * Created by PyramIDE.
 * User: フランスのトトロ aka (David RENÉ) 
 * Date: 11/03/2017
 * Time: 21:55
 * © David RENÉ
 */

read xlib/web/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_create_row          = controller_action("hk_c", "create_row").
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").