Your IP : 216.73.216.145


Current Path : /home/g/o/t/gotzfrokfn/www/modules/mod_parallax_scroll/assets/
Upload File :
Current File : /home/g/o/t/gotzfrokfn/www/modules/mod_parallax_scroll/assets/asset.php

<?php
/**
 * ------------------------------------------------------------------------
 * Asset - Parallax Scroll
 * ------------------------------------------------------------------------
 * Copyright (C) 2014-2016 LogicHunt, All Rights Reserved.
 * license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
 * Author: LogicHunt
 * Websites: http://logichunt.com
 * ------------------------------------------------------------------------
 */
defined('_JEXEC') or die('Restricted access');

$app = JFactory::getApplication();
$doc = JFactory::getDocument();
$basepath = JUri::root(true).'/modules/' . $module->module . '/assets/';



// Load Main StyleSheet
$style_name = 'style.css';
$doc->addStyleSheet($basepath.'css/'.$style_name);

//Load Override StyleSheet
$templatepath = 'templates/'.$app->getTemplate().'/css/'.$module->module.'.min.css';

if(file_exists(JPATH_SITE . '/' . $templatepath)) {
	$doc->addStyleSheet(JURI::root(true).'/'.$templatepath);
}

//script
// Add Dependency
JHtml::_('jquery.framework');