mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 00:24:34 +01:00
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware API: VFS sharing
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @author Ralf Becker <rb@stylite.de>
|
|
* @copyright (c) 2014-16 by Ralf Becker <rb@stylite.de>
|
|
* @version $Id$
|
|
*/
|
|
|
|
require_once(__DIR__.'/api/src/Sharing.php');
|
|
|
|
use EGroupware\Api\Sharing;
|
|
|
|
$GLOBALS['egw_info'] = array(
|
|
'flags' => array(
|
|
'disable_Template_class' => true,
|
|
'noheader' => true,
|
|
'nonavbar' => 'always', // true would cause eTemplate to reset it to false for non-popups!
|
|
'currentapp' => 'api',
|
|
'autocreate_session_callback' => 'EGroupware\\Api\\Sharing::create_session',
|
|
'no_exception_handler' => true, // we send our own errors
|
|
)
|
|
);
|
|
|
|
include('./header.inc.php');
|
|
|
|
if (!isset($GLOBALS['egw']->sharing) || !array_key_exists(Sharing::get_token(), $GLOBALS['egw']->sharing))
|
|
{
|
|
Sharing::create_session(true); // true = mount into existing session
|
|
}
|
|
$GLOBALS['egw']->sharing[Sharing::get_token()]->ServeRequest();
|