Editor module export class. All fields are optional.
Sets the back link.
The behavior changes whether the module export contains page blocks.
If it does, setting this will set the page "Back" link to the given string.
If it does not, setting this will redirect the browser to the given link (HTML.goBack()
).
optional insert:Null<Array<String>>
If set, the editor will execute INSERT SQL query with given parameters. Parameter values are taken from request variables.
optional insertParams:Null<Array<String>>
If set, the editor will execute INSERT SQL query with "params" field set to JSON encoded string of the anonymous object with given parameters. Parameter values are taken from request variables.
optional isDisabledInProduction:Null<Bool>
If enabled, this export is disabled in production.
Production status is controlled by server.isProduction
configuration variable.
If set, will send a reload message to cache server after handling the request. This parameter should be in "[server module name].[entity or *]" format.
optional simpleForms:Null<Bool>
If enabled, all forms in this export are simplified (no jQuery usage).
optional update:Null<Array<String>>
If set, the editor will execute UPDATE SQL query with given parameters. Parameter values are taken from request variables.
optional updateParams:Null<Array<String>>
If set, the editor will execute UPDATE SQL query with "params" field set to JSON encoded string of the anonymous object with given parameters. Parameter values are taken from request variables.