function node_search_result_schema in Rich Snippets 7
Implements hook_rich_snippets_get_schema().
Implemented on behalf of the Node module.
Return value
string|FALSE
File
- ./
rich_snippets.module, line 122 - Overrides the standard search results templates and CSS to display results similar to major search engines.
Code
function node_search_result_schema($result) {
return rich_snippets_get_result_schema('node', $result['node']->type);
}