0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-list_trackers.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-list_trackers.php,v 1.12.2.6 2006/11/02 14:35:45 sylvieg Exp $ // Copyright (c) 2002-2005, 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. // Initialization require_once ('tiki-setup.php'); include_once ('lib/trackers/trackerlib.php'); if ($feature_trackers != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_trackers"); $smarty->display("error.tpl"); die; } if ($tiki_p_view_trackers != 'y') { $smarty->assign('msg', tra("You do not have permission to use this feature")); $smarty->display("error.tpl"); die; } if (!isset($_REQUEST["trackerId"])) { $_REQUEST["trackerId"] = 0; } $smarty->assign('trackerId', $_REQUEST["trackerId"]); if ($_REQUEST["trackerId"]) { $info = $trklib->get_tracker($_REQUEST["trackerId"]); } else { $info = array(); $info["name"] = ''; $info["description"] = ''; } $smarty->assign('name', $info["name"]); $smarty->assign('description', $info["description"]); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'created_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); $smarty->assign_by_ref('sort_mode', $sort_mode); $channels = $trklib->list_trackers($offset, $maxRecords, $sort_mode, $find); $temp_max = count($channels["data"]); for ($i = 0; $i < $temp_max; $i++) { if ($userlib->object_has_one_permission($channels["data"][$i]["trackerId"], 'tracker')) { $channels["data"][$i]["individual"] = 'y'; $channels["data"][$i]["individual_tiki_p_view_trackers"] = 'y'; if ($tiki_p_admin == 'y' || $userlib->object_has_permission($user, $channels["data"][$i]["trackerId"], 'tracker', 'tiki_p_admin_trackers')) { $channels["data"][$i]["individual_tiki_p_view_trackers"] = 'y'; } } else { $channels["data"][$i]["individual"] = 'n'; } } $cant_pages = ceil($channels["cant"] / $maxRecords); $smarty->assign_by_ref('cant_pages', $cant_pages); $smarty->assign('actual_page', 1 + ($offset / $maxRecords)); if ($channels["cant"] > ($offset + $maxRecords)) { $smarty->assign('next_offset', $offset + $maxRecords); } else { $smarty->assign('next_offset', -1); } // If offset is > 0 then prev_offset if ($offset > 0) { $smarty->assign('prev_offset', $offset - $maxRecords); } else { $smarty->assign('prev_offset', -1); } $section = 'trackers'; include_once('tiki-section_options.php'); $smarty->assign_by_ref('channels', $channels["data"]); ask_ticket('list-trackers'); // Display the template $smarty->assign('mid', 'tiki-list_trackers.tpl'); $smarty->display("tiki.tpl"); ?>