
| Current Path : /var/www/html1/testsite/web/modules/contrib/metatag/templates/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/testsite/web/modules/contrib/metatag/templates/tag.php.twig |
{% extends "generator.php.twig" %}
{% block prefix %}{{ prefix }}
{% endblock %}
{% block namespace_class %}
namespace Drupal\{{ module }}\Plugin\metatag\Tag;
{% endblock %}
{% block use_class %}
use Drupal\metatag\Plugin\metatag\Tag\{{ base_class }};
{% endblock %}
{% block class_declaration %}
/**
* Provides a plugin for the '{{ name }}' meta tag.
*
* @MetatagTag(
* id = "{{ plugin_id }}",
* label = @Translation("{{ label }}"),
* description = @Translation("{{ description }}"),
* name = "{{ name }}",
* group = "{{ group }}",
* weight = {{ weight }},
* type = "{{ type }}",
* secure = {{ secure }},
* multiple = {{ multiple }}
* )
*/
class {{ class_name }} extends {{ base_class }} {% endblock %}