public static function SchemaAddressBase::testValue in Schema.org Metatag 8
Provide a test input value for the property that will validate.
Tags like @type that contain values other than simple strings, for instance a list of allowed options, should extend this method and return a valid value.
Value must be static so the test can retrieve the value without instantiating the class.
Return value
mixed Return the test value, either a string or array, depending on the property.
Overrides SchemaNameBase::testValue
1 call to SchemaAddressBase::testValue()
- SchemaPlaceBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaPlaceBase.php - Provide a test input value for the property that will validate.
1 method overrides SchemaAddressBase::testValue()
- SchemaPlaceBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaPlaceBase.php - Provide a test input value for the property that will validate.
File
- src/
Plugin/ metatag/ Tag/ SchemaAddressBase.php, line 38
Class
- SchemaAddressBase
- Schema.org PostalAddress items should extend this class.
Namespace
Drupal\schema_metatag\Plugin\metatag\TagCode
public static function testValue() {
$items = [];
$keys = [
'@type',
'streetAddress',
'addressLocality',
'addressRegion',
'postalCode',
'addressCountry',
];
foreach ($keys as $key) {
switch ($key) {
case '@type':
$items[$key] = 'PostalAddress';
break;
default:
$items[$key] = parent::testDefaultValue(2, ' ');
break;
}
}
return $items;
}