hospital_management-8.x-1.x-dev/web/themes/bootstrap/src/Annotation/BootstrapProvider.php
web/themes/bootstrap/src/Annotation/BootstrapProvider.php
<?php
namespace Drupal\bootstrap\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a BootstrapProvider annotation object.
*
* Plugin Namespace: "Plugin/Provider".
*
* @see \Drupal\bootstrap\Plugin\ProviderInterface
* @see \Drupal\bootstrap\Plugin\ProviderManager
* @see \Drupal\bootstrap\Theme::getCdnProviders()
* @see \Drupal\bootstrap\Theme::getCdnProvider()
* @see plugin_api
*
* @Annotation
*
* @ingroup plugins_provider
*/
class BootstrapProvider extends Plugin {
/**
* An API URL used to retrieve data for the provider.
*
* @var string
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $api = '';
/**
* An array of CSS assets.
*
* @var array
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $css = [];
/**
* A description about the provider.
*
* @var string
*/
protected $description = '';
/**
* A flag determining whether or not the API request has failed.
*
* @var bool
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $error = FALSE;
/**
* A flag determining whether or not data has been manually imported.
*
* @var bool
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $imported = FALSE;
/**
* An array of JavaScript assets.
*
* @var array
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $js = [];
/**
* A human-readable label.
*
* @var string
*/
protected $label = '';
/**
* An associative array of minified CSS and JavaScript assets.
*
* @var array
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $min = ['css' => [], 'js' => []];
/**
* An array of themes supported by the provider.
*
* @var array
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $themes = [];
/**
* An array of versions supported by the provider.
*
* @var array
*
* @deprecated in 8.x-3.18, will be removed in a future release.
*/
protected $versions = [];
}
