You are here

SchemaCourseProvider.php in Schema.org Metatag 8

Same filename and directory in other branches
  1. 8.2 schema_course/src/Plugin/metatag/Tag/SchemaCourseProvider.php

File

schema_course/src/Plugin/metatag/Tag/SchemaCourseProvider.php
View source
<?php

namespace Drupal\schema_course\Plugin\metatag\Tag;

use Drupal\schema_metatag\Plugin\metatag\Tag\SchemaPersonOrgBase;

/**
 * Provides a plugin for the 'schema_course_provider' meta tag.
 *
 * - 'id' should be a globally unique id.
 * - 'name' should match the Schema.org element name.
 * - 'group' should match the id of the group that defines the Schema.org type.
 *
 * @MetatagTag(
 *   id = "schema_course_provider",
 *   label = @Translation("provider"),
 *   description = @Translation("RECOMMENDED BY GOOGLE. The provider of the course."),
 *   name = "provider",
 *   group = "schema_course",
 *   weight = -35,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = TRUE
 * )
 */
class SchemaCourseProvider extends SchemaPersonOrgBase {

}

Classes

Namesort descending Description
SchemaCourseProvider Provides a plugin for the 'schema_course_provider' meta tag.