public function Drupal_RichSnippets_Node_NodeSchemaPreprocessor::addDateToInfo in Rich Snippets 7
Implements Drupal_RichSnippets_SchemaPreprocessorAbstract::addDateToInfo().
Overrides Drupal_RichSnippets_SchemaPreprocessorInterface::addDateToInfo
File
- lib/
Drupal/ RichSnippets/ Node/ NodeSchemaPreprocessor.php, line 102 - Contains Drupal_RichSnippets_Node_NodeSchemaPreprocessor.
Class
- Drupal_RichSnippets_Node_NodeSchemaPreprocessor
- Rich Snippets preprocessor for the Node module.
Code
public function addDateToInfo($schema) {
foreach ($this
->getSchemaFields($schema) as $items) {
$timestamp = strtotime($items[0]['value']);
$this->_variables['info_split'][$schema] = format_date($timestamp, 'rich_snippets_event_date');
}
}