You are here

public function Language::__construct in Little helpers 7.2

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

File

src/Locale/Language.php, line 32

Class

Language
Model object for the {languages} table.

Namespace

Drupal\little_helpers\Locale

Code

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