Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
outlinh1. true
outlinh1. true
1printablefalse
2stylh1. none
3indent20px

... This page is under construction and will be completed shortly ...

Global variables can be merged with job and order parameters.

Example showing the merging of global variables:

Code Block
Code Block

Example showing the merging of global variables:

 function spooler_task_before() \{
    
    var globals = spooler.create_variable_set();
    globals.merge(spooler.variables);
    var parameters = spooler_task.params;
 
    globals.merge(parameters);
    spooler_task.params.merge(globals);
 
    return true;
 \}

Further information: