visualn-8.x-1.x-dev/src/Annotation/VisualNAdapter.php
src/Annotation/VisualNAdapter.php
<?php
namespace Drupal\visualn\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a VisualN Adapter item annotation object.
*
* @see \Drupal\visualn\Manager\AdapterManager
* @see plugin_api
*
* @Annotation
*/
class VisualNAdapter extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The label of the plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The data input type of the plugin.
*
* @var string
*/
public $input = '';
/**
* The data output type of the plugin.
*
* @var string
*/
public $output = 'generic_js_data_array';
}
