You are here

public function Field::__construct in Little helpers 7.2

Same name and namespace in other branches
  1. 7 src/Field/Field.php \Drupal\little_helpers\Field\Field::__construct()

File

src/Field/Field.php, line 46

Class

Field
OOP-wrapper for the data-structure used by field_*_field() functions.

Namespace

Drupal\little_helpers\Field

Code

public function __construct($data) {
  foreach ($data as $k => $v) {
    $this->{$k} = $v;
  }
}