PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
fusion-builder
/
inc
/
lib
/
inc
<?php /** * Dynamic-CSS handler - Inline CSS. * * @package Fusion-Library * @since 1.0.0 */ // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * Handle generating the dynamic CSS. * * @since 1.0.0 */ class Fusion_Dynamic_CSS_Inline { /** * An innstance of the Fusion_Dynamic_CSS object. * * @access private * @since 1.0.0 * @var object */ private $dynamic_css; /** * Constructor. * * @access public * @since 1.0.0 * @param object $dynamic_css An instance of Fusion_DYnamic_CSS. */ public function __construct( $dynamic_css ) { $this->dynamic_css = $dynamic_css; add_action( 'wp_head', array( $this, 'add_inline_css' ), 999 ); } /** * Add Inline CSS. * We need this on because it has to be loaded after all other Avada CSS * and W3TC can combine it correctly. * * @access public * @return void */ public function add_inline_css() { $dynamic_css = $this->dynamic_css; echo '<style id="fusion-stylesheet-inline-css" type="text/css">'; echo apply_filters( 'fusion_library_inline_dynamic_css', $dynamic_css->make_css() ); // WPCS: XSS ok. echo '</style>'; } } /* Omit closing PHP tag to avoid "Headers already sent" issues. */
[+]
..
[-] fusion-icon.php
[edit]
[-] class-fusion-fusionredux.php
[edit]
[-] class-fusion-featured-image.php
[edit]
[-] class-fusion-dynamic-js-file.php
[edit]
[-] class-fusion-settings.php
[edit]
[-] class-fusion-updater.php
[edit]
[-] class-fusion-images.php
[edit]
[-] class-fusion-dynamic-css.php
[edit]
[-] class-fusion-sanitize.php
[edit]
[-] class-fusion-scripts.php
[edit]
[-] wc-functions.php
[edit]
[-] class-fusion-dynamic-css-helpers.php
[edit]
[-] class-fusion-dynamic-css-inline.php
[edit]
[-] class-fusion-patcher-apply-patch.php
[edit]
[+]
importer
[-] class-fusion-helper.php
[edit]
[-] class-fusion-color.php
[edit]
[+]
redux
[-] class-fusion-library-autoloader.php
[edit]
[-] class-fusion-envato-api.php
[edit]
[-] class-fusion-patcher-admin-notices.php
[edit]
[-] class-fusion-data.php
[edit]
[-] class-fusion-dynamic-js.php
[edit]
[-] class-fusion-patcher.php
[edit]
[-] class-fusion-patcher-admin-screen.php
[edit]
[-] class-fusion-dynamic-js-compiler.php
[edit]
[-] class-fusion-patcher-filesystem.php
[edit]
[-] class-fusion-patcher-client.php
[edit]
[-] class-fusion-filesystem.php
[edit]
[-] functions.php
[edit]
[-] class-fusion-admin-notice.php
[edit]
[-] class-fusion-privacy.php
[edit]
[-] class-fusion-dynamic-css-file.php
[edit]
[-] class-fusion-dynamic-js-separate.php
[edit]
[-] class-fusion-patcher-cache.php
[edit]
[-] class-fusion.php
[edit]
[-] class-fusion-multilingual.php
[edit]
[-] class-fusion-cache.php
[edit]
[+]
templates
[-] class-fusion-product-registration.php
[edit]
[-] class-fusion-options.php
[edit]
[-] class-fusion-patcher-checker.php
[edit]