| Current Path : /home/z/i/e/zieirix/www/components/com_faqbookpro/views/section/tmpl/ |
| Current File : /home/z/i/e/zieirix/www/components/com_faqbookpro/views/section/tmpl/default_popquestions.php |
<?php
/**
* @title Minitek FAQ Book
* @copyright Copyright (C) 2011-2020 Minitek, All rights reserved.
* @license GNU General Public License version 3 or later.
* @author url https://www.minitek.gr/
* @developers Minitek.gr
*/
defined('_JEXEC') or die;
if ($this->popular_questions_header) {
?><h2 class="fbContent_title">
<?php echo JText::_('COM_FAQBOOKPRO_POPULAR_QUESTIONS'); ?>
</h2><?php
}
if (count($this->popular_questions))
{
?><div id="fb_popQuestions">
<ul class="fbContent_popQuestions clearfix"><?php
foreach ($this->popular_questions as $key => $question)
{
?><li>
<a href="<?php echo JRoute::_(FaqBookProHelperRoute::getQuestionRoute($question->id, $question->topicid)); ?>">
<?php echo $question->title; ?>
</a><?php
if ($this->popular_questions_description && $question->content)
{
?><p>
<?php echo $this->utilities->getWordLimit($question->content, $this->popular_questions_description_limit); ?>
</p><?php
}
?></li><?php
}
?></ul>
</div><?php
}