-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent-calls
43 lines (20 loc) · 1.43 KB
/
component-calls
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
// Shows how many unopened messages a user has
<component class="HomePageMailStatus" show_only_new="1" title="${mail:home:new_messages.body}" hide_if_empty="1" />
// Home Polls component
<component class="HomePagePollsList" hide_if_empty="1" />
// Hompage surveys
<component class="HomePageSurveysList" hide_if_empty="1" />
// Shows an innovate follow button on a users profile page
<component class="InnovateComponentFollow">
// Links to a Google Hangout creation page. The app_id needs to exist for a company, this can only be retrived if the company has Google enterprise
<component class="PeopleGoogleHangoutButton" app_id="xxx">
// Shows a LinkedIn overview on a profile page. The user must have the metadata key "linkedin" filled in on their edit profile page
<component class="PeopleLinkedInComponent">
// Shows a Skype call button on a profile page. The user must have the metadata key "skype" filled in on their edit profile page
<component class="PeopleSkypeMeButton">
// Anniversary componenet - users need to have the metadata key "dob" filled pout on their profile page
<component class="TemplaterComponentAnniversary" metakey="dob" />
// Shows documents that have a review date set. Documents must have the metadata key specificed in the "metadate" paramater specificed
<component class="TemplaterComponentDocumentDue" metadate="review" />
// Mini Calendar componenet
<component class="TemplaterComponentMiniCalendar" />