0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-forums.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-forums.php 33195 2011-03-02 17:43:40Z changi67 $ $section = 'forums'; require_once ('tiki-setup.php'); $auto_query_args = array('sort_mode', 'offset', 'find', 'mode'); $smarty->assign('headtitle',tra('Forums')); $access->check_feature('feature_forums'); $access->check_permission('tiki_p_forum_read'); // This shows a list of forums everybody can use this listing include_once ("lib/comments/commentslib.php"); $commentslib = new Comments($dbTiki); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = $prefs['forums_ordering']; } 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 = $commentslib->list_forums($offset, $maxRecords, $sort_mode, $find); Perms::bulk( array( 'type' => 'forum' ), 'object', $channels['data'], 'forumId' ); $temp_max = count($channels["data"]); for ($i = 0; $i < $temp_max; $i++) { $forumperms = Perms::get( array( 'type' => 'forum', 'object' => $channels['data'][$i]['forumId'] ) ); $channels["data"][$i]["individual_tiki_p_forum_read"] = $forumperms->forum_read ? 'y' : 'n'; $channels["data"][$i]["individual_tiki_p_forum_post"] = $forumperms->forum_post ? 'y' : 'n'; $channels["data"][$i]["individual_tiki_p_forum_post_topic"] = $forumperms->forum_post_topic ? 'y' : 'n'; $channels["data"][$i]["individual_tiki_p_forum_vote"] = $forumperms->forum_vote ? 'y' : 'n'; $channels["data"][$i]["individual_tiki_p_admin_forum"] = $forumperms->admin_forum ? 'y' : 'n'; } $smarty->assign_by_ref('channels', $channels["data"]); $smarty->assign('cant',$channels["cant"]); include_once ('tiki-section_options.php'); ask_ticket('forums'); // Display the template $smarty->assign('mid', 'tiki-forums.tpl'); $smarty->display("tiki.tpl");