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