HandheldFriendly.php in Metatag 8
Namespace
Drupal\metatag_mobile\Plugin\metatag\TagFile
metatag_mobile/src/Plugin/metatag/Tag/HandheldFriendly.phpView source
<?php
namespace Drupal\metatag_mobile\Plugin\metatag\Tag;
use Drupal\metatag\Plugin\metatag\Tag\MetaNameBase;
/**
* The Handheld Friendly for Mobile metatag.
*
* @MetatagTag(
* id = "handheldfriendly",
* label = @Translation("Handheld-Friendly"),
* description = @Translation("Some older mobile browsers will expect this meta tag to be set to 'true' to indicate that the site has been designed with mobile browsers in mind."),
* name = "HandheldFriendly",
* group = "mobile",
* weight = 83,
* type = "string",
* secure = FALSE,
* multiple = TRUE
* )
*/
class HandheldFriendly extends MetaNameBase {
}
Classes
Name | Description |
---|---|
HandheldFriendly | The Handheld Friendly for Mobile metatag. |