You are here

OgAudioType.php in Metatag 8

File

metatag_open_graph/src/Plugin/metatag/Tag/OgAudioType.php
View source
<?php

namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaPropertyBase;

/**
 * Provides a plugin for the 'og:audio:type' meta tag.
 *
 * @MetatagTag(
 *   id = "og_audio_type",
 *   label = @Translation("Audio type"),
 *   description = @Translation("The MIME type of the audio file. Examples include 'application/mp3' for an MP3 file."),
 *   name = "og:audio:type",
 *   group = "open_graph",
 *   weight = 41,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class OgAudioType extends MetaPropertyBase {

}

Classes

Namesort descending Description
OgAudioType Provides a plugin for the 'og:audio:type' meta tag.