You are here

public function BrightcoveVideoSettingsForm::buildForm in Brightcove Video Connect 8

Same name and namespace in other branches
  1. 8.2 src/Form/BrightcoveVideoSettingsForm.php \Drupal\brightcove\Form\BrightcoveVideoSettingsForm::buildForm()
  2. 3.x src/Form/BrightcoveVideoSettingsForm.php \Drupal\brightcove\Form\BrightcoveVideoSettingsForm::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

src/Form/BrightcoveVideoSettingsForm.php, line 32

Class

BrightcoveVideoSettingsForm
Builds form for video settings.

Namespace

Drupal\brightcove\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form['BrightcoveVideo_settings']['#markup'] = 'Settings form for Brightcove Videos. Manage field settings here.';
  return $form;
}