Your IP : 216.73.217.112


Current Path : /home/z/i/e/zieirix/www/components/com_faqbookpro/views/topic/tmpl/
Upload File :
Current File : /home/z/i/e/zieirix/www/components/com_faqbookpro/views/topic/tmpl/default.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->params->get('show_page_title')):
	?><h1 class="componentheading<?php echo $this->params->get('pageclass_sfx')?>"><?php
		echo $this->escape($this->params->get('page_title'));
	?></h1><?php
endif;

?><div id="fbExtended" class="fbTopicExtended clearfix"><?php

  if ($this->topnavigation)
  {
    $data = array();
		$data['sectionId'] = $this->sectionId;
		$topnav = new JLayoutFile('fb_topnav');
		echo $topnav->render($data);
	}

  $data = array();
	$data['sectionId'] = $this->sectionId;
	$data['visible'] = $this->leftnavigation;
	$leftnav = new JLayoutFile('fb_leftnav');
	echo $leftnav->render($data);

	?><div class="fbContent_core">
		<div class="fb_loader"><?php
			$page_placeholder = new JLayoutFile('fb_page_placeholder');
			echo $page_placeholder->render();
		?></div>
		<div class="fbContent_root"><?php
      $data = array();
      $data['tab'] = $this->tab;
      $data['sectionId'] = $this->sectionId;
      $data['topic'] = $this->topic;
      $data['topic_params'] = $this->topic_params;
      $data['questions_params'] = $this->questions_params;
      $data['utilities'] = $this->utilities;
      $layout = new JLayoutFile('fb_topic');
      echo $layout->render($data);
    ?></div>
	</div>
</div>