function microdata_microdata_vocabulary_info in Microdata 7
Implements hook_microdata_vocabulary_info().
File
- ./
microdata.module, line 101
Code
function microdata_microdata_vocabulary_info() {
return array(
'schema_org' => array(
'label' => 'Schema.org',
'description' => t("Google, Bing, and Yahoo! supported terms for Rich Snippets, documented at !link.", array(
'!link' => l('Schema.org', 'http://schema.org'),
)),
'import_url' => 'http://schema.rdfs.org/all.json',
),
'google_schema_org_extensions' => array(
'label' => 'Google Schema.org Extensions',
'description' => t("Google's custom extensions to Schema.org, such as SoftwareApplication. These are not well documented.", array(
'!link' => l('http://schema.org', 'Schema.org'),
)),
'import_url' => 'http://lin-clark.com/api/vocbaulary/google-schemaorg',
),
);
}