sports_league-8.x-1.x-dev/modules/sl_admin_ui/src/Annotation/SLAdminUIWidget.php
modules/sl_admin_ui/src/Annotation/SLAdminUIWidget.php
<?php
namespace Drupal\sl_admin_ui\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a SL Admin UI Widget plugin annotation object.
*
* @Annotation
*/
class SLAdminUIWidget extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The name of the widget.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $name;
/**
* The bundle with this plugin.
*
* It must implement \Drupal\reusable_forms\Form\ReusableFormInterface.
*
* @var string
*/
public $bundle;
}
