2000-11-24 05:45:09 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare - administration *
|
|
|
|
* http://www.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$ */
|
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw_info'] = array();
|
|
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
|
|
|
'currentapp' => 'admin',
|
|
|
|
'enable_nextmatchs_class' => True,
|
|
|
|
'nonavbar' => True,
|
|
|
|
'noheader' => True
|
|
|
|
);
|
2001-05-11 15:43:05 +02:00
|
|
|
include('../header.inc.php');
|
2000-11-24 05:45:09 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
if ($GLOBALS['HTTP_POST_VARS']['cancel'])
|
|
|
|
{
|
|
|
|
header('Location: ' . $GLOBALS['phpgw']->link('/admin/index.php'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->template->set_file(array('message' => 'mainscreen_message.tpl'));
|
|
|
|
$GLOBALS['phpgw']->template->set_block('message','form','form');
|
|
|
|
$GLOBALS['phpgw']->template->set_block('message','row','row');
|
|
|
|
$GLOBALS['phpgw']->template->set_block('message','row_2','row_2');
|
2000-11-24 05:45:09 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$section = $GLOBALS['HTTP_POST_VARS']['section'];
|
|
|
|
$select_lang = $GLOBALS['HTTP_POST_VARS']['select_lang'];
|
|
|
|
$message = $GLOBALS['HTTP_POST_VARS']['message'];
|
|
|
|
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_header();
|
|
|
|
echo parse_navbar();
|
|
|
|
|
|
|
|
if ($GLOBALS['HTTP_POST_VARS']['submit'])
|
2001-05-11 15:43:05 +02:00
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->db->query("DELETE FROM lang WHERE message_id='$section" . "_message' AND app_name='"
|
|
|
|
. "$section' AND lang='$select_lang'",__LINE__,__FILE__);
|
|
|
|
$GLOBALS['phpgw']->db->query("INSERT INTO lang VALUES ('$section" . "_message','$section','$select_lang','"
|
2001-05-11 15:43:05 +02:00
|
|
|
. addslashes($message) . "')",__LINE__,__FILE__);
|
2001-12-04 03:07:17 +01:00
|
|
|
$message = '<center>'.lang('message has been updated').'</center>';
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
2000-11-28 20:54:10 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
if (empty($select_lang))
|
2001-05-11 15:43:05 +02:00
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('header_lang',lang('Main screen message'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/admin/mainscreen_message.php'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$GLOBALS['phpgw_info']['theme']['th_bg']);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value',' ');
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row_2',True);
|
2000-11-28 20:54:10 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$tr_color);
|
2000-11-28 20:54:10 +01:00
|
|
|
|
2001-05-11 15:43:05 +02:00
|
|
|
$select_lang = '<select name="select_lang">';
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->db->query("SELECT lang,languages.lang_name,languages.lang_id FROM lang,languages WHERE "
|
|
|
|
. "lang.lang=languages.lang_id GROUP BY lang,languages.lang_name,"
|
|
|
|
. "languages.lang_id ORDER BY lang");
|
|
|
|
while ($GLOBALS['phpgw']->db->next_record())
|
2001-05-11 15:43:05 +02:00
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$select_lang .= '<option value="' . $GLOBALS['phpgw']->db->f('lang') . '">' . $GLOBALS['phpgw']->db->f('lang_id')
|
|
|
|
. ' - ' . $GLOBALS['phpgw']->db->f('lang_name') . '</option>';
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
|
|
|
$select_lang .= '</select>';
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('label',lang('Language'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value',$select_lang);
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row',True);
|
2000-11-28 20:54:10 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$tr_color);
|
|
|
|
$select_section = '<select name="section"><option value="mainscreen">' . lang('Main screen')
|
2001-05-11 15:43:05 +02:00
|
|
|
. '</option><option value="loginscreen">' . lang("Login screen") . '</option>'
|
|
|
|
. '</select>';
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('label',lang('Section'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value',$select_section);
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row',True);
|
2000-11-28 20:54:10 +01:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value','<input type="submit" value="' . lang('Submit')
|
|
|
|
. '"><input type="submit" name="cancel" value="'. lang('cancel') .'">');
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row_2',True);
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->db->query("SELECT content FROM lang WHERE lang='$select_lang' AND message_id='$section"
|
2001-05-11 15:43:05 +02:00
|
|
|
. "_message'");
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->db->next_record();
|
|
|
|
$current_message = $GLOBALS['phpgw']->db->f('content');
|
2001-05-11 15:43:05 +02:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
if ($section == 'mainscreen')
|
2001-05-11 15:43:05 +02:00
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('header_lang',lang('Edit main screen message'));
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('header_lang',lang('Edit login screen message'));
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/admin/mainscreen_message.php'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('select_lang',$select_lang);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('section',$section);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$GLOBALS['phpgw_info']['theme']['th_bg']);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value',' ');
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row_2',True);
|
2001-05-11 15:43:05 +02:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value','<textarea name="message" cols="50" rows="10" wrap="virtual">' . stripslashes($current_message) . '</textarea>');
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row_2',True);
|
2001-05-11 15:43:05 +02:00
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('tr_color',$tr_color);
|
|
|
|
$GLOBALS['phpgw']->template->set_var('value','<input type="submit" name="submit" value="' . lang('Update')
|
|
|
|
. '"><input type="submit" name="cancel" value="'. lang('cancel') .'">'
|
|
|
|
);
|
|
|
|
$GLOBALS['phpgw']->template->fp('rows','row_2',True);
|
2001-05-11 15:43:05 +02:00
|
|
|
}
|
|
|
|
|
2001-12-04 03:07:17 +01:00
|
|
|
$GLOBALS['phpgw']->template->set_var('lang_cancel',lang('Cancel'));
|
|
|
|
$GLOBALS['phpgw']->template->set_var('error_message',$message);
|
|
|
|
$GLOBALS['phpgw']->template->pfp('out','form');
|
|
|
|
$GLOBALS['phpgw']->common->phpgw_footer();
|
2001-01-07 18:25:25 +01:00
|
|
|
?>
|