You are here

Yandex.php in Metatag 8

File

metatag_verification/src/Plugin/metatag/Tag/Yandex.php
View source
<?php

namespace Drupal\metatag_verification\Plugin\metatag\Tag;

use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;

/**
 * Provides a plugin for the 'yandex-verification' meta tag.
 *
 * @MetatagTag(
 *   id = "yandex",
 *   label = @Translation("Yandex"),
 *   description = @Translation("A string provided by <a href=':yandex'>Yandex</a>, full details are available from the <a href=':verify_url'>Yandex online help</a>.", arguments = { ":yandex" = "https://www.yandex.com/", ":verify_url" = "https://webmaster.yandex.com/" }),
 *   name = "yandex-verification",
 *   group = "site_verification",
 *   weight = 8,
 *   type = "label",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class Yandex extends MetaNameBase {

}

Classes

Namesort descending Description
Yandex Provides a plugin for the 'yandex-verification' meta tag.