From 54ef997aacbde8c481a668f1d0689c15f63a1c70 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 28 Aug 2004 13:34:15 +0000 Subject: [PATCH] removed plugins, as they only work in selected languages --- admin/inc/class.uimainscreen.inc.php | 189 +++++++++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 admin/inc/class.uimainscreen.inc.php diff --git a/admin/inc/class.uimainscreen.inc.php b/admin/inc/class.uimainscreen.inc.php new file mode 100644 index 0000000000..0fec84bc9a --- /dev/null +++ b/admin/inc/class.uimainscreen.inc.php @@ -0,0 +1,189 @@ + True); + + function uimainscreen() + { + $GLOBALS['phpgw']->nextmatchs = CreateObject('phpgwapi.nextmatchs'); + } + + function index() + { + + $html = createObject('phpgwapi.html'); + $section = addslashes($_POST['section']); + $select_lang = addslashes($_POST['select_lang']); + $message = addslashes($_POST['message']); + + $acl_ok = array(); + if (!$GLOBALS['phpgw']->acl->check('mainscreen_message_access',1,'admin')) + { + $acl_ok['mainscreen'] = True; + } + if (!$GLOBALS['phpgw']->acl->check('mainscreen_message_access',2,'admin')) + { + $acl_ok['loginscreen'] = True; + } + if ($_POST['cancel'] && !isset($_POST['message']) || + !count($acl_ok) || $_POST['submit'] && !isset($acl_ok[$section])) + { + $GLOBALS['phpgw']->redirect_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'); + + if ($_POST['submit']) + { + $GLOBALS['phpgw']->db->query("DELETE FROM phpgw_lang WHERE message_id='$section" . "_message' AND app_name='" + . "$section' AND lang='$select_lang'",__LINE__,__FILE__); + $GLOBALS['phpgw']->db->query("INSERT INTO phpgw_lang (message_id,app_name,lang,content)VALUES ('$section" . "_message','$section','$select_lang','" + . $message . "')",__LINE__,__FILE__); + $feedback_message = '
'.lang('message has been updated').'
'; + + $section = ''; + } + if ($_POST['cancel']) // back to section/lang-selection + { + $message = $section = ''; + } + switch ($section) + { + case 'mainscreen': + $GLOBALS['phpgw_info']['flags']['app_header'] = lang('Admin').' - '.lang('Edit main screen message') . ': '.strtoupper($select_lang); + break; + case 'loginscreen': + $GLOBALS['phpgw_info']['flags']['app_header'] = lang('Admin').' - '.lang('Edit login screen message') . ': '.strtoupper($select_lang); + break; + default: + $GLOBALS['phpgw_info']['flags']['app_header'] = lang('Admin').' - '.lang('Main screen message'); + break; + } + if(!@is_object($GLOBALS['phpgw']->js)) + { + $GLOBALS['phpgw']->js = CreateObject('phpgwapi.javascript'); + } + + + + + if (empty($section)) + { + + $GLOBALS['phpgw']->js->validate_file('jscode','openwindow','admin'); + $GLOBALS['phpgw']->common->phpgw_header(); + echo parse_navbar(); + + + $GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.index')); + $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); + + $tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color); + $GLOBALS['phpgw']->template->set_var('tr_color',$tr_color); + + $lang_select = ''; + $GLOBALS['phpgw']->template->set_var('label',lang('Language')); + $GLOBALS['phpgw']->template->set_var('value',$lang_select); + $GLOBALS['phpgw']->template->fp('rows','row',True); + + $tr_color = $GLOBALS['phpgw']->nextmatchs->alternate_row_color($tr_color); + $GLOBALS['phpgw']->template->set_var('tr_color',$tr_color); + $select_section = ''; + $GLOBALS['phpgw']->template->set_var('label',lang('Section')); + $GLOBALS['phpgw']->template->set_var('value',$select_section); + $GLOBALS['phpgw']->template->fp('rows','row',True); + + $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',''); + $GLOBALS['phpgw']->template->fp('rows','row_2',True); + } + else + { + $GLOBALS['phpgw']->db->query("SELECT content FROM phpgw_lang WHERE lang='$select_lang' AND message_id='$section" + . "_message'",__LINE__,__FILE__); + $GLOBALS['phpgw']->db->next_record(); + + $current_message = $GLOBALS['phpgw']->db->f('content'); + + if($_POST['htmlarea']) + { + $text_or_htmlarea=$html->htmlarea('message',stripslashes($current_message)); + $htmlarea_button=''; + } + else + { + $text_or_htmlarea=''; + $htmlarea_button=''; + + } + + $GLOBALS['phpgw']->js->validate_file('jscode','openwindow','admin'); + $GLOBALS['phpgw']->common->phpgw_header(); + echo parse_navbar(); + + $GLOBALS['phpgw']->template->set_var('form_action',$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uimainscreen.index')); + $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); + + $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',$text_or_htmlarea); + + + + $GLOBALS['phpgw']->template->fp('rows','row_2',True); + + $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',''.$htmlarea_button); + $GLOBALS['phpgw']->template->fp('rows','row_2',True); + } + + $GLOBALS['phpgw']->template->set_var('lang_cancel',lang('Cancel')); + $GLOBALS['phpgw']->template->set_var('error_message',$feedback_message); + $GLOBALS['phpgw']->template->pfp('out','form'); + } + } +?>