You are here

public function WebformVariantBase::disable in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformVariantBase.php \Drupal\webform\Plugin\WebformVariantBase::disable()

Disables the webform variant.

Return value

$this

Overrides WebformVariantInterface::disable

File

src/Plugin/WebformVariantBase.php, line 233

Class

WebformVariantBase
Provides a base class for a webform variant.

Namespace

Drupal\webform\Plugin

Code

public function disable() {
  return $this
    ->setStatus(FALSE);
}