/home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/pagelayer/js
NameSizeModeActions
base-64.js128180644editdlrm
base-64.min.js51020644editdlrm
chart.min.js1567210644editdlrm
combined.js1081450644editdlrm
givejs.php42790644editdlrm
imagesloaded.min.js55940644editdlrm
jquery-numerator.js41190644editdlrm
nivo-lightbox.min.js78430644editdlrm
owl.carousel.min.js448020644editdlrm
pagelayer-admin.js20000644editdlrm
pagelayer-editor.js1544480644editdlrm
pagelayer-frontend.js365410644editdlrm
pen.js268350644editdlrm
properties.js998590644editdlrm
shuffle.min.js199280644editdlrm
simpleParallax.min.js66730644editdlrm
slimscroll.js47400644editdlrm
tlite.min.js39750644editdlrm
trumbowyg-pagelayer.js116030644editdlrm
trumbowyg.fontfamily.js29970644editdlrm
trumbowyg.js621690644editdlrm
trumbowyg.min.js245460644editdlrm
vanilla-picker.js401560644editdlrm
vanilla-picker.min.js214490644editdlrm
widgets.js350450644editdlrm
wow.min.js81550644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/site3/wp-content/plugins/pagelayer/js/givejs.php (4279B)
$v){ //echo $k.'
'; $data .= file_get_contents($self_path.'/'.$v)."\n\n"; } if(!empty($final_premium)){ foreach($final_premium as $k => $v){ //echo $k.'
'; $data_premium .= file_get_contents($self_path.'/'.$v)."\n\n"; } } // We are zipping if possible if(function_exists('ob_gzhandler') && !ini_get('zlib.output_compression')){ ob_start('ob_gzhandler'); } // Type javascript header("Content-type: text/javascript; charset: UTF-8"); // Set a zero Mtime $filetime = filemtime($self_path.'/pagelayer-editor.js'); // Are we to also serve Shortcodes ? if(!empty($pagelayer->shortcodes)){ $data .= 'pagelayer_shortcodes = '.json_encode($pagelayer->shortcodes).';'."\n\n"; $data .= 'pagelayer_styles = '.json_encode($pagelayer->styles).';'."\n\n"; $data .= 'pagelayer_groups = '.json_encode($pagelayer->groups).';'."\n\n"; } // Add the langs as well preg_match_all('/pagelayer_l\([\'"](\w*)[\'"]\)/is', $data, $matches); if(!empty($matches[1]) && function_exists('__pl')){ foreach($matches[1] as $lk => $lv){ $export_langs[$lv] = __pl($lv); } } // Also add the fonts if(!empty($pagelayer->fonts)){ $export_langs['google_fonts_list'] = $pagelayer->fonts; } // And lang string ? if(!empty($export_langs)){ $data .= 'pagelayer_lang = '.json_encode($export_langs).';'."\n\n"; } // Cache Control header("Cache-Control: must-revalidate"); // Checking if the client is validating his cache and if it is current. if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $filetime)) { // Client's cache IS current, so we just respond '304 Not Modified'. header('Last-Modified: '.gmdate('D, d M Y H:i:s', $filetime).' GMT', true, 304); return; }else{ // Image not cached or cache outdated, we respond '200 OK' and output the image. header('Last-Modified: '.gmdate('D, d M Y H:i:s', $filetime).' GMT', true, 200); } echo $data; echo $data_premium; // Write if we are front-end only then $dev = dirname(dirname(__FILE__)).'/dev.php'; if(!empty($_REQUEST['write']) && file_exists($dev)){ include_once($dev); write_js(); }