OgDeleteOrphans.php in Organic groups 8
Namespace
Drupal\og\AnnotationFile
src/Annotation/OgDeleteOrphans.phpView source
<?php
declare (strict_types=1);
namespace Drupal\og\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a OgDeleteOrphans annotation object.
*
* @Annotation
*/
class OgDeleteOrphans 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 short description of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
Classes
Name | Description |
---|---|
OgDeleteOrphans | Defines a OgDeleteOrphans annotation object. |