function SearchExtraTypeSearch::buildConfigurationForm

Same name and namespace in other branches
  1. 9 core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php \Drupal\search_extra_type\Plugin\Search\SearchExtraTypeSearch::buildConfigurationForm()
  2. 8.9.x core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php \Drupal\search_extra_type\Plugin\Search\SearchExtraTypeSearch::buildConfigurationForm()
  3. 10 core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php \Drupal\search_extra_type\Plugin\Search\SearchExtraTypeSearch::buildConfigurationForm()

Overrides PluginFormInterface::buildConfigurationForm

File

core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php, line 92

Class

SearchExtraTypeSearch
Executes a dummy keyword search.

Namespace

Drupal\search_extra_type\Plugin\Search

Code

public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    // Output form for defining rank factor weights.
    $form['extra_type_settings'] = [
        '#type' => 'fieldset',
        '#title' => $this->t('Extra type settings'),
        '#tree' => TRUE,
    ];
    $form['extra_type_settings']['boost'] = [
        '#type' => 'select',
        '#title' => $this->t('Boost method'),
        '#options' => [
            'bi' => $this->t('Bistro mathematics'),
            'ii' => $this->t('Infinite Improbability'),
        ],
        '#default_value' => $this->configuration['boost'],
    ];
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.