Current File : /home/escuelai/public_html/PrimariaEi/include/staff/faq-category.inc.php |
<?php
if(!defined('OSTSTAFFINC') || !$category || !$thisstaff) die('Access Denied');
?>
<div class="pull-left" style="width:700px;padding-top:10px;">
<h2><?php echo __('Frequently Asked Questions');?></h2>
</div>
<div class="pull-right flush-right" style="padding-top:5px;padding-right:5px;"> </div>
<div class="clear"></div>
<br>
<div>
<strong><?php echo $category->getName() ?></strong>
<span>(<?php echo $category->isPublic()?__('Public'):__('Internal'); ?>)</span>
<time> <?php echo __('Last updated').' '. Format::db_daydatetime($category->getUpdateDate()); ?></time>
</div>
<div class="cat-desc">
<?php echo Format::display($category->getDescription()); ?>
</div>
<?php
if($thisstaff->canManageFAQ()) {
echo sprintf('<div class="cat-manage-bar"><a href="categories.php?id=%d" class="Icon editCategory">'.__('Edit Category').'</a>
<a href="categories.php" class="Icon deleteCategory">'.__('Delete Category').'</a>
<a href="faq.php?cid=%d&a=add" class="Icon newFAQ">'.__('Add New FAQ').'</a></div>',
$category->getId(),
$category->getId());
} else {
?>
<hr>
<?php
}
$sql='SELECT faq.faq_id, question, ispublished, count(attach.file_id) as attachments '
.' FROM '.FAQ_TABLE.' faq '
.' LEFT JOIN '.ATTACHMENT_TABLE.' attach
ON(attach.object_id=faq.faq_id AND attach.type=\'F\' AND attach.inline = 0) '
.' WHERE faq.category_id='.db_input($category->getId())
.' GROUP BY faq.faq_id ORDER BY question';
if(($res=db_query($sql)) && db_num_rows($res)) {
echo '<div id="faq">
<ol>';
while($row=db_fetch_array($res)) {
echo sprintf('
<li><a href="faq.php?id=%d" class="previewfaq">%s <span>- %s</span></a></li>',
$row['faq_id'],$row['question'],$row['ispublished']?__('Published'):__('Internal'));
}
echo ' </ol>
</div>';
}else {
echo '<strong>'.__('Category does not have FAQs').'</strong>';
}
?>