PATH:
home
/
centosnipponia
/
public_html
/
ticketing.nipponia.com
/
osta
/
old
/
include
/
client
<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>
[+]
..
[-] login.inc.php
[edit]
[-] accesslink.inc.php
[edit]
[-] register.confirmed.inc.php
[edit]
[-] faq.inc.php
[edit]
[-] pwreset.request.php
[edit]
[-] register.inc.php
[edit]
[-] open.inc.php
[edit]
[-] header.inc.php
[edit]
[-] register.confirm.inc.php
[edit]
[-] kb-categories.inc.php
[edit]
[-] faq-category.inc.php
[edit]
[-] kb-search.inc.php
[edit]
[-] pwreset.sent.php
[edit]
[-] profile.inc.php
[edit]
[-] view.inc.php
[edit]
[-] pwreset.login.php
[edit]
[-] knowledgebase.inc.php
[edit]
[+]
templates
[-] tickets.inc.php
[edit]
[-] footer.inc.php
[edit]
[-] edit.inc.php
[edit]