You are here

public static function SchemaSpeakableBase::testValue in Schema.org Metatag 8

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

File

src/Plugin/metatag/Tag/SchemaSpeakableBase.php, line 38

Class

SchemaSpeakableBase
Schema.org Speakable items should extend this class.

Namespace

Drupal\schema_metatag\Plugin\metatag\Tag

Code

public static function testValue() {
  $items = [];
  $keys = [
    '@type',
    'xpath',
    'cssSelector',
  ];
  foreach ($keys as $key) {
    switch ($key) {
      case 'pivot':
        break;
      case '@type':
        $items[$key] = 'SpeakableSpecification';
        break;
      case 'xpath':
        $items[$key] = '/html/head/title,/html/head/meta[@name=\'description\']/@content';
        break;
    }
  }
  return $items;
}