PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
stadlercattaneo
/
wp-content
/
plugins
/
revslider
<?php class RevSliderFront extends UniteBaseFrontClassRev{ /** * * the constructor */ public function __construct($mainFilepath){ parent::__construct($mainFilepath,$this); //set table names GlobalsRevSlider::$table_sliders = self::$table_prefix.GlobalsRevSlider::TABLE_SLIDERS_NAME; GlobalsRevSlider::$table_slides = self::$table_prefix.GlobalsRevSlider::TABLE_SLIDES_NAME; GlobalsRevSlider::$table_settings = self::$table_prefix.GlobalsRevSlider::TABLE_SETTINGS_NAME; GlobalsRevSlider::$table_css = self::$table_prefix.GlobalsRevSlider::TABLE_CSS_NAME; GlobalsRevSlider::$table_layer_anims = self::$table_prefix.GlobalsRevSlider::TABLE_LAYER_ANIMS_NAME; } /** * * a must function. you can not use it, but the function must stay there!. * */ public static function onAddScripts(){ $operations = new RevOperations(); $arrValues = $operations->getGeneralSettingsValues(); $includesGlobally = UniteFunctionsRev::getVal($arrValues, "includes_globally","on"); $includesFooter = UniteFunctionsRev::getVal($arrValues, "js_to_footer","off"); $strPutIn = UniteFunctionsRev::getVal($arrValues, "pages_for_includes"); $isPutIn = RevSliderOutput::isPutIn($strPutIn,true); //put the includes only on pages with active widget or shortcode // if the put in match, then include them always (ignore this if) if($isPutIn == false && $includesGlobally == "off"){ $isWidgetActive = is_active_widget( false, false, "rev-slider-widget", true ); $hasShortcode = UniteFunctionsWPRev::hasShortcode("rev_slider"); if($isWidgetActive == false && $hasShortcode == false) return(false); } self::addStyle("settings","rs-settings","rs-plugin/css"); //check if dynamic-captions.css exists. If not, include captions.php if(file_exists(self::$path_plugin."rs-plugin/css/dynamic-captions.css") == false) self::addDynamicStyle("captions","rs-plugin-captions","rs-plugin/css"); else self::addStyle("dynamic-captions","rs-captions","rs-plugin/css"); self::addStyle("static-captions","rs-plugin-static","rs-plugin/css"); $setBase = (is_ssl()) ? "https://" : "http://"; $url_jquery = $setBase."ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js?app=revolution"; self::addScriptAbsoluteUrl($url_jquery, "jquery"); if($includesFooter == "off"){ self::addScript("jquery.themepunch.plugins.min","rs-plugin/js",'themepunchtools'); self::addScript("jquery.themepunch.revolution.min","rs-plugin/js"); //self::addScriptWaitFor("jquery.themepunch.plugins.min","rs-plugin/js",'themepunchtools', array('jquery')); //self::addScriptWaitFor("jquery.themepunch.revolution.min","rs-plugin/js", null, array('jquery')); }else{ //put javascript to footer UniteBaseClassRev::addAction('wp_footer', 'putJavascript'); } } /** * * javascript output to footer */ public function putJavascript(){ $urlPlugin = UniteBaseClassRev::$url_plugin."rs-plugin/"; ?> <script type='text/javascript' src='<?php echo $urlPlugin?>js/jquery.themepunch.plugins.min.js?rev=<?php echo GlobalsRevSlider::SLIDER_REVISION; ?>'></script> <script type='text/javascript' src='<?php echo $urlPlugin?>js/jquery.themepunch.revolution.min.js?rev=<?php echo GlobalsRevSlider::SLIDER_REVISION; ?>'></script> <?php } } ?>
[+]
cache
[+]
settings
[-] uninstall.php
[open]
[+]
images
[+]
views
[+]
css
[+]
inc_php
[-] revslider_front.php
[open]
[+]
temp
[+]
..
[-] revslider_admin.php
[open]
[-] revslider.php
[open]
[+]
js
[+]
backup
[+]
rs-plugin
[+]
languages
[-] release_log.txt
[open]
[-] index.php
[open]