-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
61 lines (42 loc) · 2.7 KB
/
config.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<config>
<!-- The title that appears in the gadget's title bar. -->
<entry key="title" label="Title">Unpublish File</entry>
<!-- The URL of an icon image. -->
<entry key="icon" private="true">icon-remove-5</entry>
<!-- The description that appears in the gadget chooser. -->
<entry key="description" private="true">Unpublishes files from the production server.</entry>
<!-- The URL of a thumbnail image to appear in the gadget chooser. -->
<entry key="thumbnail" private="true">http://jessgusclark.github.io/gadget-unpublished/unpublished-thumbnail.jpg</entry>
<!-- Current supported types are "dashboard" and "sidebar". If you want your gadget to appear
in both places, enter "dashboard, sidebar". -->
<entry key="types" private="true">sidebar</entry>
<entry key="sidebar_context" private="true">page</entry>
<!-- This entry, if present, causes OU Campus to forward notifications of the specified
type(s) to the gadget. Enter one or more notification types separated by commas. -->
<entry key="notifications" private="true">message</entry>
<!-- For sidebar gadgets only. See explanation at bottom. -->
<!-- <entry key="sidebar_context" private="true">edit</entry> -->
<!-- For dashboard gadgets only. Determines the width of the gadget in columns.
Can be 1, 2, or 3. -->
<entry key="columns" private="true">1</entry>
<!-- For sidebar gadgets only. Determines the initial height of the gadget in pixels. -->
<entry key="initial_height" private="true">100</entry>
</config>
<!-- Flags
private : If set to true, the property will not be exposed anywhere in the UI.
overwritable : If set to true, the property will be exposed in the gadget's user-accessible
configuration modal. If false or absent, the property will only be exposed
in the gadget management screen. (If the private flag is set to true, this
property is ignored.)
-->
<!-- Sidebar contexts
If the sidebar_context property is specified, the sidebar gadget will only appear when the
OU Campus app is "in" the specified context. Curent supported contexts are as follows:
"page" : True when the subject of the current view is an individual page. Examples include
page preview, page edit, and page properties.
"edit" : True only for WYSIWYG editing views and source editing views.
"asset" : True when the subject of the current view is an individual asset.
"file" : True when the subject of the current view is either an individual page or an
individual asset.
-->