Exemplo n.º 1
0
<?php

/**
 * @package Freestyle Joomla
 * @author Freestyle Joomla
 * @copyright (C) 2013 Freestyle Joomla
 * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
?>

<?php 
echo $this->tmpl ? FSF_Helper::PageStylePopup() : FSF_Helper::PageStyle();
?>

<?php 
$width = "";
if (FSF_Settings::get('faq_popup_inner_width') > 0) {
    $width = " style='width:" . FSF_Settings::get('faq_popup_inner_width') . "px;' ";
}
if ($this->tmpl) {
    echo "<div {$width}>";
}
?>

<?php 
echo $this->tmpl ? FSF_Helper::PageTitlePopup("FREQUENTLY_ASKED_QUESTION") : FSF_Helper::PageTitle("FREQUENTLY_ASKED_QUESTION");
?>

<?php 
$unpubclass = "";
Exemplo n.º 2
0
<?php

/**
 * @package Freestyle Joomla
 * @author Freestyle Joomla
 * @copyright (C) 2013 Freestyle Joomla
 * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
**/
defined('_JEXEC') or die;
require_once JPATH_COMPONENT . DS . 'helper' . DS . 'glossary.php';
echo FSF_Helper::PageStyle();
echo FSF_Helper::PageTitle("GLOSSARY");
?>
<div class="fsf_spacer"></div>

<?php 
if ($this->use_letter_bar) {
    ?>
	<div class="fsf_glossary_letters">
	<?php 
    foreach ($this->letters as $letter => $ok) {
        ?>
		<?php 
        if (!$ok) {
            ?>
			<span class="letter-disabled">
				&nbsp;<?php 
            echo $letter;
            ?>
&nbsp;
			</span>
Exemplo n.º 3
0
 function Header()
 {
     // output the header stuff
     echo FSF_Helper::PageStyle();
     echo FSF_Helper::PageTitle("SUPPORT_ADMIN", "CONTENT_MANAGEMENT");
     include JPATH_SITE . DS . 'components' . DS . 'com_fsf' . DS . 'views' . DS . 'admin' . DS . 'snippet' . DS . '_tabbar.php';
     include JPATH_SITE . DS . 'components' . DS . 'com_fsf' . DS . 'views' . DS . 'admin' . DS . 'snippet' . DS . '_contentbar.php';
     //include "components/com_fsf/views/admin/snippet/_tabbar.php";
     //include "components/com_fsf/views/admin/snippet/_contentbar.php";
 }