You are here

public function EntityListWrapper::offsetSet in Entity API 7

File

includes/entity.wrapper.inc, line 1141
Provides wrappers allowing easy usage of the entity metadata.

Class

EntityListWrapper
Wraps a list of values.

Code

public function offsetSet($delta, $value) {
  $this
    ->get($delta)
    ->set($value);
}