Skip to content
Snippets Groups Projects
faq-category.inc.php 1.25 KiB
Newer Older
Jared Hancock's avatar
Jared Hancock committed
<?php
if(!defined('OSTCLIENTINC') || !$category || !$category->isPublic()) die('Access Denied');
?>
<h1><strong><?php echo $category->getName() ?></strong></h1>
Jared Hancock's avatar
Jared Hancock committed
<p>
<?php echo Format::safe_html($category->getDescription()); ?>
</p>
<hr>
<?php
$sql='SELECT faq.faq_id, question, count(attach.file_id) as attachments '
Jared Hancock's avatar
Jared Hancock committed
    .' FROM '.FAQ_TABLE.' faq '
    .' LEFT JOIN '.ATTACHMENT_TABLE.' attach
         ON(attach.object_id=faq.faq_id AND attach.type=\'F\' AND attach.inline = 0) '
Jared Hancock's avatar
Jared Hancock committed
    .' WHERE faq.ispublished=1 AND faq.category_id='.db_input($category->getId())
Peter Rotich's avatar
Peter Rotich committed
    .' GROUP BY faq.faq_id '
    .' ORDER BY question';
Jared Hancock's avatar
Jared Hancock committed
if(($res=db_query($sql)) && db_num_rows($res)) {
    echo '
         <h2>Frequently Asked Questions</h2>
         <div id="faq">
Jared Hancock's avatar
Jared Hancock committed
            <ol>';
    while($row=db_fetch_array($res)) {
        $attachments=$row['attachments']?'<span class="Icon file"></span>':'';
Jared Hancock's avatar
Jared Hancock committed
        echo sprintf('
            <li><a href="faq.php?id=%d" >%s &nbsp;%s</a></li>',
            $row['faq_id'],Format::htmlchars($row['question']), $attachments);
Jared Hancock's avatar
Jared Hancock committed
    }
    echo '  </ol>
         </div>
         <p><a class="back" href="index.php">&laquo; Go Back</a></p>';
Jared Hancock's avatar
Jared Hancock committed
}else {
    echo '<strong>Category does not have any FAQs. <a href="index.php">Back To Index</a></strong>';
}
?>