Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fullcalendar scheduler #38

Merged
merged 2 commits into from
Dec 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/calendar/calendar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<enumerationValue key="contextmf_viewspecific">Microflow with context object (Retrieve events for each view)</enumerationValue>
</enumerationValues>
</property>
<property key="schedulerLicenseKey" type="string">
<caption>Scheduler License Key</caption>
<category>License Key</category>
<description>Read the following licence agreement http://fullcalendar.io/scheduler/license/ and get a license.</description>
</property>
<property key="eventEntity" type="entity">
<caption>Event Entity</caption>
<category>Data source</category>
Expand All @@ -35,6 +40,16 @@
<description>Setting this microflow will override the XPath retrieve option, and solely use this microflow to fill the calendar.</description>
<returnType type="Void" />
</property>
<property key="resourceEntity" type="entity">
<caption>Resource Entity</caption>
<category>Data source</category>
<description>The resource entity.</description>
</property>
<property key="resourceEventPath" type="entity" isPath="yes" pathType="reference" entityProperty="eventEntity">
<caption>Resource reference</caption>
<category>Data source</category>
<description>The association from the resource to the event</description>
</property>
<property key="contextEntity" type="entity" required="false">
<caption>Dataview Entity</caption>
<category>Dataview context (Optional)</category>
Expand Down Expand Up @@ -112,6 +127,19 @@
<attributeType name="Boolean" />
</attributeTypes>
</property>
<property key="resourceLabelText" type="string">
<caption>Resource Label Title</caption>
<category>Event data</category>
<description>Title of the resources column</description>
</property>
<property key="resourceTitle" type="attribute" isPath="optional" pathType="reference" entityProperty="resourceEntity">
<caption>Resource Title</caption>
<category>Event data</category>
<description>Title of the resource</description>
<attributeTypes>
<attributeType name="String" />
</attributeTypes>
</property>
<property key="limitEvents" type="boolean" defaultValue="false">
<caption>Limit events</caption>
<category>Event data</category>
Expand Down Expand Up @@ -309,6 +337,8 @@
<enumerationValue key="basicDay">Basic day</enumerationValue>
<enumerationValue key="agendaWeek">Agenda week</enumerationValue>
<enumerationValue key="agendaDay">Agenda day</enumerationValue>
<enumerationValue key="timelineDay">Day timeline</enumerationValue>
<enumerationValue key="timelineThreeDays">3 day timeline</enumerationValue>
</enumerationValues>
</property>
<property key="timeFormatViews" type="translatableString" required="false">
Expand Down
Loading