You are here

SchemaCourseEducationalCredentialAwarded.php in Schema.org Metatag 8

File

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

namespace Drupal\schema_course\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_course_educational_credential_awarded' 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_educational_credential_awarded",
 *   label = @Translation("educationalCredentialAwarded"),
 *   description = @Translation("A description of the qualification, award, certificate, diploma or other educational credential awarded as a consequence of successful completion of this course."),
 *   name = "educationalCredentialAwarded",
 *   group = "schema_course",
 *   weight = -20,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class SchemaCourseEducationalCredentialAwarded extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaCourseEducationalCredentialAwarded Provides a plugin for the 'schema_course_educational_credential_awarded' tag.