You are here

public function SettingsForm::buildForm in Quote 8.2

Form constructor.

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 The form structure.

Overrides ConfigFormBase::buildForm

File

src/Form/SettingsForm.php, line 74

Class

SettingsForm
Class Settings Form.

Namespace

Drupal\quote\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $config = $this
    ->config('quote.settings');
  $form['modes'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Select quote modes'),
  ];
  $form['modes']['quote_modes_quote_sel'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Quote selected'),
    '#default_value' => $config
      ->get('quote_modes_quote_sel'),
  ];
  $form['modes']['quote_modes_quote_all'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Quote all'),
    '#default_value' => $config
      ->get('quote_modes_quote_all'),
  ];
  $form['modes']['quote_modes_quote_reply_all'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Quote and reply all'),
    '#default_value' => $config
      ->get('quote_modes_quote_reply_all'),
  ];
  $form['modes']['quote_modes_quote_reply_sel'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Quote and reply selected'),
    '#default_value' => $config
      ->get('quote_modes_quote_reply_sel'),
    '#disabled' => TRUE,
  ];
  $form['where'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Allow quotes in the:'),
  ];
  $form['where']['quote_allow_types'] = [
    '#type' => 'checkboxes',
    '#title' => $this
      ->t('Content types'),
    '#options' => node_type_get_names(),
    '#default_value' => $config
      ->get('quote_allow_types'),
  ];
  $form['where']['quote_allow_comments'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('Comments'),
    '#description' => $this
      ->t('Checkbox works if node type allow quoting'),
    '#default_value' => $config
      ->get('quote_allow_comments'),
  ];
  $form['ckeditor_support_set'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('CKEditor support'),
  ];
  $form['ckeditor_support_set']['quote_ckeditor_support'] = [
    '#type' => 'checkbox',
    '#title' => $this
      ->t('CKEditor support'),
    '#description' => $this
      ->t('If checkbox checked and CKEditor found on the page, CKEditor will have a priority'),
    '#default_value' => $config
      ->get('quote_ckeditor_support'),
    '#disabled' => !$this->moduleHandler
      ->moduleExists('ckeditor'),
  ];
  $form['other'] = [
    '#type' => 'fieldset',
    '#title' => $this
      ->t('Other settings'),
  ];
  $form['other']['quote_selector'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('CSS selector of your comment form textarea (where you write new comments)'),
    '#description' => $this
      ->t('By default it is: #comment-form textarea'),
    '#default_value' => $config
      ->get('quote_selector'),
  ];
  $form['other']['quote_selector_comment_quote_all'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('CSS selector of your comment body class (where you quote all)'),
    '#description' => $this
      ->t('By default it is: .field--name-comment-body'),
    '#default_value' => $config
      ->get('quote_selector_comment_quote_all'),
  ];
  $form['other']['quote_selector_node_quote_all'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('CSS selector of your node body class (where you quote all)'),
    '#description' => $this
      ->t('By default it is: .field--name-body'),
    '#default_value' => $config
      ->get('quote_selector_node_quote_all'),
  ];
  $form['other']['quote_limit'] = [
    '#type' => 'number',
    '#title' => $this
      ->t('Quote limit'),
    '#default_value' => $config
      ->get('quote_limit'),
    '#max' => 9999,
    '#min' => 1,
  ];
  return parent::buildForm($form, $form_state);
}