Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / rdf_namespaces.twig
1 /**
2  * Implements hook_rdf_namespaces().
3  */
4 function {{ machine_name }}_rdf_namespaces() {
5   return [
6     'content'  => 'http://purl.org/rss/1.0/modules/content/',
7     'dc'       => 'http://purl.org/dc/terms/',
8     'foaf'     => 'http://xmlns.com/foaf/0.1/',
9     'og'       => 'http://ogp.me/ns#',
10     'rdfs'     => 'http://www.w3.org/2000/01/rdf-schema#',
11     'sioc'     => 'http://rdfs.org/sioc/ns#',
12     'sioct'    => 'http://rdfs.org/sioc/types#',
13     'skos'     => 'http://www.w3.org/2004/02/skos/core#',
14     'xsd'      => 'http://www.w3.org/2001/XMLSchema#',
15   ];
16 }