Ejemplo 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;
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>
Ejemplo n.º 2
0
<?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 = "";
if ($this->faq['published'] == 0) {
    $unpubclass = "content_edit_unpublished";
}
?>
<div class="<?php 
echo $unpubclass;
?>
">
	<?php 
echo $this->content->EditPanel($this->faq);
?>
Ejemplo n.º 3
0
 static function PageTitlePopup($title, $subtitle = "")
 {
     return FSF_Helper::PageTitle($title, $subtitle, 'display_popup');
 }
Ejemplo n.º 4
0
/**
 * @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;
function start_faq_col_item()
{
}
function end_faq_col_item()
{
}
echo FSF_Helper::PageStyle();
echo FSF_Helper::PageTitle("FREQUENTLY_ASKED_QUESTIONS", $this->curcattitle);
?>
<div class="fsf_spacer"></div>

<?php 
$acl = 1;
?>

<?php 
if ($this->showcats) {
    ?>
	
	<?php 
    echo FSF_Helper::PageSubTitle("PLEASE_SELECT_YOUR_QUESTION_CATEGORY");
    ?>
	<div class="fsf_faq_catlist" id='fsf_faq_catlist'>
Ejemplo n.º 5
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;
echo FSF_Helper::PageStyle();
echo FSF_Helper::PageTitle("FREQUENTLY_ASKED_QUESTIONS", "TAGS");
?>

	<div class="fsf_spacer"></div>
	<?php 
echo FSF_Helper::PageSubTitle("PLEASE_SELECT_A_TAG");
?>

	<div class='faq_category'>
	    <div class='faq_category_image'>
			<img src='<?php 
echo JURI::root(true);
?>
/components/com_fsf/assets/images/tags-64x64.png' width='64' height='64'>
	    </div>
	    <div class='fsf_spacer contentheading' style="padding-top:6px;padding-bottom:6px;">
			<?php 
if (FSF_Settings::Get('faq_cat_prefix')) {
    ?>
			<?php 
    echo JText::_("FAQS");
Ejemplo n.º 6
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";
 }