0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
[
Home
]
File: tiki-directory_search.php
<?php // $Header: /cvsroot/tikiwiki/tiki/tiki-directory_search.php,v 1.7.2.3 2006/11/02 14:35:43 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/directory/dirlib.php'); if ($feature_directory != 'y') { $smarty->assign('msg', tra("This feature is disabled").": feature_directory"); $smarty->display("error.tpl"); die; } if ($tiki_p_view_directory != 'y') { $smarty->assign('msg', tra("Permission denied")); $smarty->display("error.tpl"); die; } $smarty->assign('words', $_REQUEST['words']); $smarty->assign('where', $_REQUEST['where']); $smarty->assign('how', $_REQUEST['how']); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'hits_desc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } if (!isset($_REQUEST["offset"])) { $offset = 0; } else { $offset = $_REQUEST["offset"]; } if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign_by_ref('offset', $offset); $smarty->assign_by_ref('sort_mode', $sort_mode); $smarty->assign('find', $find); if ($_REQUEST['where'] == 'all') { $items = $dirlib->dir_search($_REQUEST['words'], $_REQUEST['how'], $offset, $maxRecords, $sort_mode); } else { $items = $dirlib->dir_search_cat($_REQUEST['parent'], $_REQUEST['words'], $_REQUEST['how'], $offset, $maxRecords, $sort_mode); } $cant_pages = ceil($items["cant"] / $maxRecords); $smarty->assign_by_ref('cant_pages', $cant_pages); $smarty->assign('actual_page', 1 + ($offset / $maxRecords)); if ($items["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('items', $items["data"]); $section = 'directory'; include_once ('tiki-section_options.php'); // Display the template $smarty->assign('mid', 'tiki-directory_search.tpl'); $smarty->display("tiki.tpl"); ?>