From d83e9aa42cb479786185eaec715a7c0a8108f912 Mon Sep 17 00:00:00 2001 From: Silvio Date: Thu, 16 Sep 2010 18:01:58 -0300 Subject: Removing concept code for a sfIsisImporterWrapper class --- lib/sfIsisImporterWrapper.class.php | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 lib/sfIsisImporterWrapper.class.php (limited to 'lib') 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 @@ -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); - } - } -} -- cgit v1.2.3