Initial Commit
This commit is contained in:
27
photonodes.lrplugin/PhotonodesUploadServiceProvider.lua
Normal file
27
photonodes.lrplugin/PhotonodesUploadServiceProvider.lua
Normal file
@ -0,0 +1,27 @@
|
||||
-- PhotoNodes Upload plug-in
|
||||
require "PhotonodesUploadExportDialogSections"
|
||||
require "PhotonodesUploadTask"
|
||||
|
||||
|
||||
--============================================================================--
|
||||
|
||||
return {
|
||||
|
||||
hideSections = { 'exportLocation' },
|
||||
|
||||
allowFileFormats = nil, -- nil equates to all available formats
|
||||
|
||||
allowColorSpaces = nil, -- nil equates to all color spaces
|
||||
|
||||
exportPresetFields = {
|
||||
{ key = 'client_id', default = nil; },
|
||||
{ key = 'event_code', default = 'LR Photos' },
|
||||
{ key = "gallery_name", default = nil },
|
||||
},
|
||||
|
||||
startDialog = PhotonodesUploadExportDialogSections.startDialog,
|
||||
sectionsForBottomOfDialog = PhotonodesUploadExportDialogSections.sectionsForBottomOfDialog,
|
||||
|
||||
processRenderedPhotos = PhotonodesUploadTask.processRenderedPhotos,
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user