mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
26 lines
717 B
PHP
26 lines
717 B
PHP
<?php
|
|
require_once(EGW_INCLUDE_ROOT . '/phpgwapi/inc/class.dragdrop.inc.php');
|
|
|
|
if($GLOBALS['egw_info']['user']['preferences']['common']['enable_dragdrop'])
|
|
{
|
|
$dragdrop = new dragdrop();
|
|
$maxOffLeft = $this->sideboxwidth - 200;
|
|
$maxOffRight = 500 - $this->sideboxwidth;
|
|
$maxOffLeft < 0 && $maxOffLeft = 0;
|
|
$maxOffRight < 0 && $maxOffRight = 0;
|
|
|
|
$dragdrop->addCustom(
|
|
'thesideboxcolumn',
|
|
array('NO_DRAG')
|
|
);
|
|
|
|
$dragdrop->addCustom(
|
|
'sideresize',
|
|
array('CURSOR_W_RESIZE','HORIZONTAL','MAXOFFLEFT+'.$maxOffLeft,'MAXOFFRIGHT+'.$maxOffRight),
|
|
array('sideboxwidth'=>$this->sideboxwidth),
|
|
'phpgwapi.dragDropFunctions.dragSidebar',
|
|
'phpgwapi.dragDropFunctions.dropSidebar'
|
|
);
|
|
|
|
$dragdrop->setJSCode();
|
|
} |