mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:12 +01:00
c933bc081b
- fixed bug that windows could not be resized smaller then it initial size - fixed the shortcut settings bug
97 lines
3.3 KiB
PHP
97 lines
3.3 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare *
|
|
* http://www.egroupware.org *
|
|
* This file is written by Rob van Kraanen <rvkraanen@gmail.com> *
|
|
* This file is written by Pim Snel <pim@lingewoud.com> *
|
|
* Copyright 2005 Lingewoud BV - www.lingewoud.com *
|
|
* -------------------------------------------- *
|
|
* 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. *
|
|
\**************************************************************************/
|
|
|
|
//todo move shortcutsetting and size also to this file
|
|
|
|
$phpgw_info = array();
|
|
$GLOBALS['phpgw_info']['flags'] = array(
|
|
'noheader' => True,
|
|
'nonavbar' => True,
|
|
'disable_Template_class' => True,
|
|
'currentapp' => 'notifywindow'
|
|
);
|
|
|
|
include('../../../header.inc.php');
|
|
header("Content-type: text/xml");
|
|
header( "Expires: Mon, 26 Jul 1997 05:00:00 GMT" );
|
|
header( "Last-Modified: " . gmdate( "D, d M Y H:i:s" ) . "GMT" );
|
|
header( "Cache-Control: no-cache, must-revalidate" );
|
|
header( "Pragma: no-cache" );
|
|
echo '<?xml version="1.0" encoding="UTF-8"
|
|
standalone="yes"?>';
|
|
echo "\r\n<response>\r\n";
|
|
if($_GET[action]=='save_sidebox_state')
|
|
{
|
|
$title = $_GET["title"];
|
|
$sidebox_state = $_GET["sidebox_state"];
|
|
echo $title." ".$sidebox_state;
|
|
$GLOBALS['phpgw']->preferences->read_repository();
|
|
|
|
foreach($GLOBALS['phpgw_info']['user']['apps'] as $name => $data)
|
|
{
|
|
if($name == $title)
|
|
{
|
|
$GLOBALS['phpgw']->preferences->change('phpgwapi','sidebox_'.$name,$_GET["sidebox_state"]);
|
|
$GLOBALS['phpgw']->preferences->save_repository(True);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
elseif($_GET[action]=='shortcut_sets')
|
|
{
|
|
$id = $_GET["id"];
|
|
$top = $_GET["top"];
|
|
$left = $_GET["left"];
|
|
echo $id." ".$top." ".$left;
|
|
$GLOBALS['phpgw']->preferences->read_repository();
|
|
if($GLOBALS['phpgw_info']['user']['preferences']['phpgwapi'])
|
|
{
|
|
foreach($GLOBALS['phpgw_info']['user']['preferences']['phpgwapi'] as $shortcut => $shortcut_data)
|
|
{
|
|
if($shortcut_data['title'] == $id)
|
|
{
|
|
$shortcut_data['top'] = $top;
|
|
$shortcut_data['left'] = $left;
|
|
$GLOBALS['phpgw']->preferences->change('phpgwapi',$shortcut,$shortcut_data);
|
|
$GLOBALS['phpgw']->preferences->save_repository(True);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
elseif($_GET[action]=='write_size')
|
|
{
|
|
|
|
$title = $_GET["title"];
|
|
$width = $_GET["w"];
|
|
$height= $_GET["h"];
|
|
echo $title." ".$width." ".$height;
|
|
$GLOBALS['phpgw']->preferences->read_repository();
|
|
|
|
foreach($GLOBALS['phpgw_info']['user']['apps'] as $name => $data)
|
|
{
|
|
if($data['title'] == $title) {
|
|
$size['name'] = $name;
|
|
$size['width'] = $width;
|
|
$size['height'] = $height;
|
|
$GLOBALS['phpgw']->preferences->change('phpgwapi','size_'.$name,$size);
|
|
$GLOBALS['phpgw']->preferences->save_repository(True);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
echo "</response>";
|
|
|
|
?>
|