...
$t->addControlMessage( )
A Journey Object (JO) or Data Suitcase is an XML file stored on the Blinkmobile server. This mADL function allows you to add a personal Data Suitcase into a device. You must ensure your source file is correctly formatted XML You can validate your source file at http://validator.w3.org/
Parameters | |
---|---|
$mojoTarget | A String containing the Journey Object name. |
$mojoXML | A String containing the Journey Object data. |
Return Values | |
---|---|
$t->result | Structured data / XML is returned to the variable $t |
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
$t->addControlMessage(array('mojoTarget' => 'mymojo', 'mojoXML' => $dmojodata->saveXML())); |
...