You are here

public function FormHelper::setEntityTypeId in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::setEntityTypeId()
  2. 8.2 src/Form/FormHelper.php \Drupal\simple_sitemap\Form\FormHelper::setEntityTypeId()

Parameters

string|null $entity_type_id:

Return value

$this

1 call to FormHelper::setEntityTypeId()
FormHelper::getEntityDataFromFormEntity in src/Form/FormHelper.php
Checks if this particular form is a bundle form, or a bundle instance form and gathers sitemap settings from the database.

File

src/Form/FormHelper.php, line 169

Class

FormHelper
Class FormHelper

Namespace

Drupal\simple_sitemap\Form

Code

public function setEntityTypeId(?string $entity_type_id) : FormHelper {
  $this->entityTypeId = $entity_type_id;
  return $this;
}