public function AdFormatter::settingsForm in Facebook Instant Articles 3.x
Same name and namespace in other branches
- 8.2 src/Plugin/Field/FieldFormatter/AdFormatter.php \Drupal\fb_instant_articles\Plugin\Field\FieldFormatter\AdFormatter::settingsForm()
Returns a form to configure settings for the formatter.
Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase to allow administrators to configure the formatter. The field_ui module takes care of handling submitted form values.
Parameters
array $form: The form where the settings form is being included in.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form elements for the formatter settings.
Overrides FormatterBase::settingsForm
1 call to AdFormatter::settingsForm()
- AdLinkFormatter::settingsForm in src/
Plugin/ Field/ FieldFormatter/ AdLinkFormatter.php - Returns a form to configure settings for the formatter.
1 method overrides AdFormatter::settingsForm()
- AdLinkFormatter::settingsForm in src/
Plugin/ Field/ FieldFormatter/ AdLinkFormatter.php - Returns a form to configure settings for the formatter.
File
- src/
Plugin/ Field/ FieldFormatter/ AdFormatter.php, line 42
Class
- AdFormatter
- Plugin implementation of the 'fbia_ad' formatter.
Namespace
Drupal\fb_instant_articles\Plugin\Field\FieldFormatterCode
public function settingsForm(array $form, FormStateInterface $form_state) {
$element['source_type'] = [
'#type' => 'select',
'#title' => $this
->t('Source type'),
'#description' => $this
->t('Add your tracker specifying the URL or embed the full unescaped HTML'),
'#default_value' => $this
->getSetting('source_type'),
'#options' => [
self::SOURCE_TYPE_URL => $this
->t('URL'),
self::SOURCE_TYPE_HTML => $this
->t('Embedded HTML'),
],
];
$element['height'] = [
'#type' => 'number',
'#title' => $this
->t('Height'),
'#description' => $this
->t('Height of the iframe element.'),
'#default_value' => $this
->getSetting('height'),
];
$element['width'] = [
'#type' => 'number',
'#title' => $this
->t('Width'),
'#description' => $this
->t('Width of the iframe element.'),
'#default_value' => $this
->getSetting('width'),
];
return $element;
}