Server IP : 184.154.167.98 / Your IP : 3.145.106.176 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/mesa/include/client/ |
Upload File : |
<div class="row"> <div class="span8"> <h1><?php echo __('Frequently Asked Questions');?></h1> <div><strong><?php echo __('Search Results'); ?></strong></div> <?php if ($faqs->exists(true)) { echo '<div id="faq">'.sprintf(__('%d FAQs matched your search criteria.'), $faqs->count()) .'<ol>'; foreach ($faqs as $F) { echo sprintf( '<li><a href="faq.php?id=%d" class="previewfaq">%s</a></li>', $F->getId(), $F->getLocalQuestion(), $F->getVisibilityDescription()); } echo '</ol></div>'; } else { echo '<strong class="faded">'.__('The search did not match any FAQs.').'</strong>'; } ?> </div> <div class="span4"> <div class="sidebar"> <div class="searchbar"> <form method="get" action="faq.php"> <input type="hidden" name="a" value="search"/> <input type="text" name="q" class="search" placeholder="<?php echo __('Search our knowledge base'); ?>"/> <input type="submit" style="display:none" value="search"/> </form> </div> <div class="content"> <section> <div class="header"><?php echo __('Help Topics'); ?></div> <?php foreach (Topic::objects() ->annotate(array('faqs_count'=>SqlAggregate::COUNT('faqs'))) ->filter(array('faqs_count__gt'=>0)) as $t) { ?> <div><a href="?topicId=<?php echo urlencode($t->getId()); ?>" ><?php echo $t->getFullName(); ?></a></div> <?php } ?> </section> <section> <div class="header"><?php echo __('Categories'); ?></div> <?php foreach (Category::objects() ->exclude(Q::any(array('ispublic'=>Category::VISIBILITY_PRIVATE))) ->annotate(array('faqs_count'=>SqlAggregate::COUNT('faqs'))) ->filter(array('faqs_count__gt'=>0)) as $C) { ?> <div><a href="?cid=<?php echo urlencode($C->getId()); ?>" ><?php echo $C->getLocalName(); ?></a></div> <?php } ?> </section> </div> </div> </div> </div>