search_api_location-8.x-1.0-alpha2/src/Annotation/LocationInput.php
src/Annotation/LocationInput.php
<?php
namespace Drupal\search_api_location\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a Location Input annotation.
*
* @see \Drupal\search_api_location\LocationInput\LocationInputPluginManager
* @see plugin_api
*
* @ingroup plugin_api
*
* @Annotation
*/
class LocationInput extends Plugin {
/**
* The Location Input plugin id.
*
* @var string
*/
public $id;
/**
* The human-readable name of the Location Input plugin.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $label;
/**
* The Location Input description.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $description;
}
