You are here

public function AbstractSolrEntity::getSolrConfigs in Search API Solr 4.x

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

Gets the Solr Field Type specific additions to solrconfig.xml as array.

Return value

array The Solr Field Type specific additions to solrconfig.xml as nested associative array.

Overrides SolrConfigInterface::getSolrConfigs

1 method overrides AbstractSolrEntity::getSolrConfigs()
SolrFieldType::getSolrConfigs in src/Entity/SolrFieldType.php
Gets the Solr Field Type specific additions to solrconfig.xml as array.

File

src/Entity/AbstractSolrEntity.php, line 159

Class

AbstractSolrEntity
Defines the abstract base class for Solr config entities.

Namespace

Drupal\search_api_solr\Entity

Code

public function getSolrConfigs() {
  return $this->solr_configs;
}