#plugins.core.application.manager

Application manager.


#API Overview

Functions - API calls offered directly by the extension


#API Documentation

#Functions

Signatureplugins.core.application.manager.defaultSearchConsoleToolbar() -> table
TypeFunction
DescriptionReturns the default search toolbar data.
Parameters
  • None
Returns
  • A table
NotesNone
ExamplesNone
Sourcesrc/plugins/core/application/manager.lua line 70

Signatureplugins.core.application.manager.getApplications() -> table
TypeFunction
DescriptionGets all the registered applications.
Parameters
  • None
Returns
  • A table of all the registered applications.
NotesNone
ExamplesNone
Sourcesrc/plugins/core/application/manager.lua line 44

Signatureplugins.core.application.manager.getSearchConsoleToolbar(bundleID) -> table
TypeFunction
DescriptionGets the Search Console Toolbar data for a specific bundle ID.
Parameters
  • bundleID - The bundle ID of the application you want to get.
Returns
  • A table of the Search Sonole Toolbar data for the specified application.
NotesNone
ExamplesNone
Sourcesrc/plugins/core/application/manager.lua line 57

Signatureplugins.core.application.manager.registerApplication(data) -> none
TypeFunction
DescriptionRegisters a new application.
Parameters
  • data - A table containing the information to register.
Returns
  • None
Notes
  • The data table should contain:
  • displayName - The display name of the application
  • bundleID - The bundle ID of the application
  • searchConsoleToolbar - A table containing the Search Console Toolbar information
  • legacyGroupID - A string containing the legacy group ID (i.e. "fcpx")
ExamplesNone
Sourcesrc/plugins/core/application/manager.lua line 20