You are here

SchemaJobPostingQualifications.php in Schema.org Metatag 8.2

File

schema_job_posting/src/Plugin/metatag/Tag/SchemaJobPostingQualifications.php
View source
<?php

namespace Drupal\schema_job_posting\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'schema_job_posting_qualifications' 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_job_posting_qualifications",
 *   label = @Translation("qualifications"),
 *   description = @Translation("The necessary qualifications of the candidate."),
 *   name = "qualifications",
 *   group = "schema_job_posting",
 *   weight = 15,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE,
 *   property_type = "text",
 *   tree_parent = {},
 *   tree_depth = -1,
 * )
 */
class SchemaJobPostingQualifications extends SchemaNameBase {

}

Classes

Namesort descending Description
SchemaJobPostingQualifications Provides a plugin for the 'schema_job_posting_qualifications' meta tag.