preview_site-1.1.2/src/Annotation/PreviewSiteDeploy.php
src/Annotation/PreviewSiteDeploy.php
<?php
namespace Drupal\preview_site\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines an annotation for preview site deploy strategies.
*
* Plugin Namespace: Plugin\PreviewSite\Deploy.
*
* @see \Drupal\preview_site\Deploy\DeployPluginManager
* @see \Drupal\preview_site\Deploy\DeployPluginInterface
* @see \Drupal\preview_site\Deploy\DeployPluginBase
* @see plugin_api
*
* @Annotation
*/
class PreviewSiteDeploy extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The name of the provider that owns the plugin.
*
* @var string
*/
public $provider;
/**
* The human-readable name of the plugin.
*
* This is used as an administrative summary of what the plugin does.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $title;
/**
* Additional administrative information about the plugin's behavior.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description = '';
}
