You are here

public function TwitterProfileEntitySettingsForm::buildForm in Tweet Feed 4.x

Same name and namespace in other branches
  1. 8.3 src/Form/TwitterProfileEntitySettingsForm.php \Drupal\tweet_feed\Form\TwitterProfileEntitySettingsForm::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/TwitterProfileEntitySettingsForm.php, line 48

Class

TwitterProfileEntitySettingsForm
Class TweetEntitySettingsForm.

Namespace

Drupal\tweet_feed\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['tweetprofileentity_settings']['#markup'] = 'Settings form for Twitter Profile entity entities. Manage field settings here.';
  return $form;
}