You are here

public function ExportEntityForm::buildForm in Content Synchronizer 8

Same name and namespace in other branches
  1. 8.2 src/Form/ExportEntityForm.php \Drupal\content_synchronizer\Form\ExportEntityForm::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 EntityForm::buildForm

File

src/Form/ExportEntityForm.php, line 26

Class

ExportEntityForm
Form controller for Export entity edit forms.

Namespace

Drupal\content_synchronizer\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {

  /* @var $entity \Drupal\content_synchronizer\Entity\ExportEntity */
  $form = parent::buildForm($form, $form_state);
  return $form;
}