| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- /* $Id: dirSettings.php 2893 2007-04-14 13:20:30Z b4rt $ */
- /*******************************************************************************
- LICENSE
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License (GPL)
- 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.
- To read the license please visit http://www.gnu.org/copyleft/gpl.html
- *******************************************************************************/
- // prevent direct invocation
- if ((!isset($cfg['user'])) || (isset($_REQUEST['cfg']))) {
- @ob_end_clean();
- @header("location: ../../../index.php");
- exit();
- }
- /******************************************************************************/
- // dir functions
- require_once('inc/functions/functions.dir.php');
- // config
- initRestrictedDirEntries();
- // init template-instance
- tmplInitializeInstance($cfg["theme"], "page.admin.dirSettings.tmpl");
- // restricted entries
- $dir_list = array();
- foreach ($restrictedFileEntries as $entry) {
- $target = trim($entry);
- if ((strlen($target) > 0) && ((substr($target, 0, 1)) != ";"))
- array_push($dir_list, array('target' => $target));
- }
- $tmpl->setloop('dir_restricted_list', $dir_list);
- $tmpl->setvar('dir_restricted', $cfg["dir_restricted"]);
- $tmpl->setvar('dir_public_read', $cfg["dir_public_read"]);
- $tmpl->setvar('dir_public_write', $cfg["dir_public_write"]);
- $tmpl->setvar('dir_enable_chmod', $cfg["dir_enable_chmod"]);
- $tmpl->setvar('enable_maketorrent', $cfg["enable_maketorrent"]);
- $tmpl->setvar('dir_maketorrent_default', $cfg["dir_maketorrent_default"]);
- $tmpl->setvar('enable_file_download', $cfg["enable_file_download"]);
- $tmpl->setvar('package_type', $cfg["package_type"]);
- $tmpl->setvar('enable_view_nfo', $cfg["enable_view_nfo"]);
- $tmpl->setvar('enable_dirstats', $cfg["enable_dirstats"]);
- $tmpl->setvar('enable_rar', $cfg["enable_rar"]);
- $tmpl->setvar('enable_sfvcheck', $cfg["enable_sfvcheck"]);
- $tmpl->setvar('enable_vlc', $cfg["enable_vlc"]);
- $tmpl->setvar('vlc_port', $cfg["vlc_port"]);
- $tmpl->setvar('enable_rename', $cfg["enable_rename"]);
- $tmpl->setvar('enable_move', $cfg["enable_move"]);
- tmplSetMoveSettings();
- //
- tmplSetTitleBar("Administration - Dir Settings");
- tmplSetAdminMenu();
- tmplSetFoot();
- tmplSetIidVars();
- // parse template
- $tmpl->pparse();
- ?>
|