You are here

public function PoolRequired::buildForm in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 8 src/Form/PoolRequired.php \Drupal\cms_content_sync\Form\PoolRequired::buildForm()
  2. 2.0.x src/Form/PoolRequired.php \Drupal\cms_content_sync\Form\PoolRequired::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 ConfirmFormBase::buildForm

File

src/Form/PoolRequired.php, line 59

Class

PoolRequired
Provides a node deletion confirmation form.

Namespace

Drupal\cms_content_sync\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  return parent::buildForm($form, $form_state);
}