This provider exports data related to Blendedx sessions classroom events.

Available columns

Name Type Description
eventAllDay enum(true, false) 'true' if the event lasts the whole day, false otherwise.
eventClassRoomCapacity int The room capacity of the event.
eventClassRoomDescription longtext The room description of the event.
eventClassRoomEquipments
eventClassRoomTitle string The room title of the event.
eventClassRoomType enum(Standard, Virtual) The room type of the event.
eventDescription longtext The description of the event.
eventDuration int The duration of the event.
eventEndDate date The end date of the event.
eventStartDate date The start date of the event.
eventStatus enum(C, P, CA) The validation status of the event. Values can be C, P, CA, respectively for Confirmed, Pending, CAncelled.
eventTeacher string The teacher of the event.
eventTitle string The title of the event.
eventVirtualRoomLink url Link to the virtual room of the event.
sessionEndDate date The end date of the session.
sessionGuid string(40) The GUID of the session.
sessionId int The database ID used to identify the session.
sessionStartDate date The start date of the session.
sessionTitle string The title of the session.

Filters and parameters

Name Type Description
eventClassRoomTypeFilter enum(Standard, Virtual) Export with filter Virtual or Standard.
eventDurationAllDayFilter yesNoElement Export all day between a start day and a end day.
eventStatusFilter enum(C, P, CA) Export only events with a chosen status (C - Confirmed, P - Pending, CA - Cancelled)
exportAllSessions yesNoElement Whether to include failed connections.
maxLength int If not empty, this option will crop each value to the specified max length (each cell, not each line).
stripHTML string If not empty, this option will remove any HTML tag from the exported data.
templates templates The definition of a dynamic template, to allow to customize the returned value for a column. It also allows to combine the values of several columns into one.

Examples


<providers>
    <eventSessionMetadataProvider>
        <columns>
            <sessionId/>
            <sessionGuid/>
            <sessionTitle/>
            <sessionStartDate/>
            <sessionEndDate/>
            <eventTitle/>
            <eventDescription/>
            <eventStartDate/>
            <eventEndDate/>
            <eventDuration/>
            <eventAllDay/>
            <eventVirtualRoomLink/>
            <eventTeacher/>
            <eventStatus/>
            <eventClassRoomTitle/>
            <eventClassRoomDescription/>
            <eventClassRoomCapacity/>
            <eventClassRoomEquipments/>
            <eventClassRoomType/>
        </columns>
        <parameters>
            <exportAllSessions>Y</exportAllSessions>
        </parameters>
    </eventSessionMetadataProvide>
</providers>