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 }
1.5.7.1