You are here

public static function SchemaMetatagTestAction::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 SchemaActionBase::testValue

File

tests/modules/schema_metatag_test/src/Plugin/metatag/Tag/SchemaMetatagTestAction.php, line 40

Class

SchemaMetatagTestAction
A metatag tag for testing.

Namespace

Drupal\schema_metatag_test\Plugin\metatag\Tag

Code

public static function testValue() {
  $items = [];
  $keys = [
    '@type',
    'result',
    'target',
  ];
  foreach ($keys as $key) {
    switch ($key) {
      case '@type':
        $items[$key] = 'OrganizeAction';
        break;
      case 'target':
        $items[$key] = SchemaEntryPointBase::testValue();
        break;
      case 'result':
        $items[$key] = SchemaThingBase::testValue();
        break;
      default:
        $items[$key] = parent::testDefaultValue(1, '');
        break;
    }
  }
  return $items;
}