summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dibb <beandog@gentoo.org>2010-02-11 20:17:46 -0700
committerSteve Dibb <beandog@gentoo.org>2010-02-11 20:17:46 -0700
commit32a7a5f8d8b36ae6acb6e566ff3d371b7a145c4b (patch)
treef9b8efa8def14998bc8f7a4fed123cc34c98f8db /licenses.php
parentZero (diff)
downloadznurt-org-frontend-32a7a5f8d8b36ae6acb6e566ff3d371b7a145c4b.tar.gz
znurt-org-frontend-32a7a5f8d8b36ae6acb6e566ff3d371b7a145c4b.tar.bz2
znurt-org-frontend-32a7a5f8d8b36ae6acb6e566ff3d371b7a145c4b.zip
initial commit
Diffstat (limited to 'licenses.php')
-rw-r--r--licenses.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/licenses.php b/licenses.php
new file mode 100644
index 0000000..84edcab
--- /dev/null
+++ b/licenses.php
@@ -0,0 +1,36 @@
+<?
+ 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 FROM license ORDER BY name;";
+ $arr = $db->getCol($sql);
+
+ echo "<h4>".gettext("SOFTWARE LICENSES")."</h4>\n";
+
+ echo "<hr class='pkg_rule' style='margin-bottom: 15px; margin-top: 15px;'/>\n";
+
+ echo "<table class='licenses' cellpadding='4' cellspacing='0'>\n";
+
+ $x = 0;
+
+ foreach($arr as $name) {
+
+ $class = getRowClass($x++);
+
+ $url = $base_uri."licenses/$name";
+
+ echo "\t<tr class='$class'>\n";
+ echo "\t\t<td><a href='$url'>$name</a></td>\n";
+ echo "\t</tr>\n";
+
+ }
+
+ echo "</table>\n";
+
+ require_once 'inc.content2.php';
+?> \ No newline at end of file