Repository URL to install this package:
|
Version:
2.0.2 ▾
|
<?php
namespace Drupal\custom_forms\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a custom forms submission handler plugin annotation object.
*
* @Annotation
*/
class CustomFormsSubmissionHandler extends Plugin {
/**
* The custom forms field type ID.
*
* @var string
*/
public $id;
/**
* The custom forms field type name.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A short description of the custom forms field type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $description;
/**
* Whether the plugin has additional settings.
*
* @var bool
*/
public $has_settings;
}