You are here

public static function SchemaPersonOrgBase::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

5 calls to SchemaPersonOrgBase::processedTestValue()
SchemaAnswerBase::processedTestValue in src/SchemaAnswerBase.php
Provide a test output value for the input value.
SchemaCreativeWorkBase::processedTestValue in src/SchemaCreativeWorkBase.php
Provide a test output value for the input value.
SchemaGovernmentServiceBase::processedTestValue in src/SchemaGovernmentServiceBase.php
Provide a test output value for the input value.
SchemaProgramMembershipBase::processedTestValue in src/SchemaProgramMembershipBase.php
Provide a test output value for the input value.
SchemaQuestionBase::processedTestValue in src/SchemaQuestionBase.php
Provide a test output value for the input value.

File

src/SchemaPersonOrgBase.php, line 79

Class

SchemaPersonOrgBase
Schema.org Person/Org items should extend this class.

Code

public static function processedTestValue($items) {
  foreach ($items as $key => $value) {
    switch ($key) {
      case 'url':
      case 'sameAs':
        $items[$key] = static::processTestExplodeValue($items[$key]);
        break;
      case 'logo':
        $items[$key] = SchemaImageBase::processedTestValue($items[$key]);
        break;
    }
  }
  return $items;
}