You are here

IPEAccess.php in Panels 8.3

Same filename and directory in other branches
  1. 8.4 panels_ipe/src/Annotation/IPEAccess.php

File

panels_ipe/src/Annotation/IPEAccess.php
View source
<?php

/**
 * @file
 * Contains \Drupal\panels_ipe\Annotation\IPEAccess.
 */
namespace Drupal\panels_ipe\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a IPE Access item annotation object.
 *
 * @see \Drupal\panels_ipe\Plugin\IPEAccessManager
 * @see plugin_api
 *
 * @Annotation
 */
class IPEAccess extends Plugin {

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

  /**
   * The label of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

}

Classes

Namesort descending Description
IPEAccess Defines a IPE Access item annotation object.