public function Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor::addTextToInfo in Rich Snippets 7
Implements Drupal_RichSnippets_SchemaPreprocessorAbstract::addTextToInfo().
Overrides Drupal_RichSnippets_SchemaPreprocessorInterface::addTextToInfo
File
- lib/
Drupal/ RichSnippets/ Apachesolr/ ApachesolrSchemaPreprocessor.php, line 169 - Contains Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor.
Class
- Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor
- Rich Snippets preprocessor for the Apache Solr Search Integration module.
Code
public function addTextToInfo($schema) {
foreach ($this
->getSchemaFields($schema) as $solr_field) {
$this->_variables['info_split'][$schema] = check_plain($solr_field[0]);
}
}