public function SolrFieldType::getMinimumSolrVersion in Search API Solr 8.2
Gets the minimum Solr version that is supported by this Solr Field Type.
Return value
string A Solr version string.
Overrides SolrFieldTypeInterface::getMinimumSolrVersion
2 calls to SolrFieldType::getMinimumSolrVersion()
- SolrFieldType::getFieldTypeAsXml in src/
Entity/ SolrFieldType.php - Gets the Solr Field Type definition as XML fragment.
- SolrFieldType::getSolrConfigsAsXml in src/
Entity/ SolrFieldType.php - Gets the Solr Field Type specific additions to solrconfig.xml as XML.
File
- src/
Entity/ SolrFieldType.php, line 423
Class
- SolrFieldType
- Defines the SolrFieldType entity.
Namespace
Drupal\search_api_solr\EntityCode
public function getMinimumSolrVersion() {
return $this->minimum_solr_version;
}