public function BrightcoveVideoSettingsForm::buildForm in Brightcove Video Connect 3.x
Same name and namespace in other branches
- 8.2 src/Form/BrightcoveVideoSettingsForm.php \Drupal\brightcove\Form\BrightcoveVideoSettingsForm::buildForm()
- 8 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\FormCode
public function buildForm(array $form, FormStateInterface $form_state) {
$form['BrightcoveVideo_settings']['#markup'] = 'Settings form for Brightcove Videos. Manage field settings here.';
return $form;
}