public static function SchemaSpeakableBase::processedTestValue in Schema.org Metatag 7
Provide a test output value for the input value.
Tags that return values in a different format than the input, like values that are exploded, should extend this method and return a valid value.
Value must be static so the test can retrieve the value without instantiating the class.
Parameters
mixed $items: The input value, either a string or an array.
Return value
mixed Return the correct output value.
Overrides SchemaNameBase::processedTestValue
File
- src/
SchemaSpeakableBase.php, line 67
Class
- SchemaSpeakableBase
- Schema.org Speakable items should extend this class.
Code
public static function processedTestValue($items) {
foreach ($items as $key => $value) {
switch ($key) {
case 'xpath':
case 'cssSelector':
$items[$key] = static::processTestExplodeValue($items[$key]);
break;
}
}
return $items;
}