You are here

class ViewsAccess in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Annotation/ViewsAccess.php \Drupal\views\Annotation\ViewsAccess
  2. 9 core/modules/views/src/Annotation/ViewsAccess.php \Drupal\views\Annotation\ViewsAccess

Defines a Plugin annotation object for views access plugins.

Hierarchy

Expanded class hierarchy of ViewsAccess

See also

\Drupal\views\Plugin\views\access\AccessPluginBase

Related topics

5 classes are annotated with ViewsAccess
CacheableMetadataCalculationTest in core/modules/views/tests/modules/views_test_cacheable_metadata_calculation/src/Plugin/views/access/CacheableMetadataCalculationTest.php
Tests plugin that reports when cacheable metadata is being calculated.
None in core/modules/views/src/Plugin/views/access/None.php
Access plugin that provides no access control at all.
Permission in core/modules/user/src/Plugin/views/access/Permission.php
Access plugin that provides permission-based access control.
Role in core/modules/user/src/Plugin/views/access/Role.php
Access plugin that provides role-based access control.
StaticTest in core/modules/views/tests/modules/views_test_data/src/Plugin/views/access/StaticTest.php
Tests a static access plugin.

File

core/modules/views/src/Annotation/ViewsAccess.php, line 14

Namespace

Drupal\views\Annotation
View source
class ViewsAccess extends ViewsPluginAnnotationBase {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The plugin title used in the views UI.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title = '';

  /**
   * (optional) The short title used in the views UI.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $short_title = '';

  /**
   * A short help string; this is displayed in the views UI.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $help = '';

  /**
   * The types of the display this plugin can be used with.
   *
   * For example the Feed display defines the type 'feed', so only rss style
   * and row plugins can be used in the views UI.
   *
   * @var array
   */
  public $display_types;

  /**
   * The base tables on which this access plugin can be used.
   *
   * If no base table is specified the plugin can be used with all tables.
   *
   * @var array
   */
  public $base;

  /**
   * Whether the plugin should be not selectable in the UI.
   *
   * If set to TRUE, you can still use it via the API in config files.
   *
   * @var bool
   */
  public $no_ui;

}

Members