public function PatternDuplicateForm::setEntity in Pathauto 8
Sets the form entity.
Sets the form entity which will be used for populating form element defaults. Usually, the form entity gets updated by \Drupal\Core\Entity\EntityFormInterface::submit(), however this may be used to completely exchange the form entity, e.g. when preparing the rebuild of a multi-step form.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity the current form should operate upon.
Return value
$this
Overrides EntityForm::setEntity
File
- src/
Form/ PatternDuplicateForm.php, line 15
Class
- PatternDuplicateForm
- Provides the pathauto pattern duplicate form.
Namespace
Drupal\pathauto\FormCode
public function setEntity(EntityInterface $entity) {
$this->entity = $entity
->createDuplicate();
return $this;
}