From 7ecebc728bbc4ae3d421f8bf088ecbeab16c9a6f Mon Sep 17 00:00:00 2001
From: Alex Barth <alex_b@53995.no-reply.drupal.org>
Date: Wed, 8 Sep 2010 02:43:16 +0000
Subject: [PATCH] Move FeedsTermElement up to the parser level.

---
 mappers/taxonomy.inc    | 12 ------------
 plugins/FeedsParser.inc | 17 +++++++++++++++++
 2 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/mappers/taxonomy.inc b/mappers/taxonomy.inc
index 2caf5fe0..6cc2f80e 100644
--- a/mappers/taxonomy.inc
+++ b/mappers/taxonomy.inc
@@ -6,18 +6,6 @@
  * Mapper that exposes a node's taxonomy vocabularies as mapping targets.
  */
 
-/**
- * Encapsulates a taxonomy style term object.
- */
-class FeedsTermElement extends FeedsElement {
-  public $tid, $vid;
-  public function __construct($term) {
-    parent::__construct($term->name);
-    $this->tid = $term->tid;
-    $this->vid = $term->vid;
-  }
-}
-
 /**
  * Implementation of hook_feeds_parser_sources_alter().
  */
diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc
index 2c2dc511..a32c1a49 100644
--- a/plugins/FeedsParser.inc
+++ b/plugins/FeedsParser.inc
@@ -133,6 +133,23 @@ class FeedsElement {
   }
 }
 
+/**
+ * Encapsulates a taxonomy style term object.
+ */
+class FeedsTermElement extends FeedsElement {
+  public $tid, $vid;
+
+  /**
+   * @param $term
+   *   A stdClass object that is a Drupal taxonomy term.
+   */
+  public function __construct($term) {
+    parent::__construct($term->name);
+    $this->tid = $term->tid;
+    $this->vid = $term->vid;
+  }
+}
+
 /**
  * Enclosure element, can be part of the result array.
  */
-- 
GitLab