0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-lastchanges.php
<?php // (c) Copyright 2002-2011 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: tiki-lastchanges.php 33195 2011-03-02 17:43:40Z changi67 $ $section = 'wiki page'; $section_class = "tiki_wiki_page manage"; // This will be body class instead of $section require_once ('tiki-setup.php'); include_once ('lib/wiki/histlib.php'); $auto_query_args = array('sort_mode', 'offset', 'find', 'days'); $smarty->assign('headtitle', tra('Last Changes')); $access->check_feature('feature_wiki'); $access->check_feature('feature_lastChanges'); $access->check_permission('tiki_p_view'); if (!isset($_REQUEST["find"])) { $findwhat = ''; } else { $findwhat = $_REQUEST["find"]; } $smarty->assign('find', $findwhat); if (!isset($_REQUEST["days"])) { $days = 1; } else { $days = $_REQUEST["days"]; } if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'lastModif_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } $smarty->assign_by_ref('days', $days); $smarty->assign_by_ref('findwhat', $findwhat); $smarty->assign_by_ref('sort_mode', $sort_mode); if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } $smarty->assign_by_ref('offset', $offset); // Get a list of last changes to the Wiki database $more = 0; $lastchanges = $histlib->get_last_changes($days, $offset, $maxRecords, $sort_mode, $findwhat); $smarty->assign_by_ref('cant_records', $lastchanges["cant"]); // If there're more records then assign next_offset $cant_pages = ceil($lastchanges["cant"] / $maxRecords); $smarty->assign_by_ref('cant_pages', $cant_pages); $smarty->assign('actual_page', 1 + ($offset / $maxRecords)); if ($lastchanges["cant"] > ($offset + $maxRecords)) { $smarty->assign('next_offset', $offset + $maxRecords); } else { $smarty->assign('next_offset', -1); } if ($offset > 0) { $smarty->assign('prev_offset', $offset - $maxRecords); } else { $smarty->assign('prev_offset', -1); } $smarty->assign_by_ref('lastchanges', $lastchanges["data"]); ask_ticket('lastchanges'); include_once ('tiki-section_options.php'); // disallow robots to index page: $smarty->assign('metatag_robots', 'NOINDEX, NOFOLLOW'); // Display the template $smarty->assign('mid', 'tiki-lastchanges.tpl'); $smarty->display("tiki.tpl");