You are here

public function ImportEntitySettingsForm::buildForm in Content Synchronizer 8

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

Defines the settings form for Import 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/ImportEntitySettingsForm.php, line 50

Class

ImportEntitySettingsForm
Class ImportEntitySettingsForm.

Namespace

Drupal\content_synchronizer\Form

Code

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