public static function SchemaEntryPointBase::testValue in Schema.org Metatag 7
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 SchemaEntryPointBase::testValue()
- SchemaActionBase::testValue in src/
SchemaActionBase.php - Provide a test input value for the property that will validate.
File
- src/
SchemaEntryPointBase.php, line 40
Class
- SchemaEntryPointBase
- Schema.org EntryPoint items should extend this class.
Code
public static function testValue() {
$items = [];
$keys = [
'@type',
'urlTemplate',
'actionPlatform',
'inLanguage',
];
foreach ($keys as $key) {
switch ($key) {
case '@type':
$items[$key] = 'EntryPoint';
break;
case 'urlTemplate':
case 'actionPlatform':
case 'inLanguage':
$items[$key] = parent::testDefaultValue(3, ',');
default:
$items[$key] = parent::testDefaultValue(1, '');
break;
}
}
return $items;
}