aboutsummaryrefslogtreecommitdiffstats
path: root/modules/planet/templates/index.php
blob: 3a8b35343048179dc9624fda583806f024fdf4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<body>
<h1>Planet Mageia</h1>
<h3>Please choose one of the following locales:</h3>
<ul>
<?php
function displayloc($path = ''){
	return array_slice(scandir($path), 2);
}

foreach(displayloc('.') as $loc)
	if(is_dir($loc))
	{
		echo '<li><a href="'.$loc.'">'.$loc.'</a></li>';
	}
?>
</ul>
</body>
</html>