search_api-8.x-1.15/src/Annotation/SearchApiDisplay.php
src/Annotation/SearchApiDisplay.php
<?php namespace Drupal\search_api\Annotation; use Drupal\Component\Annotation\Plugin; /** * Defines a Search API display annotation object. * * @see \Drupal\search_api\Display\DisplayPluginManager * @see \Drupal\search_api\Display\DisplayInterface * @see \Drupal\search_api\Display\DisplayPluginBase * @see plugin_api * * @Annotation */ class SearchApiDisplay extends Plugin { /** * The display plugin ID. * * @var string */ public $id; /** * The human-readable name of the display plugin. * * @ingroup plugin_translatable * * @var \Drupal\Core\Annotation\Translation */ public $label; /** * The human-readable description for the display plugin. * * @ingroup plugin_translatable * * @var \Drupal\Core\Annotation\Translation */ public $description; /** * The ID of the display's index. * * @var string */ public $index; /** * The path to the search display, if any. * * @var string|null */ public $path; }