annotate vendor/chi-teck/drupal-code-generator/templates/d8/hook/rdf_namespaces.twig @ 4:a9cd425dd02b
Update, including to Drupal core 8.6.10
author |
Chris Cannam |
date |
Thu, 28 Feb 2019 13:11:55 +0000 |
parents |
c75dbcec494b |
children |
|
rev |
line source |
Chris@0
|
1 /**
|
Chris@0
|
2 * Implements hook_rdf_namespaces().
|
Chris@0
|
3 */
|
Chris@0
|
4 function {{ machine_name }}_rdf_namespaces() {
|
Chris@0
|
5 return [
|
Chris@0
|
6 'content' => 'http://purl.org/rss/1.0/modules/content/',
|
Chris@0
|
7 'dc' => 'http://purl.org/dc/terms/',
|
Chris@0
|
8 'foaf' => 'http://xmlns.com/foaf/0.1/',
|
Chris@0
|
9 'og' => 'http://ogp.me/ns#',
|
Chris@0
|
10 'rdfs' => 'http://www.w3.org/2000/01/rdf-schema#',
|
Chris@0
|
11 'sioc' => 'http://rdfs.org/sioc/ns#',
|
Chris@0
|
12 'sioct' => 'http://rdfs.org/sioc/types#',
|
Chris@0
|
13 'skos' => 'http://www.w3.org/2004/02/skos/core#',
|
Chris@0
|
14 'xsd' => 'http://www.w3.org/2001/XMLSchema#',
|
Chris@0
|
15 ];
|
Chris@0
|
16 }
|