You are here

AppleTouchIconPrecomposed114x114.php in Metatag 8

File

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

namespace Drupal\metatag_favicons\Plugin\metatag\Tag;


/**
 * The Favicons "apple-touch-icon-precomposed_114x114" meta tag.
 *
 * @MetatagTag(
 *   id = "apple_touch_icon_precomposed_114x114",
 *   label = @Translation("Apple touch icon (precomposed): 114px x 114px"),
 *   description = @Translation("A PNG image that is 114px wide by 114px high. Used with iPhone with @2x display running iOS <= 6."),
 *   name = "apple-touch-icon-precomposed",
 *   group = "favicons",
 *   weight = 18,
 *   type = "image",
 *   secure = FALSE,
 *   multiple = FALSE
 * )
 */
class AppleTouchIconPrecomposed114x114 extends LinkSizesBase {

  /**
   * {@inheritdoc}
   */
  protected function sizes() {
    return '114x114';
  }

}

Classes

Namesort descending Description
AppleTouchIconPrecomposed114x114 The Favicons "apple-touch-icon-precomposed_114x114" meta tag.