
| Current Path : /var/www/html_old/12park.008/web/modules/simple_sitemap/src/Annotation/ |
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/html_old/12park.008/web/modules/simple_sitemap/src/Annotation/UrlGenerator.php |
<?php
namespace Drupal\simple_sitemap\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a UrlGenerator item annotation object.
*
* @package Drupal\simple_sitemap\Annotation
*
* @see \Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator\UrlGeneratorManager
* @see plugin_api
*
* @Annotation
*/
class UrlGenerator extends Plugin {
/**
* The generator ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the generator.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A short description of the generator.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $description;
/**
* Default generator settings.
*
* @var array
*/
public $settings = [];
}