public function TweetEntitySettingsForm::buildForm in Tweet Feed 8.3
Same name and namespace in other branches
- 4.x src/Form/TweetEntitySettingsForm.php \Drupal\tweet_feed\Form\TweetEntitySettingsForm::buildForm()
Defines the settings form for Tweet entity entities.
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 Form definition array.
Overrides FormInterface::buildForm
File
- src/
Form/ TweetEntitySettingsForm.php, line 48
Class
- TweetEntitySettingsForm
- Class TweetEntitySettingsForm.
Namespace
Drupal\tweet_feed\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['tweet_entity_settings']['#markup'] = 'Settings form for Tweet entity entities. Manage field settings here.';
return $form;
}