SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > essential-blocks > src > global-styles >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//ameliagraphics.com/wp-content/plugins/essential-blocks/src/global-styles/

NameTypeSizeLast ModifiedActions
assets Directory - -
block-defaults Directory - -
components Directory - -
blockObject.js File 9785 bytes February 26 2025 16:22:10.
constants.js File 1875 bytes August 27 2024 16:37:06.
controls.js File 33184 bytes February 26 2025 16:22:10.
index.js File 1688 bytes February 26 2025 16:22:10.
style.scss File 9501 bytes May 08 2025 15:01:12.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/essential-blocks/src/global-styles//index.js

/**
 * WordPress Dependencies
 */
import {
    select,
    subscribe,
    dispatch
} from '@wordpress/data';

/**
 * Register Essential Block Global Controls Panel
 */
import { registerPlugin } from '@wordpress/plugins';

import EBGlobalControls from "./controls";
import EBIcon from "./assets/icon"

//Import Constants
import {
    globalColorKey,
    customColorKey,
    gradientColorKey,
    customGradientColorKey,
    globalTypoKey
} from "../store/constant"
import { getGlobalSettings } from "../helpers/helpers"
import { updateGlobalStyle } from '../helpers/fetch';


/**
 * Save Global Values on Save Page/Post
 */
// subscribe(() => {
//     const isSavingPost = select('core/editor').isSavingPost();
//     const isAutosavingPost = select('core/editor').isAutosavingPost();

//     const ebIsSaving = select('essential-blocks').getIsSaving()

//     if (!ebIsSaving || isAutosavingPost || !isSavingPost) {
//         return;
//     }

//     const globals = getGlobalSettings(select)
//     const allData = {
//         [globalColorKey]: globals?.getGlobalColors,
//         [customColorKey]: globals?.getCustomColors,
//         [gradientColorKey]: globals?.getGradientColors,
//         [customGradientColorKey]: globals?.getCustomGradientColors,
//         [globalTypoKey]: globals?.getGlobalTypography
//     }

//     let response = updateGlobalStyle(allData);

//     //setIsSaving to 'false' so that 'updateGlobalStyle' won't run multiple times
//     dispatch('essential-blocks').setIsSaving(false)
// });



/**
 * Register EB Global Controls Slotfill
 */
registerPlugin(
    'eb-global-controls',
    {
        icon: EBIcon,
        render: EBGlobalControls,
    }
);

SILENT KILLER Tool