You are here

ProfileUsername.php in Metatag 8

File

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

namespace Drupal\metatag_open_graph\Plugin\metatag\Tag;

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

/**
 * Provides a plugin for the 'profile:username' meta tag.
 *
 * @MetatagTag(
 *   id = "profile_username",
 *   label = @Translation("Username"),
 *   description = @Translation("A pseudonym / alias of this person."),
 *   name = "profile:username",
 *   group = "open_graph",
 *   weight = 45,
 *   type = "string",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class ProfileUsername extends MetaPropertyBase {

}

Classes

Namesort descending Description
ProfileUsername Provides a plugin for the 'profile:username' meta tag.