Example #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;
FSS_Helper::ModuleStart("mod_fss_support mod_fss_support_admin");
require_once JPATH_SITE . DS . 'components' . DS . 'com_fss' . DS . 'helper' . DS . 'support_tickets.php';
?>
 

<?php 
if (FSS_Permission::auth("fss.handler", "com_fss.support_admin") && !$params->get('hide_tickets')) {
    ?>
	<?php 
    if (FSS_Permission::CanModerate() && !$params->get('hide_moderate')) {
        ?>
		<h4><?php 
        echo JText::_("SUPPORT_TICKETS");
        ?>
</h4>
	<?php 
    }
    ?>
	
	<ul>	
		<?php 
    FSS_Ticket_Helper::GetStatusList();
Example #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;
FSS_Helper::ModuleStart("mod_fss_test");
$ident = mt_rand(1, 1000);
?>

<?php 
if ($maxheight > 0) {
    ?>

<?php 
    if ($loop_scroll) {
        ?>
	
<script>
(function(jQuery, undefined) {
  jQuery.fn.loopScroll = function(p_options) {
	var options = jQuery.extend({
        direction: "upwards",
        speed: <?php 
        echo $speed;
        ?>
    }, p_options);
Example #3
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;
FSS_Helper::ModuleStart("mod_fss_kbart");
?>


<?php 
if ($maxheight > 0) {
    ?>
<script>

jQuery(document).ready(function () {
	setTimeout("kbartmod_scrollDown()",3000);
});

function kbartmod_scrollDown()
{
	var settings = { 
		direction: "down", 
		step: 40, 
		scroll: true, 
		onEdge: function (edge) { 
			if (edge.y == "bottom")
			{
Example #4
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;
FSS_Helper::ModuleStart("mod_fss_support mod_fss_support_user");
?>
<ul>
	<?php 
//echo JText::sprintf("TICKET_STATUS",$this->ticketopen,$this->ticketfollow,$this->ticketuser,FSSRoute::_( '&layout=support' ));
FSS_Ticket_Helper::GetStatusList();
$counts = $model->getTicketCount();
FSS_Translate_Helper::Tr(FSS_Ticket_Helper::$status_list);
$output = 0;
foreach (FSS_Ticket_Helper::$status_list as $status) {
    if ($status->def_archive) {
        continue;
    }
    if ($status->is_closed) {
        continue;
    }
    if (!array_key_exists($status->id, $counts)) {
        continue;
    }
    if ($counts[$status->id] < 1) {
        continue;
    }
Example #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;
FSS_Helper::ModuleStart("mod_fss_catprods mod_fss_catprods_faqcat");
?>
<div class="faq_module_categories">
	<?php 
foreach ($rows as $cat) {
    ?>

		<?php 
    $link = FSSRoute::_('index.php?option=com_fss&view=faq&catid=' . $cat['id']);
    ?>
		<div style='cursor:pointer;clear:both;padding-bottom:6px;'>
			<a href='<?php 
    echo $link;
    ?>
'>
				<?php 
    if ($params->get('show_images') && $cat['image']) {
        ?>
					<img src='<?php 
        echo JURI::root(true);
        ?>
/images/fss/faqcats/<?php 
Example #6
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;
FSS_Helper::ModuleStart("mod_fss_catprods mod_fss_catprods_kbprod");
?>
<div class="faq_mod_category_cont">
	<?php 
foreach ($rows as $cat) {
    ?>

		<?php 
    $link = FSSRoute::_('index.php?option=com_fss&view=kb&prodid=' . $cat['id']);
    ?>
		<div style='cursor:pointer;clear:both;padding-bottom:6px;'>
		
			<a href='<?php 
    echo $link;
    ?>
'>
				<?php 
    if ($params->get('show_images') && $cat['image']) {
        ?>
					<img src='<?php 
        echo JURI::root(true);
        ?>
Example #7
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;
FSS_Helper::ModuleStart("mod_fss_faqs");
?>


<?php 
if ($maxheight > 0) {
    ?>
<script>

jQuery(document).ready(function () {
	setTimeout("faqsmod_scrollDown()",3000);
});

function faqsmod_scrollDown()
{
	var settings = { 
		direction: "down", 
		step: 40, 
		scroll: true, 
		onEdge: function (edge) { 
			if (edge.y == "bottom")
			{
Example #8
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;
FSS_Helper::ModuleStart("mod_fss_announce");
?>

<?php 
if ($maxheight > 0) {
    ?>
<script>

jQuery(document).ready(function () {
	setTimeout("announce_scrollDown()",3000);
});

function announce_scrollDown()
{
	var settings = { 
		direction: "down", 
		step: 40, 
		scroll: true, 
		onEdge: function (edge) { 
			if (edge.y == "bottom")
			{
				setTimeout("announce_scrollUp()",3000);
Example #9
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;
FSS_Helper::ModuleStart("mod_fss_kbprodinfo");
echo $rows['extratext'];
FSS_Helper::ModuleEnd();