You are here

public function SearchContentForm::buildForm in Open Social 8.9

Same name and namespace in other branches
  1. 8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  2. 8.2 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  3. 8.3 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  4. 8.4 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  5. 8.5 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  6. 8.6 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  7. 8.7 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  8. 8.8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  9. 10.3.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  10. 10.0.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  11. 10.1.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
  12. 10.2.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()

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 FormInterface::buildForm

File

modules/social_features/social_search/src/Form/SearchContentForm.php, line 57

Class

SearchContentForm
Class SearchContentForm.

Namespace

Drupal\social_search\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['search_input_content'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Search Content'),
    '#title_display' => 'invisible',
    '#weight' => '0',
  ];
  $form['actions'] = [
    '#type' => 'actions',
    '#weight' => '10',
    'submit' => [
      '#type' => 'submit',
      '#value' => $this
        ->t('Search Content'),
    ],
  ];
  return $form;
}