load_content.anubis
1.3 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* Created by PyramIDE.
* User: フランスのトトロ aka (David RENÉ)
* Date: 09/09/2018
* Time: 19:22
* © David RENÉ
*/
read system/convert.anubis
read calexium_lib/web/CXM_making_a_web_site.anubis
public define String
load_content
(
String target,
WEB_Action_Name web_action,
List((String,String)) extra_args,
Bool replace
)=
"CalexiumToolBox.ajax_load_content('"+target+"', '"+format_web_action_name(web_action, extra_args)+"', "+to_String(replace)+");"
.
public define String
load_content
(
String target,
WEB_Action_Name web_action,
List((String,String)) extra_args
)=
load_content(target, web_action, extra_args, true)
.
public define String
load_content
(
String target,
WEB_Action_Name web_action,
(String, String) extra_arg
)=
load_content(target, web_action, [extra_arg], true)
.
public define String
load_content
(
String target,
WEB_Action_Name web_action
)=
load_content(target, web_action, [], true)
.
public define String
load_content
(
String target,
WEB_Action_Name web_action,
Bool replace
)=
load_content(target, web_action, [], replace)
.