Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / fixtures / drupal7 / modules / behat_test / behat_test.features.taxonomy.inc
1 <?php
2 /**
3  * @file
4  * behat_test.features.taxonomy.inc
5  */
6
7 /**
8  * Implements hook_taxonomy_default_vocabularies().
9  */
10 function behat_test_taxonomy_default_vocabularies() {
11   return array(
12     'tags' => array(
13       'name' => 'Tags',
14       'machine_name' => 'tags',
15       'description' => 'Use tags to group articles on similar topics into categories.',
16       'hierarchy' => 0,
17       'module' => 'taxonomy',
18       'weight' => 0,
19       'rdf_mapping' => array(
20         'rdftype' => array(
21           0 => 'skos:ConceptScheme',
22         ),
23         'name' => array(
24           'predicates' => array(
25             0 => 'dc:title',
26           ),
27         ),
28         'description' => array(
29           'predicates' => array(
30             0 => 'rdfs:comment',
31           ),
32         ),
33       ),
34     ),
35   );
36 }