00001 <?php
00002
00016
00017
00018
00019 class ItemIterator {
00024 function &next() {
00025 $nullVar = null;
00026 return $nullVar;
00027 }
00028
00033 function &nextWithKey() {
00034 return array(null, null);
00035 }
00036
00037 function atFirstPage() {
00038 return true;
00039 }
00040
00041 function atLastPage() {
00042 return true;
00043 }
00044
00045 function getPage() {
00046 return 1;
00047 }
00048
00049 function getCount() {
00050 return 0;
00051 }
00052
00053 function getPageCount() {
00054 return 0;
00055 }
00056
00061 function eof() {
00062 return true;
00063 }
00064
00069 function wasEmpty() {
00070 return true;
00071 }
00072
00073 function &toArray() {
00074 return array();
00075 }
00076 }
00077
00078 ?>