You are here

public function ExportEntitySettingsForm::buildForm in Content Synchronizer 8.2

Same name and namespace in other branches
  1. 8 src/Form/ExportEntitySettingsForm.php \Drupal\content_synchronizer\Form\ExportEntitySettingsForm::buildForm()
  2. 3.x src/Form/ExportEntitySettingsForm.php \Drupal\content_synchronizer\Form\ExportEntitySettingsForm::buildForm()

Defines the settings form for Export entity entities.

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 Form definition array.

Overrides FormInterface::buildForm

File

src/Form/ExportEntitySettingsForm.php, line 50

Class

ExportEntitySettingsForm
Class ExportEntitySettingsForm.

Namespace

Drupal\content_synchronizer\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['ExportEntity_settings']['#markup'] = 'Settings form for Export entity entities. Manage field settings here.';
  return $form;
}