0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
[
Home
]
File: tiki-admin_include_wikiatt.php
<?php // $Id: /cvsroot/tikiwiki/tiki/tiki-admin_include_wikiatt.php,v 1.7 2007-10-12 07:55:24 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; } global $wikilib; include_once('lib/wiki/wikilib.php'); if (isset($_REQUEST['action']) and isset($_REQUEST['attId'])) { check_ticket('admin-inc-wikiatt'); $item = $wikilib->get_item_attachment($_REQUEST['attId']); if ($_REQUEST['action'] == 'move2db') { $wikilib->file_to_db($prefs['w_use_dir'].$item['path'],$_REQUEST['attId']); } elseif ($_REQUEST['action'] == 'move2file') { $wikilib->db_to_file($prefs['w_use_dir'] . md5($item['filename']),$_REQUEST['attId']); } } if (!isset($_REQUEST["find"])) { $find = ''; } else { $find = $_REQUEST["find"]; } $smarty->assign_by_ref('find', $find); if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'created_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('sort_mode', $sort_mode); if (isset($_REQUEST["all2db"])) { $attachements = $wikilib->list_all_attachements(); for ($i=0;$i<$attachements['cant'];$i++) { if ($attachements['data'][$i]['path']) { $wikilib->file_to_db($prefs['w_use_dir'].$attachements['data'][$i]['path'],$attachements['data'][$i]['attId']); } } } elseif (isset($_REQUEST["all2file"])) { $attachements = $wikilib->list_all_attachements(); for ($i=0;$i<$attachements['cant'];$i++) { if (!$attachements['data'][$i]['path']) { $wikilib->db_to_file($prefs['w_use_dir']. md5($attachements['data'][$i]['filename']),$attachements['data'][$i]['attId']); } } } $attachements = $wikilib->list_all_attachements($offset,$maxRecords,$sort_mode,$find); $smarty->assign_by_ref('cant_pages', $attachements['cant']); $smarty->assign_by_ref('attachements', $attachements['data']); $urlquery['find'] = $find; $urlquery['page'] = 'wikiatt'; $urlquery['sort_mode'] = $sort_mode; $smarty->assign_by_ref('urlquery', $urlquery); ask_ticket('admin-inc-wikiatt'); ?>