You are here

public static function SchemaPlaceBase::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 SchemaAddressBase::testValue

2 calls to SchemaPlaceBase::testValue()
SchemaContactPointBase::testValue in src/Plugin/metatag/Tag/SchemaContactPointBase.php
Provide a test input value for the property that will validate.
SchemaEventBase::testValue in src/Plugin/metatag/Tag/SchemaEventBase.php
Provide a test input value for the property that will validate.

File

src/Plugin/metatag/Tag/SchemaPlaceBase.php, line 39

Class

SchemaPlaceBase
Schema.org Place items should extend this class.

Namespace

Drupal\schema_metatag\Plugin\metatag\Tag

Code

public static function testValue() {
  $items = [];
  $keys = [
    '@type',
    'name',
    'url',
    'address',
    'geo',
  ];
  foreach ($keys as $key) {
    switch ($key) {
      case 'address':
        $items[$key] = SchemaAddressBase::testValue();
        break;
      case 'geo':
        $items[$key] = SchemaGeoBase::testValue();
        break;
      case '@type':
        $items[$key] = 'Place';
        break;
      default:
        $items[$key] = parent::testDefaultValue(2, ' ');
        break;
    }
  }
  return $items;
}