public function SchemaEntryPointBase::form in Schema.org Metatag 8
Generate a form element for this meta tag.
Parameters
array $element: The existing form element to attach to.
Return value
array The completed form element.
Overrides MetaNameBase::form
File
- src/
Plugin/ metatag/ Tag/ SchemaEntryPointBase.php, line 15
Class
- SchemaEntryPointBase
- Schema.org EntryPoint items should extend this class.
Namespace
Drupal\schema_metatag\Plugin\metatag\TagCode
public function form(array $element = []) {
$value = $this
->schemaMetatagManager()
->unserialize($this
->value());
$input_values = [
'title' => $this
->label(),
'description' => $this
->description(),
'value' => $value,
'#required' => isset($element['#required']) ? $element['#required'] : FALSE,
'visibility_selector' => $this
->visibilitySelector(),
];
$form = $this
->entryPointForm($input_values);
if (empty($this
->multiple())) {
unset($form['pivot']);
}
return $form;
}