Class: I2CE FormStorage multi flat

From IHRIS Wiki
Revision as of 13:09, 19 October 2009 by Litlfred (talk | contribs)

This article describes the class I2CE_FormStorage_multi_flat.

@filesource Class I2CE_FormStorage_multi_flat

Variables

$storage_options_cache

of I2CE_MagicDataNodes. The keys are the names of forms which have flat storage.

  • Type: protected array $storage_options_cache

$databases

sting. Keys are componentities and values are the assoicated database

  • Type: protected array $databases

$componentized_forms

componentized_forms. The array of componentized forms

  • Type: protected array $componentized_forms

$formObjs

. Keys are form names, values are instanceof I2CE_Form

  • Type: protected array $formObjs

Methods

__construct()

The constructor for the storage mechanism

  • Signature: public function __construct($name,$global_options)
  • Parameters:
    • string $name
    • array $global_options
      Default to empty array. The array of options that are the same across all all forms which share a commone storage mechanisms
      • Default Value: array()

fieldIsColumn()

  • Signature: protected function fieldIsColumn($data)
  • Parameters:
    • $data

getFieldData()

  • Signature: protected function getFieldData($data)
  • Parameters:
    • $data

getFormObj()

Get a (cached) form object for the given form

  • Signature: protected function getFormObj($form)
  • Parameters:
  • Returns: I2CE_Form
    or false on failure.

getRequiredFieldsQuery()

Construct a query (to be used as a sub-select) to view the fields of the given form. It always will return the id of the form as well @param callback $field_refernece_callback. A callback function whose first arguement is the form, the second arguements is the field and which returns the way the field value should be references as a field. If the callback is null (the default) then the reference used is "$form+$field"

  • Signature: public function getRequiredFieldsQuery($form,$fields,$id,$parent,$field_reference_callback,$mod_time)
  • Parameters:
    • string $form
    • mixed $fields
      Either a string, the field, or an array of string, the fields.
    • mixed $id
      Defaults to null. If non-null it is the id that we wish to limit to.
      • Default Value: null
    • boolean $parent
      Defaults to false. If true, we include the parent id as a referenced field If it is scalar and non-boolean, it is consider to be the ID of the parent, and then we get all forms with parent the given id.
      • Default Value: false
    • $field_reference_callback
      • Default Value: null
    • integer $mod_time
      Defaults to -1. If non-negative, we only list the requested fields for an id if at least one of them has a modification time greater than or equal to $mod_time. If the form storage has no way of tracking modifucation time, all entries are listed.
      • Default Value: -1
  • Returns: string
    the query or false on failed.

getStorageOptions()

Checks that the storage mechansim for the given form is 'multi_flat' and has storage options.

  • Signature: protected function getStorageOptions($form)
  • Parameters:
  • Returns: mixed
    I2CE_MagicDataNode of flat storage options on success, false on failure.

isWritable()

Checks to see if this storage mechansim is writable

  • Signature: public function isWritable()
  • Returns: boolean.
    false