X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/oxygen/component-framework
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
oxygen
/
component-framework
/
📁
..
📄
.htaccess
(420 B)
📁
admin
📁
angular
📁
api
📄
component-init.php
(171.68 KB)
📁
components
📄
csslink.php
(1.44 KB)
📁
includes
📄
oxygen-iframe-template.php
(3.51 KB)
📄
oxygen-main-template.php
(9.23 KB)
📄
oxygen.css
(19.45 KB)
📄
signature.class.php
(3.34 KB)
📁
toolbar
📁
vendor
Editing: csslink.php
<?php // Exit if accessed directly if ( !defined( 'ABSPATH' ) ) { exit; } // Need to output CSS for 404 page if ( is_404() ) { status_header( 200 ); } if ( !isset( $_REQUEST['xlink'] ) || stripslashes( $_REQUEST['xlink'] ) != 'css' ) { exit; } // Check if need to include CSS for classes, selectors, stylesheets, etc. if ( isset( $_REQUEST['nouniversal'] ) && stripslashes( $_REQUEST['nouniversal'] ) == 'true' ) { $nouniversal = true; } else { $nouniversal = false; } // Set the correct MIME type header("Content-type: text/css"); /** * Shortcodes and Classes */ $styles = false; $id = isset($_REQUEST['tid'])?intval($_REQUEST['tid']):false; if ( ! $styles ) { // start buffer again ob_start(); // Check if need to include templates CSS if ( isset( $_REQUEST['post_id'] ) ) { $shortcodes = get_post_meta($_REQUEST['post_id'],"ct_builder_shortcodes",true); do_shortcode($shortcodes); } else { ct_template_output(); } // output shortcode styles do_action('ct_footer_styles'); // get shortcodes styles $styles = ob_get_clean(); $styles = oxygen_css_minify( $styles ); echo $styles; } /** * Stylesheets */ $styles = false; if ( !$styles && $nouniversal == false ) { $styles = oxygen_vsb_get_stylesheet_styles(); $styles = oxygen_css_minify( $styles ); echo $styles; } /** * Custom selectors */ if ( $nouniversal == false ) { $css = oxygen_vsb_get_custom_selectors_styles(); $css = oxygen_css_minify($css); echo $css; }
Upload File
Create Folder