Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-extension / fixtures / drupal7 / modules / behat_test / behat_test.features.taxonomy.inc
diff --git a/vendor/drupal/drupal-extension/fixtures/drupal7/modules/behat_test/behat_test.features.taxonomy.inc b/vendor/drupal/drupal-extension/fixtures/drupal7/modules/behat_test/behat_test.features.taxonomy.inc
deleted file mode 100644 (file)
index d287b7c..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-/**
- * @file
- * behat_test.features.taxonomy.inc
- */
-
-/**
- * Implements hook_taxonomy_default_vocabularies().
- */
-function behat_test_taxonomy_default_vocabularies() {
-  return array(
-    'tags' => array(
-      'name' => 'Tags',
-      'machine_name' => 'tags',
-      'description' => 'Use tags to group articles on similar topics into categories.',
-      'hierarchy' => 0,
-      'module' => 'taxonomy',
-      'weight' => 0,
-      'rdf_mapping' => array(
-        'rdftype' => array(
-          0 => 'skos:ConceptScheme',
-        ),
-        'name' => array(
-          'predicates' => array(
-            0 => 'dc:title',
-          ),
-        ),
-        'description' => array(
-          'predicates' => array(
-            0 => 'rdfs:comment',
-          ),
-        ),
-      ),
-    ),
-  );
-}