Server IP : 184.154.167.98 / Your IP : 3.15.198.120 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 : 8.2.26 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 : |
<?php if(!defined('OSTCLIENTINC') || !$faq || !$faq->isPublished()) die('Access Denied'); $category=$faq->getCategory(); ?> <div class="row"> <div class="span8"> <h1><?php echo __('Frequently Asked Question');?></h1> <div id="breadcrumbs" style="padding-top:2px;"> <a href="index.php"><?php echo __('All Categories');?></a> » <a href="faq.php?cid=<?php echo $category->getId(); ?>"><?php echo $category->getFullName(); ?></a> </div> <div class="faq-content"> <div class="article-title flush-left"> <?php echo $faq->getLocalQuestion() ?> </div> <div class="faded"><?php echo sprintf(__('Last Updated %s'), Format::relativeTime(Misc::db2gmtime($faq->getUpdateDate()))); ?></div> <br/> <div class="thread-body bleed"> <?php echo $faq->getLocalAnswerWithImages(); ?> </div> </div> </div> <div class="span4 pull-right"> <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"><?php if ($attachments = $faq->getLocalAttachments()->all()) { ?> <section> <strong><?php echo __('Attachments');?>:</strong> <?php foreach ($attachments as $att) { ?> <div> <a href="<?php echo $att->file->getDownloadUrl(['id' => $att->getId()]); ?>" class="no-pjax"> <i class="icon-file"></i> <?php echo Format::htmlchars($att->getFilename()); ?> </a> </div> <?php } ?> </section> <?php } if ($faq->getHelpTopics()->count()) { ?> <section> <strong><?php echo __('Help Topics'); ?></strong> <?php foreach ($faq->getHelpTopics() as $T) { ?> <div><?php echo $T->topic->getFullName(); ?></div> <?php } ?> </section> <?php } ?></div> </div> </div> </div>