'.$content.'

50
10
Equip a full set of at least quality 50 jewels
03.01.2012
10
Equip a full set of at least quality 100 jewels
03.01.2012
10
Equip a full set of at least quality 150 jewels
03.01.2012
10
Equip a full set of at least quality 200 jewels
03.01.2012
10
Equip a full set of at least quality 250 jewels
03.01.2012
'; } function ach_render_box_pending($name,$content) { return '

'.$name.'

50
10
Equip a full set of at least quality 50 jewels
03.01.2012
10
Equip a full set of at least quality 100 jewels
03.01.2012
10
Equip a full set of at least quality 150 jewels
03.01.2012
10
Equip a full set of at least quality 200 jewels
03.01.2012
10
Equip a full set of at least quality 250 jewels
03.01.2012
'; } function ach_render_obj_list($list) { //group //columnize //draw } function ach_render_obj_meta($obj) { } function ach_render_obj_simple($obj) { return $obj->getName(); } function ach_render_obj_value($obj) { } function ach_render_tiebar($cult = "neutral", $civ = "neutral") { } function ach_render_menu(&$menu) { $html = ""; $sz = $menu->getSize(); for($i=0;$i<$sz;$i++) { $curr = $menu->getChild($i); $html .= "
".ach_render_menu($curr)."
"; } return $html; } function ach_render_category(&$cat) { $html = ""; $tmp = $cat->getDone(); $sz = sizeof($tmp); for($i=0;$i<$sz;$i++) { $html .= ach_render_achievement_done($cat->getChild($tmp[$i])); } $tmp = $cat->getDone(); $sz = sizeof($tmp); for($i=0;$i<$sz;$i++) { $html .= ach_render_achievement_open($cat->getChild($tmp[$i])); } return $html; } function ach_render_achievement_done(&$ach) { } function ach_render_achievement_open(&$ach) { $html = ""; $html .= '
'; $html .= ach_render_perk_open($ach->getOpen()); $html .= '

'.$ach->getName().'

'.$ach->getValue().'
'; return $html; } function ach_render_perk_open(&$perk_list) { $html = ""; $perk = $perk_list[0]; $html .= $perk->getName()."
"; $html .= ach_render_obj_list($perk->getChildren()); return $html; } function ach_render_perk_done() { } function ach_render_obj_list(&$obj) { $html = ""; foreach($obj as $elem) { $html .= "-".$elem->getName()."
"; } return $html; } ?>