You are here

Icon96x96.php in Metatag 8

File

metatag_favicons/src/Plugin/metatag/Tag/Icon96x96.php
View source
<?php

namespace Drupal\metatag_favicons\Plugin\metatag\Tag;


/**
 * The Favicons "icon_96x96" meta tag.
 *
 * @MetatagTag(
 *   id = "icon_96x96",
 *   label = @Translation("Icon: 96px x 96px"),
 *   description = @Translation("A PNG image that is 96px wide by 96px high."),
 *   name = "icon",
 *   group = "favicons",
 *   weight = 5,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class Icon96x96 extends LinkSizesBase {

  /**
   * {@inheritdoc}
   */
  protected function sizes() {
    return '96x96';
  }

}

Classes

Namesort descending Description
Icon96x96 The Favicons "icon_96x96" meta tag.