aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio <s1lv10@uol.com.br>2010-09-16 18:01:58 -0300
committerSilvio <s1lv10@uol.com.br>2010-09-16 18:01:58 -0300
commitd83e9aa42cb479786185eaec715a7c0a8108f912 (patch)
tree6a9d071dcf9f60237645307c9da6174797b154d6
parent085c88c37d33cd19e9e77a1f9ef047f49f949d70 (diff)
downloadsf_isis_importer_plugin-d83e9aa42cb479786185eaec715a7c0a8108f912.tar.gz
sf_isis_importer_plugin-d83e9aa42cb479786185eaec715a7c0a8108f912.tar.bz2
Removing concept code for a sfIsisImporterWrapper class
-rw-r--r--lib/sfIsisImporterWrapper.class.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/lib/sfIsisImporterWrapper.class.php b/lib/sfIsisImporterWrapper.class.php
deleted file mode 100644
index 6d0b195..0000000
--- a/lib/sfIsisImporterWrapper.class.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-class sfIsisImporterWrapper {
- /**
- * Constructor.
- */
- public function __construct($isis)
- {
- $this->isis = $isis;
- }
-
- /**
- * Make an association with a given model.
- *
- * @param object $model Model for the association
- */
- public function useModel($model)
- {
- $this->model = $model;
- }
-
- /**
- * Get the current subfield from the current field and row.
- *
- * @param boolean $explode Whether to explode the result
- * @return string Subfield value
- */
- public function currentSubfield($explode = false)
- {
- if ($explode)
- {
- return $this->isis->explodeSubfield($this->field, $this->subfield, $this->row);
- }
- else
- {
- return $this->isis->getSubfield($this->field, $this->subfield, $this->row);
- }
- }
-}