0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
[
Home
]
File: tiki-view_faq.php
<?php /** * @package tikiwiki */ // (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: tiki-view_faq.php 53802 2015-02-06 00:11:35Z jyhem $ $section = 'faqs'; require_once ('tiki-setup.php'); $faqlib = TikiLib::lib('faq'); if ($prefs['feature_categories'] == 'y') { $categlib = TikiLib::lib('categ'); } $access->check_feature('feature_faqs'); if (!isset($_REQUEST["faqId"])) { $smarty->assign('msg', tra("No FAQ indicated")); $smarty->display("error.tpl"); die; } $tikilib->get_perm_object($_REQUEST['faqId'], 'faq'); $access->check_permission('tiki_p_view_faqs'); $faqlib->add_faq_hit($_REQUEST["faqId"]); $smarty->assign('faqId', $_REQUEST["faqId"]); $faq_info = $faqlib->get_faq($_REQUEST["faqId"]); $smarty->assign('faq_info', $faq_info); if (!isset($_REQUEST["sort_mode"])) { $sort_mode = 'position_asc,questionId_asc'; } else { $sort_mode = $_REQUEST["sort_mode"]; } if (isset($_REQUEST["find"])) { $find = $_REQUEST["find"]; } else { $find = ''; } $smarty->assign('find', $find); $channels = $faqlib->list_faq_questions($_REQUEST["faqId"], 0, -1, 'position_asc,questionId_asc', $find); $smarty->assign_by_ref('channels', $channels["data"]); if (isset($_REQUEST["sugg"])) { check_ticket('view-faq'); if ($tiki_p_suggest_faq == 'y') { if (empty($user) && $prefs['feature_antibot'] == 'y' && !$captchalib->validate()) { $error = $captchalib->getErrors(); $smarty->assign('error', $error); // Save the pending question and answer if antibot code is wrong $smarty->assign('pendingquestion', $_REQUEST["suggested_question"]); $smarty->assign('pendinganswer', $_REQUEST["suggested_answer"]); } else { if (!empty($_REQUEST["suggested_question"])) { $faqlib->add_suggested_faq_question($_REQUEST["faqId"], $_REQUEST["suggested_question"], $_REQUEST["suggested_answer"], $user); } else { $error = tra('You must suggest a question; please try again.'); $smarty->assign('error', $error); // Save the pending answer if question is empty $smarty->assign('pendinganswer', $_REQUEST["suggested_answer"]); } } } } $suggested = $faqlib->list_suggested_questions(0, -1, 'created_desc', '', $_REQUEST["faqId"]); $smarty->assign_by_ref('suggested', $suggested["data"]); $smarty->assign('suggested_cant', count($suggested["data"])); include_once ('tiki-section_options.php'); if ($prefs['feature_theme_control'] == 'y') { $cat_type = 'faq'; $cat_objid = $_REQUEST["faqId"]; include ('tiki-tc.php'); } ask_ticket('view-faq'); // Display the template $smarty->assign('mid', 'tiki-view_faq.tpl'); if (isset($_REQUEST['print'])) { $smarty->display('tiki-print.tpl'); $smarty->assign('print', 'y'); } else { $smarty->display("tiki.tpl"); }