function WorkspaceSwitcherForm::submitSwitchToLive

Same name and namespace in other branches
  1. 9 core/modules/workspaces/src/Form/WorkspaceSwitcherForm.php \Drupal\workspaces\Form\WorkspaceSwitcherForm::submitSwitchToLive()
  2. 8.9.x core/modules/workspaces/src/Form/WorkspaceSwitcherForm.php \Drupal\workspaces\Form\WorkspaceSwitcherForm::submitSwitchToLive()
  3. 10 core/modules/workspaces/src/Form/WorkspaceSwitcherForm.php \Drupal\workspaces\Form\WorkspaceSwitcherForm::submitSwitchToLive()

Submit handler for switching to the live version of the site.

File

core/modules/workspaces/src/Form/WorkspaceSwitcherForm.php, line 151

Class

WorkspaceSwitcherForm
Provides a form that activates a different workspace.

Namespace

Drupal\workspaces\Form

Code

public function submitSwitchToLive(array &$form, FormStateInterface $form_state) {
    $this->workspaceManager
        ->switchToLive();
    $this->messenger
        ->addMessage($this->t('You are now viewing the live version of the site.'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.