public function WebServicesField::load

3.x WebServicesField.inc public WebServicesField::load($entity)

Loads the field values from the underlying data store.

Parameters

$entity:

Return value

An array of the following format: $entity->{$field_name}['und'][0]['value'] = $value; where:

  • $entity is the entity object to which this field is attached.
  • $field_name is the name of this field
  • 'und' is the language code (in this case 'und' == undefined)
  • 0 is the cardinality. Increment by 1 when more than one item is available.
  • 'value' is the key indicating the value of this field. It should always be set. The value of the 'value' key will be the contents used for web services and for downloadable content. The value should be of the follow format types: 1) A single value (text, numeric, etc.) 2) An array of key value pair. 3) If multiple entries then cardinality should incremented and format types 1 and 2 should be used for each item.

The array may contain as many other keys at the same level as 'value' but those keys are for internal field use and are not considered the value of the field.

Overrides TripalField::load

1 method overrides WebServicesField::load()
remote__data::load in tripal_ws/includes/TripalFields/remote__data/remote__data.inc

File

tripal_ws/includes/TripalFields/WebServicesField.inc, line 115

Class

WebServicesField
@class Purpose:

Code

public function load($entity) {
}