You are here

public function AbstractSolrEntity::getMinimumSolrVersion in Search API Solr 8.3

Same name and namespace in other branches
  1. 4.x src/Entity/AbstractSolrEntity.php \Drupal\search_api_solr\Entity\AbstractSolrEntity::getMinimumSolrVersion()

Gets the minimum Solr version that is supported by this Solr Field Type.

Return value

string A Solr version string.

Overrides SolrConfigInterface::getMinimumSolrVersion

5 calls to AbstractSolrEntity::getMinimumSolrVersion()
AbstractSolrEntity::getSolrConfigsAsXml in src/Entity/AbstractSolrEntity.php
Gets the Solr Field Type specific additions to solrconfig.xml as XML.
SolrCache::getAsXml in src/Entity/SolrCache.php
Gets the Solr Entity definition as XML fragment.
SolrFieldType::getSubFieldTypeAsXml in src/Entity/SolrFieldType.php
Serializes a filed type as XML fragment as required by Solr.
SolrRequestDispatcher::getAsXml in src/Entity/SolrRequestDispatcher.php
Gets the Solr Entity definition as XML fragment.
SolrRequestHandler::getAsXml in src/Entity/SolrRequestHandler.php
Gets the Solr Entity definition as XML fragment.

File

src/Entity/AbstractSolrEntity.php, line 194

Class

AbstractSolrEntity
Defines the abstract base class for Solr config entities.

Namespace

Drupal\search_api_solr\Entity

Code

public function getMinimumSolrVersion() {
  return $this->minimum_solr_version;
}