public static function SchemaPersonOrgBase::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
5 calls to SchemaPersonOrgBase::testValue()
- SchemaAnswerBase::testValue in src/
SchemaAnswerBase.php - Provide a test input value for the property that will validate.
- SchemaCreativeWorkBase::testValue in src/
SchemaCreativeWorkBase.php - Provide a test input value for the property that will validate.
- SchemaGovernmentServiceBase::testValue in src/
SchemaGovernmentServiceBase.php - Provide a test input value for the property that will validate.
- SchemaProgramMembershipBase::testValue in src/
SchemaProgramMembershipBase.php - Provide a test input value for the property that will validate.
- SchemaQuestionBase::testValue in src/
SchemaQuestionBase.php - Provide a test input value for the property that will validate.
File
- src/
SchemaPersonOrgBase.php, line 40
Class
- SchemaPersonOrgBase
- Schema.org Person/Org items should extend this class.
Code
public static function testValue() {
$items = [];
$keys = [
'@type',
'@id',
'name',
'url',
'sameAs',
'logo',
];
foreach ($keys as $key) {
switch ($key) {
case 'pivot':
break;
case 'logo':
$items[$key] = SchemaImageBase::testValue();
break;
case '@type':
$items[$key] = 'Organization';
break;
case 'url':
case 'sameAs':
$items[$key] = static::randomUrl() . ',' . static::randomUrl() . ',' . static::randomUrl();
default:
$items[$key] = parent::testDefaultValue(2, ' ');
break;
}
}
return $items;
}