IPEAccess.php in Panels 8.3
Same filename and directory in other branches
Contains \Drupal\panels_ipe\Annotation\IPEAccess.
Namespace
Drupal\panels_ipe\AnnotationFile
panels_ipe/src/Annotation/IPEAccess.phpView 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;
}