Пример #1
0
                if ($pview != 1) {
                    echo htmlspecialchars($row[1]) . "</a><br>\n";
                }
            }
        }
    }
}
# end select if
if ($pview != 1) {
    echo "</td>\n";
    # Show all rooms in the current area:
    echo "<td width=\"30%\"><u>" . get_string('rooms', 'block_mrbs') . "</u><br>";
}
# should we show a drop-down for the room list, or not?
if ($area_list_format == "select") {
    echo make_room_select_html('month.php', $area, $room, $year, $month, $day);
    # from functions.php
} else {
    $sql = "select id, room_name from {$tbl_room} where area_id={$area} order by room_name";
    $res = sql_query($sql);
    if ($res) {
        for ($i = 0; $row = sql_row($res, $i); $i++) {
            echo "<a href=\"month.php?year={$year}&month={$month}&area={$area}&room={$row['0']}\">";
            if ($row[0] == $room) {
                $this_room_name = htmlspecialchars($row[1]);
                if ($pview != 1) {
                    echo "<font color=\"red\">{$this_room_name}</font></a><br>\n";
                }
            } else {
                if ($pview != 1) {
                    echo htmlspecialchars($row[1]) . "</a><br>\n";
Пример #2
0
    # Table with areas, rooms, minicals.
    echo "\n<table width=\"100%\" cellspacing=\"15\"><tr>\n";
    $this_area_name = "";

    if (isset($_SESSION['default_list_type']) or (getSettingValue("authentification_obli")==1)) {
        $area_list_format = $_SESSION['default_list_type'];
    } else {
        $area_list_format = getSettingValue("area_list_format");
    }
    # Sélection des sites, domaines et ressources
    if ($area_list_format != "list") {
        # Sélection sous la forme de listes déroulantes
        echo "<td>\n";
        echo make_site_select_html('week_all.php',$id_site,$year,$month,$day,getUserName());
        echo make_area_select_html('week_all.php',$id_site, $area, $year, $month, $day, getUserName()); # from functions.inc.php
        echo make_room_select_html('week', $area, $room, $year, $month, $day);
        echo "</td>\n";
    } else {
        # Sélection sous la forme de listes
        echo "<td>\n";
        echo make_site_list_html('week_all.php',$id_site,$year,$month,$day,getUserName());
        echo "</td><td>";
        echo make_area_list_html('week_all.php',$id_site, $area, $year, $month, $day, getUserName()); # from functions.inc.php
        echo "</td>\n<td>\n";
        make_room_list_html('week.php', $area, $room, $year, $month, $day);
        echo "</td>\n\n";
    }

    #Draw the three month calendars
    minicals($year, $month, $day, $area, '', 'week_all');
    echo "</tr></table>\n";