You are here

function rich_snippets_preprocess_search_result_event_schema in Rich Snippets 7

Implements preprocess_search_result_SCHEMA_schema() for event.

Supported properties:

  • image
  • startDate
  • location

Unsupported properties:

  • attendee
  • attendees
  • duration
  • endDate
  • offers
  • performer
  • performers
  • subEvent
  • subEvents
  • superEvent

File

./rich_snippets.preprocess.inc, line 49
Rich Snippets preprocess hook implementations.

Code

function rich_snippets_preprocess_search_result_event_schema(&$variables, Drupal_RichSnippets_SchemaPreprocessorInterface $preprocessor) {
  $preprocessor
    ->addImage('image');
  $preprocessor
    ->addDateToInfo('startDate');
  $preprocessor
    ->addTextToInfo('location');
}