2011-12-02 08:03:01 +00:00
|
|
|
<?php
|
|
|
|
// MyDMS. Document Management System
|
|
|
|
// Copyright (C) 2002-2005 Markus Westphal
|
|
|
|
// Copyright (C) 2006-2008 Malcolm Cowe
|
2010-10-29 13:19:51 +00:00
|
|
|
// Copyright (C) 2010 Matteo Lucarelli
|
2011-12-02 08:03:01 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
include("../inc/inc.Settings.php");
|
|
|
|
include("../inc/inc.Utils.php");
|
|
|
|
include("../inc/inc.Language.php");
|
2014-12-08 13:48:23 +00:00
|
|
|
include("../inc/inc.Init.php");
|
2013-05-02 16:26:16 +00:00
|
|
|
include("../inc/inc.Extension.php");
|
2014-12-08 13:48:23 +00:00
|
|
|
include("../inc/inc.DBInit.php");
|
|
|
|
include("../inc/inc.Authentication.php");
|
2012-12-14 08:34:56 +00:00
|
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include class to preview documents
|
|
|
|
*/
|
2013-02-14 11:10:53 +00:00
|
|
|
require_once("SeedDMS/Preview.php");
|
2012-12-14 08:34:56 +00:00
|
|
|
|
|
|
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
|
|
|
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
2011-12-02 08:03:01 +00:00
|
|
|
|
|
|
|
if (!isset($_GET["folderid"]) || !is_numeric($_GET["folderid"]) || intval($_GET["folderid"])<1) {
|
|
|
|
$folderid = $settings->_rootFolderID;
|
|
|
|
}
|
|
|
|
else {
|
2012-08-28 07:18:00 +00:00
|
|
|
$folderid = intval($_GET["folderid"]);
|
2011-12-02 08:03:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$folder = $dms->getFolder($folderid);
|
2010-10-29 13:19:51 +00:00
|
|
|
if (!is_object($folder)) {
|
2011-12-02 08:03:01 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => getMLText("invalid_folder_id"))),getMLText("invalid_folder_id"));
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($_GET["orderby"]) && strlen($_GET["orderby"])==1 ) {
|
|
|
|
$orderby=$_GET["orderby"];
|
2014-02-01 14:23:19 +00:00
|
|
|
} else $orderby=$settings->_sortFoldersDefault;
|
2011-12-02 08:03:01 +00:00
|
|
|
|
|
|
|
if ($folder->getAccessMode($user) < M_READ) {
|
2012-09-05 21:00:14 +00:00
|
|
|
UI::exitError(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))),getMLText("access_denied"));
|
2011-12-02 08:03:01 +00:00
|
|
|
}
|
2010-10-29 13:19:51 +00:00
|
|
|
|
2012-12-14 08:34:56 +00:00
|
|
|
if($view) {
|
|
|
|
$view->setParam('folder', $folder);
|
|
|
|
$view->setParam('orderby', $orderby);
|
|
|
|
$view->setParam('enableFolderTree', $settings->_enableFolderTree);
|
2014-07-11 06:41:25 +00:00
|
|
|
$view->setParam('enableDropUpload', $settings->_enableDropUpload);
|
2013-09-06 13:24:51 +00:00
|
|
|
$view->setParam('expandFolderTree', $settings->_expandFolderTree);
|
2012-12-14 08:34:56 +00:00
|
|
|
$view->setParam('showtree', showtree());
|
2013-07-31 15:29:20 +00:00
|
|
|
$view->setParam('settings', $settings);
|
2012-12-14 08:34:56 +00:00
|
|
|
$view->setParam('cachedir', $settings->_cacheDir);
|
2013-04-18 11:37:28 +00:00
|
|
|
$view->setParam('workflowmode', $settings->_workflowMode);
|
2013-04-10 13:49:19 +00:00
|
|
|
$view->setParam('enableRecursiveCount', $settings->_enableRecursiveCount);
|
|
|
|
$view->setParam('maxRecursiveCount', $settings->_maxRecursiveCount);
|
2014-03-18 09:06:07 +00:00
|
|
|
$view->setParam('previewWidthList', $settings->_previewWidthList);
|
2015-06-25 17:52:02 +00:00
|
|
|
$view->setParam('previewconverters', $settings->_converters['preview']);
|
2016-02-15 09:57:37 +00:00
|
|
|
$view->setParam('timeout', $settings->_cmdTimeout);
|
2015-12-11 19:20:36 +00:00
|
|
|
$view($_GET);
|
2012-12-14 08:34:56 +00:00
|
|
|
exit;
|
2010-10-29 13:19:51 +00:00
|
|
|
}
|
|
|
|
|
2011-12-02 08:03:01 +00:00
|
|
|
?>
|