0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_include_fgal.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-admin_include_fgal.php,v 1.28.2.2 2008-03-16 00:06:53 nyloth Exp $ // Copyright (c) 2002-2007, Luis Argerich, Garland Foster, Eduardo Polidor, et. al. // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } include_once('lib/filegals/filegallib.php'); if (isset($_REQUEST["filegalset"])) { simple_set_value("home_file_gallery"); } if (isset($_REQUEST["filegalfeatures"])) { check_ticket('admin-inc-fgal'); simple_set_toggle("feature_file_galleries_rankings"); simple_set_toggle("feature_file_galleries_batch"); simple_set_toggle("fgal_limit_hits_per_file"); simple_set_toggle("fgal_prevent_negative_score"); simple_set_value("fgal_match_regex"); simple_set_value("fgal_nmatch_regex"); // Check for last character being a / or a \ if (substr($_REQUEST["fgal_use_dir"], -1) != "\\" && substr($_REQUEST["fgal_use_dir"], -1) != "/" && $_REQUEST["fgal_use_dir"] != "") { $_REQUEST["fgal_use_dir"] .= "/"; } // Check for last character being a / or a \ if (substr($_REQUEST["fgal_podcast_dir"], -1) != "\\" && substr($_REQUEST["fgal_podcast_dir"], -1) != "/" && $_REQUEST["fgal_podcast_dir"] != "") { $_REQUEST["fgal_podcast_dir"] .= "/"; } if (substr($_REQUEST["fgal_batch_dir"], -1) != "\\" && substr($_REQUEST["fgal_batch_dir"], -1) != "/" && $_REQUEST["fgal_batch_dir"] != "") { $_REQUEST["fgal_batch_dir"] .= "/"; } simple_set_value("fgal_use_db"); simple_set_value("fgal_use_dir"); simple_set_value("fgal_podcast_dir"); simple_set_value("fgal_batch_dir"); simple_set_value("fgal_allow_duplicates"); simple_set_toggle("feature_file_galleries_comments"); simple_set_toggle("feature_file_galleries_author"); } if (isset($_REQUEST["filegallistprefs"])) { check_ticket('admin-inc-fgal'); simple_set_value('fgal_list_id'); simple_set_value('fgal_list_type'); simple_set_value('fgal_list_name'); simple_set_value('fgal_list_description'); simple_set_value('fgal_list_size'); simple_set_value('fgal_list_created'); simple_set_value('fgal_list_lastmodif'); simple_set_value('fgal_list_creator'); simple_set_value('fgal_list_author'); simple_set_value('fgal_list_last_user'); simple_set_value('fgal_list_comment'); simple_set_value('fgal_list_files'); simple_set_value('fgal_list_hits'); simple_set_value('fgal_list_lockedby'); $_REQUEST['fgal_sort_mode'] = (empty($_REQUEST['fgal_sortorder'])?'created':$_REQUEST['fgal_sortorder']).'_'.(empty($_REQUEST['fgal_sortdirection'])?'desc':$_REQUEST['fgal_sortdirection']); $prefs['fgal_sort_mode'] = $_REQUEST['fgal_sort_mode']; simple_set_value('fgal_sort_mode'); simple_set_toggle('fgal_show_explorer'); simple_set_toggle('fgal_show_path'); simple_set_toggle('fgal_show_slideshow'); simple_set_value('fgal_default_view'); } if (isset($_REQUEST["filegalcomprefs"])) { check_ticket('admin-inc-fgal'); simple_set_value("file_galleries_comments_per_page"); simple_set_value("file_galleries_comments_default_ordering"); } if (isset($_REQUEST["filegalhandlers"])) { check_ticket('admin-inc-fgal'); $mimes = $_REQUEST["mimes"]; foreach($mimes as $mime=>$cmd) { $mime = trim($mime); if (empty($cmd)) $filegallib->delete_file_handler($mime); else $filegallib->change_file_handler($mime,$cmd); } if (!empty($_REQUEST['newMime']) && !empty($_REQUEST['newCmd'])) { $filegallib->change_file_handler($_REQUEST['newMime'],$_REQUEST['newCmd']); } if (isset($_REQUEST["fgal_enable_auto_indexing"])) { $tikilib->set_preference("fgal_enable_auto_indexing", 'y'); } else { $tikilib->set_preference("fgal_enable_auto_indexing", 'n'); } } if (isset($_REQUEST["filegalredosearch"])) { $filegallib->reindex_all_files_for_search_text(); } if (!empty($prefs['fgal_sort_mode']) && preg_match('/(.*)_(asc|desc)/', $prefs['fgal_sort_mode'], $matches)) { $smarty->assign('fgal_sortorder',$matches[1]); $smarty->assign('fgal_sortdirection', $matches[2]); } else { $smarty->assign('fgal_sortorder', 'created'); $smarty->assign('fgal_sortdirection', 'desc'); } $options_sortorder = array(tra('Creation Date')=>'created', tra('Name')=>'name', tra('Last modification date')=>'lastModif', tra('Hits')=>'hits', tra('Owner') => 'user', tra('Description') => 'description', tra('ID') => 'id'); $smarty->assign_by_ref('options_sortorder', $options_sortorder); $handlers = $filegallib->get_file_handlers(); ksort($handlers); $smarty->assign("fgal_handlers",$handlers); include_once('fgal_listing_conf.php'); $file_galleries = $tikilib->list_visible_file_galleries(0, -1, 'name_desc', 'admin', ''); $smarty->assign_by_ref('file_galleries', $file_galleries["data"]); ask_ticket('admin-inc-fgal'); ?>