summaryrefslogtreecommitdiff
blob: 830ce105904735a17e7c738297a46f79cda6faa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?
	require_once 'inc.header1.php';
	require_once 'inc.header2.php';
	require_once 'inc.header3.php';
	require_once 'inc.content1.php';
	
	require_once 'class.db.category.php';
	
	$sql = "SELECT name, description FROM use WHERE LENGTH(description) > 0 AND prefix = '' ORDER BY name;";
	$arr = $db->getAssoc($sql);
	
	echo "<h4>".gettext("use flags")."</h4>\n";
	
	echo "<div class='about'>\n";
	
	echo "<hr class='pkg_rule' style='margin-bottom: 15px; margin-top: 15px;'>\n";
	
	echo "<table style='padding-bottom: 25px;' cellpadding='4' cellspacing='0'>\n";
	
	$x = 0;
	
	foreach($arr as $useflag_name => $description) {
	
		$class = getRowClass($x++);
		
		$url = $base_uri."useflags/".urlencode($useflag_name);
	
		echo "\t<tr class='$class'>\n";
		echo "\t\t<td valign='top'><a href='$url'>$useflag_name </a></td>\n";
		echo "\t\t<td>$description</td>\n";
		echo "\t</tr>\n";
	
	}
	
	echo "</table>\n";
	
	echo "</div>\n";
	
	require_once 'inc.content2.php';
?>