Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2013
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. $importResult = PodioImporter::process_app( $uploadResult->file_id, (int)$appJob->appId, array(
  2.     "app_id" => (int)$appJob->appId,
  3.     "mappings" => array(
  4.         array(
  5.             "field_id" => $fieldId,
  6.             "unique" => TRUE,//True of the values for the field is unique, false otherwise,
  7.             "value" => array(
  8.                     "value_column_id" => //The id of the column to map to the value,
  9.                     //"currency_column_id" => ,//The id of the column to map to the currency, if any,
  10.                     //"currency_default" => //The default currency, if any
  11.             )
  12.         )
  13.     )
  14. ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement