public static function SchemaImageBase::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
4 calls to SchemaImageBase::testValue()
- SchemaBrandBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaBrandBase.php - Provide a test input value for the property that will validate.
- SchemaHowToStepBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaHowToStepBase.php - Provide a test input value for the property that will validate.
- SchemaPersonOrgBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaPersonOrgBase.php - Provide a test input value for the property that will validate.
- SchemaProgramMembershipBase::testValue in src/
Plugin/ metatag/ Tag/ SchemaProgramMembershipBase.php - Provide a test input value for the property that will validate.
File
- src/
Plugin/ metatag/ Tag/ SchemaImageBase.php, line 39
Class
- SchemaImageBase
- Schema.org Image items should extend this class.
Namespace
Drupal\schema_metatag\Plugin\metatag\TagCode
public static function testValue() {
$items = [];
$keys = [
'@type',
'representativeOfPage',
'url',
'width',
'height',
];
foreach ($keys as $key) {
switch ($key) {
case '@type':
$items[$key] = 'ImageObject';
break;
case 'representativeOfPage':
$items[$key] = 'True';
break;
default:
$items[$key] = parent::testDefaultValue(1, '');
break;
}
}
return $items;
}