Form Storage -- Magic Data

From IHRIS Wiki
Revision as of 09:25, 4 June 2009 by Litlfred (talk | contribs) (Created page with '==Features== ==Storage== All the data for form $form is stored in the magic data instance at the path /I2CE/formsData/forms/$form with each node underneath corresponding to an i...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Features

Storage

All the data for form $form is stored in the magic data instance at the path

/I2CE/formsData/forms/$form

with each node underneath corresponding to an instance of the form. For example, under

/I2CE/formsData/forms/gender

we have

F  => Array [
   'last_modified' => '2009-04-27 1:23:45'
   'fields' => Array [
         'name' => 'Female' 
     ]
]
M => Array [
    'last_modified' => '2009-04-27 1:23:45'
    'fields' => Array [
         'name' => 'Male' 
      ]
 ]