8.5
Table Of Contents
- Table of Contents
- Welcome to PlanetPress Workflow 8.5
- System Requirements
- Basics
- Features
- The Nature of PlanetPress Workflow
- About Branches and Conditions
- Configuration Components
- Connect Resources
- About Data
- About Documents
- Debugging and Error Handling
- The Plug-in Bar
- About Printing
- About Processes and Subprocesses
- Using Scripts
- Special Workflow Types
- About Tasks
- Task Properties
- Variable Properties
- Working With Variables
- About Configurations
- About Related Programs and Services
- The Interface
- Copyright Information
- Legal Notices and Acknowledgements
l
Verbose log: Select to enable to keep a verbose log. Note that a communication log is generated
whether or not this option is selected. If you use a secure connection, the log will contain extra
information.
l Use PHPArrays:Select to process incoming POSTrequest with input arrays correctly. In the source
HTML, input elements with names such as name="chat[input][name]" or name="items[][partnum]" will
be correctly split as a single XMLnode along with each part of the array as children.
l
Omit attachments as CDATAnode in the XMLenvelope:Select to remove any attachments from
the actual XMLdata file. Generally the attachments are both saved on disk and included within the
XMLenvelope. This option removes them from the envelope, but they remain accessible through their
direct path. This option has no incidence on any other option of this task.
Technical
PHPArrays
This is an example of the new "Use PHPArrays"option introduced in Workflow 8.5.
HTMLExample:
<input type="hidden" name="user_account" value="email@example.com">
<input type="text" name="name" value="Peter Parker">
<input type="text" name="company" value="Objectif Lune">
<input type="text" name="pinElm1[pin_0][left]" value="122">
<input type="text" name="pinElm1[pin_0][top]" value="253">
<input type="text" name="pinElm1[pin_0][type]" value="dent">
<input type="text" name="pinElm1[pin_1][left]" value="361">
<input type="text" name="pinElm1[pin_1][top]" value="341">
<input type="text" name="pinElm1[pin_1][type]" value="dent">
Resulting XMLStructure in HTTPRequest Envelope
<values count="4">
<user_account>email@example.com</user_account>
<name>Peter Parker</name>
<company>Objectif Lune</company>
<pinElm1>
<pin_0>
<left>122</left>