public function EntityExportCsv::setLangcode in Entity Export CSV 8
Set the langcode.
Parameters
string $langcode: The langcode.
Return value
$this The config entity.
Overrides EntityExportCsvInterface::setLangcode
File
- src/
Entity/ EntityExportCsv.php, line 184
Class
- EntityExportCsv
- Defines the Entity export csv entity.
Namespace
Drupal\entity_export_csv\EntityCode
public function setLangcode(string $langcode) {
$this->langcode = $langcode;
return $this;
}