blob: d0bd4000f853d56eb0d5c266fab2d8155958416a (
plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<toggleable_menu
layout="topleft"
name="Avatar Profile Menu Self">
<menu_item_call
label="Edit Display Name"
layout="topleft"
name="edit_display_name">
<on_click
function="Profile.Commit"
parameter="edit_display_name"/>
</menu_item_call>
<menu_item_call
label="Edit Partner"
layout="topleft"
name="edit_partner">
<on_click
function="Profile.Commit"
parameter="edit_partner"/>
</menu_item_call>
<menu_item_call
label="Upload Photo"
layout="topleft"
name="upload_photo">
<menu_item_call.on_click
function="Profile.Commit"
parameter="upload_photo"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="upload_photo"/>
</menu_item_call>
<menu_item_call
label="Change Photo"
layout="topleft"
name="change_photo">
<menu_item_call.on_click
function="Profile.Commit"
parameter="change_photo"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="change_photo"/>
</menu_item_call>
<menu_item_call
label="Remove Photo"
layout="topleft"
name="remove_photo">
<menu_item_call.on_click
function="Profile.Commit"
parameter="remove_photo"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="remove_photo"/>
</menu_item_call>
<menu_item_separator name="separator_copy_options"/>
<menu_item_call
label="Copy Display Name"
layout="topleft"
name="copy_display_name">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_display_name"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="copy_display_name"/>
</menu_item_call>
<menu_item_call
label="Copy Agent Name"
layout="topleft"
name="copy_name">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_username"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="copy_username"/>
</menu_item_call>
<menu_item_call
label="Copy Agent Id"
layout="topleft"
name="copy_id">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_user_id"/>
</menu_item_call>
</toggleable_menu>
|