public SearchPageFormBase::buildForm(array $form, FormStateInterface $form_state)
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 EntityForm::buildForm
File
- core/modules/search/src/Form/SearchPageFormBase.php, line 78
Class
- SearchPageFormBase
- Provides a base form for search pages.
Namespace
Drupal\search\Form
Code
public function buildForm(array $form, FormStateInterface $form_state) { $this->plugin = $this->entity->getPlugin(); return parent::buildForm($form, $form_state); }
Please login to continue.