Rowset.php

00001 <?php
00009 class Dsao_Db_Table_GameText_Rowset extends Zend_Db_Table_Rowset_Abstract
00010 {
00016   public function toArrayDecoded()
00017   {
00018     // array, Daten der Abenteuertexte
00019     $rowsetArray = array();
00020 
00021     // Zeilen durchgehen
00022     while ($this->valid())
00023     {
00024       $rowsetArray[] = $this->current()->toArrayDecoded();
00025 
00026       $this->next();
00027     }
00028 
00029     return $rowsetArray;
00030   }
00031 }

Erzeugt am Fri Sep 18 19:04:11 2009 für DSA online - Morgendaemmerung von  doxygen 1.5.7.1