require_once 'prepend.inc'; $NUMACROSS=2; $d = dir("$DOCUMENT_ROOT/manual/en"); while($entry=$d->read()) { if (substr($entry, 0, 1) == ".") { continue; } if (ereg('(function|class)\.(.+)\.php',$entry,$x)): $functions[$entry]=ereg_replace("-","_",$x[2]); endif; } $d->close(); asort($functions); function makeTable($array) { global $NUMACROSS,$FONTFACE; $i=0; $c=count($array); $limit=intval($c/$NUMACROSS)+1; echo "
| \n"; while (list($file,$name)=each($array)): if ($i%$limit==0): echo " | \n";
endif;
echo "".$name." \n"; $i++; endwhile; echo " | \n";
echo "
makeTable($functions); commonFooter(); ?>