li-kordiam-schedule

Supported Features

Document
Media
Include
Document Creation Flow
Push Message
Table Dashboard
Display Filter
Search Indexing
System Metadata
Webhook Conditions

Description

Added in: release-2024-11. Prior to release-2024-11, li-kordiam-schedule was known as li-desknet-schedule.

This plugin will allow a user to select Kordiam platforms and categories that they would like to view in the Kordiam Schedule side panel. Once selected the Kordiam button in the editor becomes active and the side panel can be opened. It is possible to lock the schedule to a specific date, as well as filter the Kordiam stories that are displayed. Further details can be found in the Kordiam Schedule Guide.

Default UI

Platform/category select and date input

Storage Format

{
  platforms: [
    {
      platformId: <Integer>,
      categoryId: <Integer>
    }
  ],
  date: <ISO8601 String>
}

Content Type Config

{
  handle: 'myContentType',
  // ...
  metadata: [
    {
      handle: 'myHandle'
      type: 'li-kordiam-schedule',
      config: {
        filters: {
          linkedDocumentsOnly: true,
          elementStatusIds: [1, 2, 10322, 10332],
          publicationStatusIds: [5]
        }),
        externalElementIdMetadataPath: 'myExternalSystem.id',
        automaticPlacementCreationFlowHandle: 'myKordiamGenerateContentFlow'
      },
      ui: {
        label: 'Kordiam Schedule',
        config: {
          placeholder: 'Select a Kordiam platform or category',
          useDashboard: 'articlesSimple'
        }
      }
    }
    // ...
  ]
}