%PDF- %PDF-
Direktori : /home/komfo908/public_html/suporte/_old/admin/ |
Current File : /home/komfo908/public_html/suporte/_old/admin/admin_suggest_articles.php |
<?php /** * * This file is part of HESK - PHP Help Desk Software. * * (c) Copyright Klemen Stirn. All rights reserved. * https://www.hesk.com * * For the full copyright and license agreement information visit * https://www.hesk.com/eula.php * */ define('IN_SCRIPT',1); define('HESK_PATH','../'); /* Get all the required files and functions */ require(HESK_PATH . 'hesk_settings.inc.php'); require(HESK_PATH . 'inc/common.inc.php'); require(HESK_PATH . 'inc/admin_functions.inc.php'); hesk_load_database_functions(); hesk_session_start(); hesk_dbConnect(); hesk_isLoggedIn(); /* Print XML header */ header('Content-Type: text/html; charset='.$hesklang['ENCODING']); /* Get the search query composed of the subject and message */ $query = hesk_REQUEST('q') or die(''); /* Get relevant articles from the database, include private ones */ $res = hesk_dbQuery("SELECT `id`, `subject`, `content` FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."kb_articles` WHERE `type` IN ('0','1') AND MATCH(`subject`,`content`,`keywords`) AGAINST ('".hesk_dbEscape($query)."') LIMIT ".intval($hesk_settings['kb_search_limit'])); $num = hesk_dbNumRows($res); /* Solve some spacing issues */ if ( hesk_isREQUEST('p') ) { echo ' <br />'; } /* Return found articles */ ?> <div class="notice"> <span style="font-size:12px;font-weight:bold"><?php echo $hesklang['sc']; ?>:</span><br /> <br /> <?php if (!$num) { echo '<i>'.$hesklang['nsfo'].'</i>'; } else { while ($article = hesk_dbFetchAssoc($res)) { $txt = strip_tags($article['content']); if (hesk_mb_strlen($txt) > $hesk_settings['kb_substrart']) { $txt = hesk_mb_substr($txt, 0, $hesk_settings['kb_substrart']).'...'; } echo ' <a href="knowledgebase_private.php?article='.$article['id'].'&suggest=1" target="_blank">'.$article['subject'].'</a> <br />'.$txt.'<br /><br />'; } } ?> </div> <?php exit(); ?>