コード例 #1
0
ファイル: helper.php プロジェクト: AxelFG/ckbran-inf
 static function PageTitlePopup($title, $subtitle = "")
 {
     return FST_Helper::PageTitle($title, $subtitle, 'display_popup');
 }
コード例 #2
0
ファイル: default_single.php プロジェクト: AxelFG/ckbran-inf
<?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 FST_Helper::PageStyle();
echo FST_Helper::PageTitle("TESTIMONIALS", $this->product['title']);
$hideprodlink = 1;
$product =& $this->product;
include JPATH_SITE . DS . 'components' . DS . 'com_fst' . DS . 'views' . DS . 'test' . DS . 'snippet' . DS . '_prod.php';
//include "components/com_fst/views/test/snippet/_prod.php"
?>
<div class="fst_spacer"></div>
<div class="fst_clear"></div>
<?php 
$count = $this->comments->DisplayComments();
if ($count == 0) {
    ?>
	<?php 
    if ($product['id'] == 0) {
        ?>
		<?php 
        if ($product['title'] != "") {
            ?>
コード例 #3
0
ファイル: noperm.php プロジェクト: AxelFG/ckbran-inf
<?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 FST_Helper::PageStyle();
echo FST_Helper::PageTitle('SUPPORT_ADMIN', "NO_PERM");
?>
<div class="fst_clear"></div>
<p class="notice">
<?php 
echo JText::_("YOU_DO_NOT_HAVE_PERMISSION_TO_PERFORM_AND_SUPPORT_ADMINISTRATION_ACTIVITIES");
?>
</p>

<?php 
$user = JFactory::getUser();
if ($user->id == 0) {
    ?>
<div class="fst_ticket_login_head"><?php 
    echo JText::_("LOGIN");
    ?>
</div>
<div class="fst_ticket_login_subtext"><?php 
    echo JText::_("LOG_IN_TO_AN_EXISTING_ACCOUNT");
    ?>
</div>
コード例 #4
0
ファイル: moderate.php プロジェクト: AxelFG/ckbran-inf
<?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 FST_Helper::PageStyle();
if (FST_Helper::IsTests()) {
    ?>
	<?php 
    echo FST_Helper::PageTitle('COMMENT_MODERATION');
} else {
    ?>
	<?php 
    echo FST_Helper::PageTitle('SUPPORT_ADMIN', 'COMMENT_MODERATION');
}
//
$this->comments->DisplayModerate();
include JPATH_SITE . DS . 'components' . DS . 'com_fst' . DS . '_powered.php';
echo FST_Helper::PageStyleEnd();
コード例 #5
0
ファイル: default.php プロジェクト: AxelFG/ckbran-inf
<?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 FST_Helper::PageStyle();
echo FST_Helper::PageTitle("TESTIMONIALS");
?>
<div class="fst_spacer"></div>
<?php 
$this->comments->DisplayAdd();
?>
<div class="fst_spacer"></div>
<?php 
if (!empty($this->showresult)) {
    ?>
	<div class='fst_comments_result_<?php 
    echo $this->comments->uid;
    ?>
'></div>
<?php 
}
?>
<div id="comments"></div>
コード例 #6
0
ファイル: create.php プロジェクト: AxelFG/ckbran-inf
/**
 * @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 ? FST_Helper::PageStylePopup() : FST_Helper::PageStyle();
?>


	<?php 
echo $this->tmpl ? FST_Helper::PageTitlePopup("TESTIMONIALS", "ADD_A_TESTIMONIAL") : FST_Helper::PageTitle("TESTIMONIALS", "ADD_A_TESTIMONIAL");
?>
	<div class='fst_kb_comment_add' id='add_comment'>
		<?php 
$this->comments->DisplayAdd();
?>
	</div>

	<div id="comments"></div>

	<div class='fst_comments_result_<?php 
echo $this->comments->uid;
?>
'></div>

<?php