'; $orgs = array( array('http://www.mandrivafr.org/', 'AUFML'), array('http://dedibox.fr/', 'Dédibox'), array('http://www.gandi.net/', 'Gandi.net'), array('http://www.kazar.net/', 'Kazar.net'), array('http://www.lost-oasis.net/', 'Lost-Oasis'), array('http://www.mageialinux-online.org/', 'MLO'), array('http://nfrance.fr/', 'NFrance'), array('http://www.spreadshirt.com/', 'Spreadshirt'), array('http://zarb.org/', 'zarb.org'), // see mirrors.mageia.org array('http://www.upmc.fr/', 'Université Pierre et Marie Curie'), array('http://www.ibiblio.org/', 'The Public\'s Library and Digital Archive'), array('http://www.mandrivauser.de', 'Mandrivauser.de'), array('http://www.hs-esslingen.de/', 'Hochschule Esslingen'), array('http://uni-erlangen.de/', 'Universität Erlangen-Nürnberg'), // mageia.supp.name? // fundawang.lcuc.org.cn? // ftp.LinuxCabal.org? // mageia.nautile.nc? ); /** * @param array $donators * * @return string */ function html_donators_list($donators,$anonymous) { $count_donators = count($donators)+$anonymous-1; // -1 because 'anonymous' is count 1 more time in 'donators()' //$donators = array_unique($donators); sort($donators); $html = ''; return array( 'count' => $count_donators, 'list' => $html ); } /** */ function html_people_list($people) { $html = ''; return $html; } /** */ function html_orgs_list($orgs) { $html = ''; return $html; }