public function ExportEntitySettingsForm::buildForm in Content Synchronizer 3.x
Same name and namespace in other branches
- 8.2 src/Form/ExportEntitySettingsForm.php \Drupal\content_synchronizer\Form\ExportEntitySettingsForm::buildForm()
- 8 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\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['ExportEntity_settings']['#markup'] = 'Settings form for Export entity entities. Manage field settings here.';
return $form;
}