title_icons_table_month(): rewritten
authorshort <>
Wed, 19 Dec 2001 20:30:52 +0000 (20:30 +0000)
committershort <>
Wed, 19 Dec 2001 20:30:52 +0000 (20:30 +0000)
 - Articles are now listed each separately (requested)
 - title image has now separate list item, image is no longer <a>ctive
 - each table cell has now its own heading
title_icons(): split value changed 6->4 (now the table has 4x3 cells)
 - needed for 800x600 browser compatibility

common.php

index d1b2412..e4587c1 100644 (file)
@@ -221,11 +221,19 @@ function title_icons_table_month($year,$month,$month_last,$sequential)
        global $tb_clanek;
 
        $month_a=month_a($year,$month,$month_last,$sequential);
-       print("<a href=\"title.php?year=$year&amp;month=$month\">"
-                               .img($month_a["icon"],"titulní stránka ".$month_a["name_full"])."</a><br />"
-                       ."<a href=\"obsah.php?year=$year&amp;month=$month\">obsah ".$month_a["name"]."</a>");
-       if (db_item("select count(*) from $tb_clanek where year=$year and month=$month"))
-               print("<br /><a href=\"clanek.php?year=$year&amp;month=$month\">ukázka èlánkù</a>");
+       print("<table border=\"0\">"
+                       ."<tr><th align=\"center\">".$month_a["name"]."</th></tr>\n"
+                       ."<tr><td align=\"center\" valign=\"top\">"
+                               .img($month_a["icon"],"titulní stránka ".$month_a["name_full"])."</td></tr>\n"
+                       ."<tr><td align=\"left\" valign=\"top\" class=\"nowrap\">\n"
+                               ."&bull;&nbsp;<a href=\"title.php?year=$year&amp;month=$month\">titulní strana</a><br />\n"
+                               ."&bull;&nbsp;<a href=\"obsah.php?year=$year&amp;month=$month\">obsah</a><br />\n");
+       $result=db_query("select name,id from $tb_clanek where year=$year and month=$month order by id");
+       while ($row=mysql_fetch_array($result))
+               print("&bull;&nbsp;<a href=\"clanek.php?year=$year&amp;month=$month&amp;id=".$row["id"]."\">"
+                               .htmlspecialchars($row["name"])."</a><br />\n");
+       mysql_free_result($result);
+       print("</td></tr></table>");
 }
 
 function title_icons($year,$month)
@@ -244,7 +252,7 @@ function title_icons($year,$month)
                        .(isset($year) && isset($month) ? " and" : "")
                        .(isset($month) ?   " month=$month" : "")
                        ." order by year,month");
-       $split=6;
+       $split=4;
 
        // $year variable changes its meaning here!!!
        if (isset($year))