element = array_merge([ "class" => "form-control js-select2", "value" => $this->getValue(), "name" => $this->name, "id" => "field_" . $this->name ], $this->element); // Placeholder is required to be in `data-*` for select 2 // Plus we translate the placeholder if (isset($this->element["placeholder"])) { $this->element["data-placeholder"] = $this->element["placeholder"]; unset($this->element["placeholder"]); $this->translateArgValue('data-placeholder'); } } }