egroupware/admin/headlines.php
sjb4891 263fdedd2a Added $phpgw->common->phpgw_footer() function, and changed all
places that were including the footer.inc.php to use the function.

Re-arrange phpgw.inc.php to include optional classes after reading the DB config
misc bugfixes.
2000-09-29 05:24:18 +00:00

47 lines
2.1 KiB
PHP
Executable File

<?php
/**************************************************************************\
* phpGroupWare - administration *
* http://www.phpgroupware.org *
* Written by Joseph Engo <jengo@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"]["currentapp"] = "admin";
include("../header.inc.php");
echo "<p><center>" . lang("Headline Sites") . "<br><table border=0 width=65%>"
. "<tr bgcolor=" . $theme["th_bg"] . "><td>" . lang("Site") . "</td>"
. "<td> " . lang("Edit") . " </td> <td> " . lang("Delete") . " </td> <td> "
. lang("View") . " </td></tr>";
$phpgw->db->query("select con,display from news_site order by "
. "display");
while ($phpgw->db->next_record()) {
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
$display = $phpgw->db->f("display");
if (! $display)
$display = '&nbsp;';
echo "<tr bgcolor=$tr_color><td>$display</td>"
. "<td width=5%><a href=\"".$phpgw->link("editheadline.php",
"con=".$phpgw->db->f("con"))."\"> ".lang("Edit")." </a></td>";
echo "<td width=5%><a href=\"".$phpgw->link("deleteheadline.php",
"con=".$phpgw->db->f("con"))."\"> ".lang("Delete")." </a></td>";
echo "<td width=5%><a href=\"".$phpgw->link("viewheadline.php",
"con=".$phpgw->db->f("con"))."\"> ".lang("View")." </a> </td></tr>\n";
}
echo "<form method=POST action=\"".$phpgw->link("newheadline.php")."\">"
. "<tr><td colspan=\"5\"><input type=\"submit\" value=\"".lang("Add")
. "\"></td></tr></form></table></center>";
$phpgw->common->phpgw_footer();
?>