Introduction
The Feed Object meta for the Dropbox add-on is an associative array containing the properties which determine how the add-on should process the form submission.
$feed['meta'] = array( 'feedName' => 'Dropbox Feed 1', 'fileUploadField' => 'all', 'destinationFolder' => '/local.wordpress.dev', 'feed_condition_conditional_logic' => true, 'feed_condition_conditional_logic_object' => array( 'conditionalLogic' => array(), ), );
Usage
We recommend accessing the $feed meta using the rgar() or rgars() functions, e.g.:
$conditional_logic_enabled = rgars( $feed, 'meta/feed_condition_conditional_logic' );
Properties
- feedName string
The feed name which appears on the add-ons feeds tab.
-
fileUploadField string
The ID of the field containing the files to be uploaded to Dropbox or ‘all’ to upload files from all relevant fields.
-
destinationFolder string
The folder in the Dropbox account where the files will be stored.
-
feed_condition_conditional_logic boolean
Is the feed condition (conditional logic) setting enabled. Default is false.
-
feed_condition_conditional_logic_object array
An associative array containing the conditional logic rules. See the Conditional Logic Object for more details.