function socialcalc_parse in Sheetnode 5
Same name and namespace in other branches
- 6 socialcalc.inc \socialcalc_parse()
- 7.2 socialcalc.inc \socialcalc_parse()
- 7 socialcalc.inc \socialcalc_parse()
2 calls to socialcalc_parse()
- sheetnode_nodeapi in ./sheetnode.module 
- Implementation of hook_nodeapi().
- _sheetnode_phpexcel_export in modules/sheetnode_phpexcel/ sheetnode_phpexcel.export.inc 
File
- ./socialcalc.inc, line 20 
- SocialCalc manipulation functions Translated from socialcalc-3.js and companion files
Code
function socialcalc_parse($data) {
  $parts = socialcalc_parse_parts($data);
  foreach ($parts as $name => $part) {
    $sc[$name] = call_user_func('socialcalc_parse_' . $name, $part);
  }
  return $sc;
}