mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Added the legal notice/message for the mainscreen
This commit is contained in:
parent
bd2f80dfee
commit
a8700c4050
@ -37,6 +37,11 @@
|
|||||||
|
|
||||||
echo "<p>\n";
|
echo "<p>\n";
|
||||||
|
|
||||||
|
echo "<a href='" . $phpgw->link("mainscreen_message.php") . "'>";
|
||||||
|
echo lang("Change main screen message")."</a><br>\n";
|
||||||
|
|
||||||
|
echo "<p>\n";
|
||||||
|
|
||||||
echo "<a href='" . $phpgw->link("currentusers.php") . "'>";
|
echo "<a href='" . $phpgw->link("currentusers.php") . "'>";
|
||||||
echo lang("View sessions")."</a><br>\n";
|
echo lang("View sessions")."</a><br>\n";
|
||||||
|
|
||||||
|
46
admin/mainscreen_message.php
Normal file
46
admin/mainscreen_message.php
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
/**************************************************************************\
|
||||||
|
* phpGroupWare - administration *
|
||||||
|
* http://www.phpgroupware.org *
|
||||||
|
* Written by Joseph Engo <jengo@phpgroupware.org> *
|
||||||
|
* Modified by Stephen Brown <steve@dataclarity.net> *
|
||||||
|
* to distribute admin across the application directories *
|
||||||
|
* -------------------------------------------- *
|
||||||
|
* 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 = array();
|
||||||
|
$phpgw_info["flags"] = array("currentapp" => "admin", "enable_nextmatchs_class" => True);
|
||||||
|
include("../header.inc.php");
|
||||||
|
|
||||||
|
$phpgw->template->set_file(array("form" => "mainscreen_message.tpl",
|
||||||
|
"row" => "mainscreen_message_row.tpl"));
|
||||||
|
|
||||||
|
if ($submit) {
|
||||||
|
$phpgw->db->query("delete from config where config_name='mainscreen_message'",__LINE__,__FILE__);
|
||||||
|
$phpgw->db->query("insert into config values ('mainscreen_message','" . addslashes($message)
|
||||||
|
. "')",__LINE__,__FILE__);
|
||||||
|
$message = "<center>Message has been updated</center>";
|
||||||
|
}
|
||||||
|
|
||||||
|
$phpgw->template->set_var("header_lang",lang("Edit main screen message"));
|
||||||
|
$phpgw->template->set_var("form_action",$phpgw->link("mainscreen_message.php"));
|
||||||
|
$phpgw->template->set_var("th_bg",$phpgw_info["theme"]["th_bg"]);
|
||||||
|
|
||||||
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||||
|
$phpgw->template->set_var("tr_color",$tr_color);
|
||||||
|
$phpgw->template->set_var("value",'<textarea name="message" cols="50" rows="10" wrap="hard">' . $phpgw_info["server"]["mainscreen_message"] . '</textarea>');
|
||||||
|
$phpgw->template->parse("rows","row",True);
|
||||||
|
|
||||||
|
$tr_color = $phpgw->nextmatchs->alternate_row_color($tr_color);
|
||||||
|
$phpgw->template->set_var("tr_color",$tr_color);
|
||||||
|
$phpgw->template->set_var("value",'<input type="submit" name="submit" value="' . lang("Update") . '">');
|
||||||
|
$phpgw->template->parse("rows","row",True);
|
||||||
|
|
||||||
|
$phpgw->template->pparse("out","form");
|
||||||
|
?>
|
@ -46,6 +46,10 @@
|
|||||||
. "<br>" . lang("It is recommend that you run setup to upgrade your tables to the current version")
|
. "<br>" . lang("It is recommend that you run setup to upgrade your tables to the current version")
|
||||||
. "</b>";
|
. "</b>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($phpgw_info["server"]["mainscreen_message"])) {
|
||||||
|
echo "<center>" . $phpgw_info["server"]["mainscreen_message"] . "</center>";
|
||||||
|
}
|
||||||
|
|
||||||
if ((isset($phpgw_info["user"]["apps"]["admin"]) &&
|
if ((isset($phpgw_info["user"]["apps"]["admin"]) &&
|
||||||
$phpgw_info["user"]["apps"]["admin"]) &&
|
$phpgw_info["user"]["apps"]["admin"]) &&
|
||||||
|
Loading…
Reference in New Issue
Block a user