public function LibraryItemSettingsForm::buildForm

File

paragraphs/modules/paragraphs_library/src/Form/LibraryItemSettingsForm.php, line 30

Class

LibraryItemSettingsForm
Form for Paragraphs library item settings.

Namespace

Drupal\paragraphs_library\Form

Code

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

  // This exists to make the field UI pages visible and must not be removed.
  $form['account'] = array(
    '#markup' => '<p>' . $this
      ->t('There are no settings yet.') . '</p>',
  );
  return parent::buildForm($form, $form_state);
}