forked from extern/egroupware
allow to attach (multiple) files from filemanager in fmail compose
This commit is contained in:
parent
060339db1e
commit
a50e1cc2ec
164
filemanager/inc/class.filemanager_select.inc.php
Normal file
164
filemanager/inc/class.filemanager_select.inc.php
Normal file
@ -0,0 +1,164 @@
|
||||
<?php
|
||||
/**
|
||||
* eGroupWare - Filemanager - select file to open / save dialog
|
||||
*
|
||||
* @link http://www.egroupware.org
|
||||
* @package filemanager
|
||||
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @copyright (c) 2009 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
class filemanager_select
|
||||
{
|
||||
/**
|
||||
* Methods callable via menuaction
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
var $public_functions = array(
|
||||
'select' => true,
|
||||
);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
*/
|
||||
function __construct()
|
||||
{
|
||||
// strip slashes from _GET parameters, if someone still has magic_quotes_gpc on
|
||||
if (get_magic_quotes_gpc() && $_GET)
|
||||
{
|
||||
$_GET = etemplate::array_stripslashes($_GET);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback to fetch the rows for the nextmatch widget
|
||||
*
|
||||
* @param array $query
|
||||
* @param array &$rows
|
||||
* @param array &$readonlys
|
||||
*/
|
||||
function get_rows($query,&$rows,&$readonlys)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
function select(array $content=null)
|
||||
{
|
||||
if (!is_array($content))
|
||||
{
|
||||
$content = array();
|
||||
$content['mode'] = $_GET['mode'];
|
||||
if (!in_array($content['mode'],array('open','open-multiple','saveas','select-dir')))
|
||||
{
|
||||
throw new egw_exception_wrong_parameter("Wrong or unset required mode parameter!");
|
||||
}
|
||||
$content['path'] = $_GET['path'];
|
||||
if (!isset($content['path']) && ($content['path'] = egw_session::appsession('select_path','filemanger')) === false ||
|
||||
!egw_vfs::is_dir($content['path']))
|
||||
{
|
||||
$content['path'] = filemanager_ui::get_home_dir();
|
||||
}
|
||||
$content['method'] = $_GET['method'];
|
||||
$content['id'] = $_GET['id'];
|
||||
$content['label'] = isset($_GET['label']) ? $_GET['label'] : lang('Open');
|
||||
$content['mime'] = $_GET['mime'];
|
||||
}
|
||||
else
|
||||
{
|
||||
//_debug_array($content); die('Stop');
|
||||
if ($content['button']) list($button) = each($content['button']);
|
||||
switch($button)
|
||||
{
|
||||
case 'up':
|
||||
if ($content['path'] != '/') $content['path'] = egw_vfs::dirname($content['path']);
|
||||
break;
|
||||
case 'home':
|
||||
$content['path'] = filemanager_ui::get_home_dir();
|
||||
break;
|
||||
case 'ok':
|
||||
switch($content['mode'])
|
||||
{
|
||||
case 'open-multiple':
|
||||
foreach((array)$content['dir']['selected'] as $name)
|
||||
{
|
||||
$files[] = egw_vfs::concat($content['path'],$name);
|
||||
}
|
||||
break;
|
||||
case 'select-dir':
|
||||
$files = $content['path'];
|
||||
break;
|
||||
default:
|
||||
$files = egw_vfs::concat($content['path'],$content['name']);
|
||||
break;
|
||||
}
|
||||
$js = ExecMethod2($content['method'],$content['id'],$files);
|
||||
echo "<html>\n<head>\n<script type='text/javascript'>\n$js\n</script>\n</head>\n</html>\n";
|
||||
$GLOBALS['egw']->common->egw_exit();
|
||||
}
|
||||
}
|
||||
if (!($d = egw_vfs::opendir($content['path'])))
|
||||
{
|
||||
$content['msg'] = lang("Can't open directory %1!",$content['path']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$n = 0;
|
||||
$content['dir'] = array('mode' => $content['mode']);
|
||||
while (($name = readdir($d)))
|
||||
{
|
||||
$path = egw_vfs::concat($content['path'],$name);
|
||||
$is_dir = egw_vfs::is_dir($path);
|
||||
$content['dir'][$n] = array(
|
||||
'name' => $name,
|
||||
'path' => $path,
|
||||
'onclick' => $is_dir ? "return select_goto('".addslashes($path)."');" :
|
||||
($content['mode'] != 'open-multiple' ? "return select_show('".addslashes($name)."');" :
|
||||
"return select_toggle('".addslashes($name)."');"),
|
||||
);
|
||||
if ($is_dir && $content['mode'] == 'open-multiple')
|
||||
{
|
||||
$readonlys['selected['.$name.']'] = true;
|
||||
}
|
||||
++$n;
|
||||
}
|
||||
closedir($d);
|
||||
}
|
||||
$content['name'] = '';
|
||||
$content['js'] = '<script type="text/javascript">
|
||||
function select_goto(to)
|
||||
{
|
||||
path = document.getElementById("exec[path]");
|
||||
path.value = to;
|
||||
path.form.submit();
|
||||
return false;
|
||||
}
|
||||
function select_show(file)
|
||||
{
|
||||
name = document.getElementById("exec[name]");
|
||||
name.value = file;
|
||||
return false;
|
||||
}
|
||||
function select_toggle(file)
|
||||
{
|
||||
checkbox = document.getElementById("exec[dir][selected]["+file+"]");
|
||||
if (checkbox) checkbox.checked = !checkbox.checked;
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
';
|
||||
//_debug_array($content);
|
||||
//_debug_array($readonlys);
|
||||
egw_session::appsession('select_path','filemanger',$content['path']);
|
||||
$tpl = new etemplate('filemanager.select');
|
||||
$tpl->exec('filemanager.filemanager_select.select',$content,$sel_options,$readonlys,array(
|
||||
'mode' => $content['mode'],
|
||||
'method' => $content['method'],
|
||||
'id' => $content['id'],
|
||||
'label' => $content['label'],
|
||||
),2);
|
||||
}
|
||||
}
|
@ -8,3 +8,13 @@
|
||||
.comment textarea { width: 100%; height: 35px; }
|
||||
.previewImage img { max-width: 430px; max-height: 275px; border: 1px solid black; }
|
||||
.previewText div { }
|
||||
|
||||
/**
|
||||
* Select file dialog
|
||||
*/
|
||||
.selectPath { font-weight: bold; }
|
||||
.selectName input { width: 100%; }
|
||||
.selectMime select { width: 100%; }
|
||||
.selectIcon img { height: 16px; }
|
||||
.displayNone input { display: none; }
|
||||
.selectFiles td div { border-style: groove; }
|
62
filemanager/templates/default/select.xet
Normal file
62
filemanager/templates/default/select.xet
Normal file
@ -0,0 +1,62 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<template id="filemanager.select" template="" lang="" group="0" version="1.7.001">
|
||||
<grid width="600">
|
||||
<columns>
|
||||
<column width="32"/>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row valign="top">
|
||||
<button image="home" id="button[home]" align="center"/>
|
||||
<grid width="100%">
|
||||
<columns>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<hbox>
|
||||
<html id="js"/>
|
||||
<button id="button[up]" image="goup"/>
|
||||
<vfs id="path" onclick="path=document.getElementById(form::name('path')); path.value=$path; path.form.submit();" class="selectPath"/>
|
||||
<textbox id="path" class="displayNone"/>
|
||||
</hbox>
|
||||
</row>
|
||||
<row class="selectFiles">
|
||||
<grid width="100%" height="400" overflow="auto" id="dir">
|
||||
<columns>
|
||||
<column width="20"/>
|
||||
<column/>
|
||||
<column width="1%" disabled="!@mode=open-multiple"/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="row">
|
||||
<vfs-mime id="${row}[path]" class="selectIcon" align="center"/>
|
||||
<vfs id="$row" onclick="$row_cont[onclick]"/>
|
||||
<checkbox options=""$row_cont[name]"" id="selected[]" align="right"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
</row>
|
||||
<row disabled="@mode=open-multiple">
|
||||
<textbox id="name" class="selectName" needed="1"/>
|
||||
</row>
|
||||
<row>
|
||||
<menulist class="selectMime">
|
||||
<menupopup options="All" id="mime"/>
|
||||
</menulist>
|
||||
</row>
|
||||
<row>
|
||||
<hbox align="right">
|
||||
<button label="@label" id="button[ok]"/>
|
||||
<buttononly id="button[cancel]" label="Cancel" onclick="window.close();"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
</template>
|
||||
</overlay>
|
Loading…
Reference in New Issue
Block a user