You are here

public function WebformUiElementFormBase::getWebform in Webform 8.5

Same name and namespace in other branches
  1. 6.x modules/webform_ui/src/Form/WebformUiElementFormBase.php \Drupal\webform_ui\Form\WebformUiElementFormBase::getWebform()

Return the webform associated with this form.

Return value

\Drupal\webform\WebformInterface A form

Overrides WebformUiElementFormInterface::getWebform

1 call to WebformUiElementFormBase::getWebform()
WebformUiElementFormBase::getWebformElementPlugin in modules/webform_ui/src/Form/WebformUiElementFormBase.php
Return the webform element associated with this form.

File

modules/webform_ui/src/Form/WebformUiElementFormBase.php, line 492

Class

WebformUiElementFormBase
Provides a base class for webform element webforms.

Namespace

Drupal\webform_ui\Form

Code

public function getWebform() {
  return $this->webform;
}