From f1ab2f022fdc780aca0944d90e9a0e844a0820d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 27 May 2024 13:12:17 +0200 Subject: =?UTF-8?q?2024-02-19:=20popravljen=20(prej=C5=A1nji=20commit=20je?= =?UTF-8?q?=20napa=C4=8Den)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/survey/excel/PHPExcel/WorksheetIterator.php | 111 ---------------------- 1 file changed, 111 deletions(-) delete mode 100644 admin/survey/excel/PHPExcel/WorksheetIterator.php (limited to 'admin/survey/excel/PHPExcel/WorksheetIterator.php') diff --git a/admin/survey/excel/PHPExcel/WorksheetIterator.php b/admin/survey/excel/PHPExcel/WorksheetIterator.php deleted file mode 100644 index ad09e76..0000000 --- a/admin/survey/excel/PHPExcel/WorksheetIterator.php +++ /dev/null @@ -1,111 +0,0 @@ -_subject = $subject; - } - - /** - * Destructor - */ - public function __destruct() { - unset($this->_subject); - } - - /** - * Rewind iterator - */ - public function rewind() { - $this->_position = 0; - } - - /** - * Current PHPExcel_Worksheet - * - * @return PHPExcel_Worksheet - */ - public function current() { - return $this->_subject->getSheet($this->_position); - } - - /** - * Current key - * - * @return int - */ - public function key() { - return $this->_position; - } - - /** - * Next value - */ - public function next() { - ++$this->_position; - } - - /** - * More PHPExcel_Worksheet instances available? - * - * @return boolean - */ - public function valid() { - return $this->_position < $this->_subject->getSheetCount(); - } -} -- cgit v1.2.3