You are here

Icon32x32.php in Metatag 8

File

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

namespace Drupal\metatag_favicons\Plugin\metatag\Tag;


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

  /**
   * {@inheritdoc}
   */
  protected function sizes() {
    return '32x32';
  }

}

Classes

Namesort descending Description
Icon32x32 The Favicons "icon_32x32" meta tag.