SchemaGeoBase.php in Schema.org Metatag 8
File
src/Plugin/metatag/Tag/SchemaGeoBase.php
View source
<?php
namespace Drupal\schema_metatag\Plugin\metatag\Tag;
class SchemaGeoBase extends SchemaNameBase {
use SchemaGeoTrait;
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
->geoForm($input_values);
if (empty($this
->multiple())) {
unset($form['pivot']);
}
return $form;
}
public static function testValue() {
$items = [];
$keys = [
'@type',
'latitude',
'longitude',
];
foreach ($keys as $key) {
switch ($key) {
case '@type':
$items[$key] = 'GeoCoordinates';
break;
default:
$items[$key] = parent::testDefaultValue(1, '');
break;
}
}
return $items;
}
}