khanat-opennel-code/code/ryzom/tools/server/ryzom_ams/ams_lib/autoload/gui_elements.php

19 lines
432 B
PHP
Raw Normal View History

2013-07-09 14:03:52 +00:00
<?php
class Gui_Elements{
public static function make_table( $inputList, $funcArray ,$fieldArray){
$i = 0;
$result = Array();
foreach($inputList as $element){
$j = 0;
foreach($funcArray as $function){
$result[$i][$fieldArray[$j]] = $element->$function();
$j++;
}
$i++;
}
return $result;
}
}