Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / views / src / Annotation / ViewsQuery.php
1 <?php
2
3 namespace Drupal\views\Annotation;
4
5 /**
6  * Defines a Plugin annotation object for views query plugins.
7  *
8  * @see \Drupal\views\Plugin\views\query\QueryPluginBase
9  *
10  * @ingroup views_query_plugins
11  *
12  * @Annotation
13  */
14 class ViewsQuery extends ViewsPluginAnnotationBase {
15
16   /**
17    * The plugin ID.
18    *
19    * @var string
20    */
21   public $id;
22
23   /**
24    * The plugin title used in the views UI.
25    *
26    * @var \Drupal\Core\Annotation\Translation
27    *
28    * @ingroup plugin_translatable
29    */
30   public $title = '';
31
32   /**
33    * (optional) The short title used in the views UI.
34    *
35    * @var \Drupal\Core\Annotation\Translation
36    *
37    * @ingroup plugin_translatable
38    */
39   public $short_title = '';
40
41   /**
42    * A short help string; this is displayed in the views UI.
43    *
44    * @var \Drupal\Core\Annotation\Translation
45    *
46    * @ingroup plugin_translatable
47    */
48   public $help = '';
49
50   /**
51    * Whether the plugin should be not selectable in the UI.
52    *
53    * If it's set to TRUE, you can still use it via the API in config files.
54    *
55    * @var bool
56    */
57   public $no_ui;
58
59 }