forked from extern/egroupware
9f8a77283c
- to resolve sharing-path to url, we need to restore full mount-tab - egw_vfs::clearstatcache() was not clearing resolve_url cache, causing previous share to be used - need to set egw_info[user][vfs_user] after egw_session::create, as it overwrites it
20 lines
512 B
PHP
20 lines
512 B
PHP
<?php
|
|
/**
|
|
* eGroupWare API: VFS - static methods to use the new eGW virtual file system
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage vfs
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @copyright (c) 2008-15 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api\Vfs;
|
|
|
|
/**
|
|
* @deprecated use EGroupware\Api\Vfs
|
|
*/
|
|
class egw_vfs extends Vfs {}
|