LibraryItemSettingsForm.php in Paragraphs 8
File
modules/paragraphs_library/src/Form/LibraryItemSettingsForm.php
View source
<?php
namespace Drupal\paragraphs_library\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
class LibraryItemSettingsForm extends ConfigFormBase {
public function getFormId() {
return 'paragraphs_library_item_settings';
}
protected function getEditableConfigNames() {
return [];
}
public function buildForm(array $form, FormStateInterface $form_state) {
$form['account'] = array(
'#markup' => '<p>' . $this
->t('There are no settings yet.') . '</p>',
);
return $form;
}
}