seeddms-code/out/out.ViewFolder.php

74 lines
2.6 KiB
PHP
Raw Normal View History

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");
2010-10-29 13:19:51 +00:00
include("../inc/inc.DBInit.php");
2011-12-02 08:03:01 +00:00
include("../inc/inc.Language.php");
2010-10-29 13:19:51 +00:00
include("../inc/inc.Authentication.php");
2012-12-14 08:34:56 +00:00
include("../inc/inc.ClassUI.php");
/**
* Include class to preview documents
*/
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
}
$showtree=showtree();
if (isset($_GET["orderby"]) && strlen($_GET["orderby"])==1 ) {
$orderby=$_GET["orderby"];
} 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);
$view->setParam('enableClipboard', $settings->_enableClipboard);
$view->setParam('expandFolderTree', $settings->_expandFolderTree);
2012-12-14 08:34:56 +00:00
$view->setParam('showtree', showtree());
$view->setParam('cachedir', $settings->_cacheDir);
2013-04-18 11:37:28 +00:00
$view->setParam('workflowmode', $settings->_workflowMode);
$view->setParam('enableRecursiveCount', $settings->_enableRecursiveCount);
$view->setParam('maxRecursiveCount', $settings->_maxRecursiveCount);
2012-12-14 08:34:56 +00:00
$view->show();
exit;
2010-10-29 13:19:51 +00:00
}
2011-12-02 08:03:01 +00:00
?>