You are here

function oa_export_json_import in Open Atrium Export 7.2

Import callback.

1 call to oa_export_json_import()
oa_export_import_decode_data in ./oa_export.module
Gets the contents of the json file and decodes it.
1 string reference to 'oa_export_json_import'
oa_export_format_handlers in formats/oa_export.formats.inc
Returns an array of format handlers for file export.

File

formats/json.inc, line 83
The OA export JSON format handler.

Code

function oa_export_json_import($code_string) {
  return oa_export_json_decode_objects(drupal_json_decode($code_string));
}