public function PageVariantAddWizard::buildForm in Page Manager 8
Same name and namespace in other branches
- 8.4 page_manager_ui/src/Wizard/PageVariantAddWizard.php \Drupal\page_manager_ui\Wizard\PageVariantAddWizard::buildForm()
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides FormWizardBase::buildForm
File
- page_manager_ui/
src/ Wizard/ PageVariantAddWizard.php, line 133 - Contains \Drupal\page_manager_ui\Wizard\PageVariantAddWizard.
Class
Namespace
Drupal\page_manager_ui\WizardCode
public function buildForm(array $form, FormStateInterface $form_state, $page = NULL) {
$form = parent::buildForm($form, $form_state);
// TODO: Change the autogenerated stub
// Get the page tempstore so we can modify the unsaved page.
if (!isset($cached_values['page']) || !$cached_values['page']
->id()) {
$cached_values = $form_state
->getTemporaryValue('wizard');
$page_tempstore = $this->tempstore
->get('page_manager.page')
->get($page);
$cached_values['page'] = $page_tempstore['page'];
$form_state
->setTemporaryValue('wizard', $cached_values);
}
// Hide form elements that are not useful during the add wizard.
if ($this->step == 'configure') {
$form['page_variant_label']['#type'] = 'value';
unset($form['delete']);
}
return $form;
}