public function SearchContentForm::buildForm in Open Social 8.7
Same name and namespace in other branches
- 8.9 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.2 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.3 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.4 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.5 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.6 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 8.8 modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 10.3.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 10.0.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 10.1.x modules/social_features/social_search/src/Form/SearchContentForm.php \Drupal\social_search\Form\SearchContentForm::buildForm()
- 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\FormCode
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;
}