Commit 2c1e02c9096f000a6244caf66cbe1b51f117383a
1 parent
0a7f3ba8
update the plugin information according to the new component (version and date)
Showing
3 changed files
with
7 additions
and
5 deletions
Show diff stats
src/web_controller/hayamiki.anubis
| @@ -271,9 +271,9 @@ define (WEB_Session) -> WEB_Controller_Result | @@ -271,9 +271,9 @@ define (WEB_Session) -> WEB_Controller_Result | ||
| 271 | 271 | ||
| 272 | success(page) then | 272 | success(page) then |
| 273 | with | 273 | with |
| 274 | - search_words = get_String_list(lwa, "q_word[]"), | ||
| 275 | - search_fields = get_String_list(lwa, "search_field[]"), | ||
| 276 | - active_filters = get_String_list(lwa, "active_filter[]"), //active filter format is "column_name,id" | 274 | + search_words = get_List_String(lwa, "q_word[]"), |
| 275 | + search_fields = get_List_String(lwa, "search_field[]"), | ||
| 276 | + active_filters = get_List_String(lwa, "active_filter[]"), //active filter format is "column_name,id" | ||
| 277 | limit = get_Int(lwa, "per_page", 10), //limit | 277 | limit = get_Int(lwa, "per_page", 10), //limit |
| 278 | and_or = get_String(lwa, "and_or", "OR"), | 278 | and_or = get_String(lwa, "and_or", "OR"), |
| 279 | sidx = get_String(lwa, "sidx", "id"), | 279 | sidx = get_String(lwa, "sidx", "id"), |
| @@ -519,7 +519,7 @@ define (WEB_Session) -> WEB_Controller_Result | @@ -519,7 +519,7 @@ define (WEB_Session) -> WEB_Controller_Result | ||
| 519 | error_result, | 519 | error_result, |
| 520 | success(controller) then | 520 | success(controller) then |
| 521 | //get the name of editor to use | 521 | //get the name of editor to use |
| 522 | - with select_fields = get_String_list(lwa, "select_fields"), | 522 | + with select_fields = get_List_String(lwa, "select_fields"), |
| 523 | // with view_name = get_String(lwa, "view_name", "default"), | 523 | // with view_name = get_String(lwa, "view_name", "default"), |
| 524 | // _filter_name = get_String(lwa, "filter_name", ""), | 524 | // _filter_name = get_String(lwa, "filter_name", ""), |
| 525 | search = get_String(lwa, "_search", "false"), | 525 | search = get_String(lwa, "_search", "false"), |
src/web_controller/hayamiki_plugin.anubis
| @@ -34,6 +34,8 @@ global define WEB_Plugin | @@ -34,6 +34,8 @@ global define WEB_Plugin | ||
| 34 | web_plugin( | 34 | web_plugin( |
| 35 | "HAYAMIKI", | 35 | "HAYAMIKI", |
| 36 | "BASE", | 36 | "BASE", |
| 37 | + "1.14.0", | ||
| 38 | + _Int_to_ISO_8601_datetime(to_Int(__TIME__)), | ||
| 37 | plugin_get_controller, | 39 | plugin_get_controller, |
| 38 | plugin_get_typed_content | 40 | plugin_get_typed_content |
| 39 | ) | 41 | ) |