
| Current Path : /var/www/html/12park/web/modules/contrib/webform/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/12park/web/modules/contrib/webform/src/Annotation/WebformSourceEntity.php |
<?php
namespace Drupal\webform\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a webform source entity annotation object.
*
* Plugin Namespace: Plugin\WebformSourceEntity.
*
* For a working example, see
* \Drupal\webform\Plugin\WebformSourceEntity\QueryStringWebformSourceEntity
*
* @see hook_webform_source_entity_info()
* @see \Drupal\webform\Plugin\WebformSourceEntityInterface
* @see \Drupal\webform\Plugin\WebformSourceEntityManager
* @see \Drupal\webform\Plugin\WebformSourceEntityManagerInterface
* @see plugin_api
*
* @Annotation
*/
class WebformSourceEntity extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* A brief description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description = '';
/**
* Weight (priority) of the plugin.
*
* @var int
*/
public $weight = 0;
/**
* The element's module dependencies.
*
* @var array
*
* @see webform_webform_element_info_alter()
*/
public $dependencies = [];
}