You are here

public function Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor::addDateToInfo in Rich Snippets 7

Implements Drupal_RichSnippets_SchemaPreprocessorAbstract::addDateToInfo().

Overrides Drupal_RichSnippets_SchemaPreprocessorInterface::addDateToInfo

File

lib/Drupal/RichSnippets/Apachesolr/ApachesolrSchemaPreprocessor.php, line 159
Contains Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor.

Class

Drupal_RichSnippets_Apachesolr_ApachesolrSchemaPreprocessor
Rich Snippets preprocessor for the Apache Solr Search Integration module.

Code

public function addDateToInfo($schema) {
  foreach ($this
    ->getSchemaFields($schema) as $solr_field) {
    $timestamp = strtotime($solr_field[0]);
    $this->_variables['info_split'][$schema] = format_date($timestamp, 'rich_snippets_event_date');
  }
}