0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
admin
/
[
Home
]
File: include_trackers.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // 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. // $Id: include_trackers.php 53804 2015-02-06 00:50:16Z jyhem $ //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; } $trklib = TikiLib::lib('trk'); if (isset($_REQUEST['trkset'])) { check_ticket('admin-inc-trackers'); $tikilib->set_preference('t_use_db', $_REQUEST['t_use_db']); if (substr($_REQUEST['t_use_dir'], -1) != '\\' && substr($_REQUEST['t_use_dir'], -1) != '/' && $_REQUEST['t_use_dir'] != '') { $_REQUEST['t_use_dir'] .= '/'; } $tikilib->set_preference('t_use_dir', $_REQUEST['t_use_dir']); } if (isset($_REQUEST['action']) and isset($_REQUEST['attId'])) { $item = $trklib->get_item_attachment($_REQUEST['attId']); if ($_REQUEST['action'] == 'move2db') { $trklib->file_to_db($prefs['t_use_dir'] . $item['path'], $_REQUEST['attId']); } elseif ($_REQUEST['action'] == 'move2file') { $trklib->db_to_file($prefs['t_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 = $trklib->list_all_attachements(); for ($i = 0; $i < $attachements['cant']; $i++) { if ($attachements['data'][$i]['path']) { $trklib->file_to_db($prefs['t_use_dir'] . $attachements['data'][$i]['path'], $attachements['data'][$i]['attId']); } } } elseif (isset($_REQUEST['all2file'])) { $attachements = $trklib->list_all_attachements(); for ($i = 0; $i < $attachements['cant']; $i++) { if (!$attachements['data'][$i]['path']) { $trklib->db_to_file($prefs['t_use_dir'] . md5($attachements['data'][$i]['filename']), $attachements['data'][$i]['attId']); } } } $attachements = $trklib->list_all_attachements($offset, $maxRecords, $sort_mode, $find); $smarty->assign_by_ref('cant_pages', $attachements['cant']); $headerlib->add_cssfile('themes/base_files/feature_css/admin.css'); $smarty->assign_by_ref('attachements', $attachements['data']); $urlquery['find'] = $find; $urlquery['page'] = 'trackers'; $urlquery['sort_mode'] = $sort_mode; $smarty->assign_by_ref('urlquery', $urlquery); ask_ticket('admin-inc-trackers'); $factory = new Tracker_Field_Factory(false); $fieldPreferences = array(); foreach ($factory->getFieldTypes() as $type) { $fieldPreferences[] = array_shift($type['prefs']); } $smarty->assign('fieldPreferences', $fieldPreferences);