HEX
Server: nginx/1.24.0
System: Linux nowruzgan 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64
User: babak (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/school/wp-content/themes/blocksy/inc/integrations/elementor.php
<?php

if (! class_exists('Elementor\Plugin')) {
	return;
}

add_action('init', function () {
	if (class_exists('Elementor\Plugin')) {
		\Elementor\Plugin::$instance->experiments->remove_feature('block_editor_assets_optimize');
	}

	if (
		get_option(
			'elementor_disable_color_schemes',
			'__DEFAULT__'
		) === '__DEFAULT__'
	) {
		update_option('elementor_disable_color_schemes', 'yes');
	}

	add_filter('elementor/schemes/enabled_schemes', function ($s) {
		// blocksy_print($s);
		// return ['color'];
		return $s;
	});

	if (
		get_option(
			'elementor_disable_typography_schemes',
			'__DEFAULT__'
		) === '__DEFAULT__'
	) {
		update_option('elementor_disable_typography_schemes', 'yes');
	}

	if (! get_option('elementor_viewport_lg')) {
		update_option('elementor_viewport_lg', 1000);
	}

	if (! get_option('elementor_viewport_md')) {
		update_option('elementor_viewport_md', 690);
	}

	add_filter(
		'rest_request_after_callbacks',
		function ($response, $handler, \WP_REST_Request $request) {
			$route = $request->get_route();
			$rest_id = substr($route, strrpos($route, '/') + 1);

			$palettes = [];

			foreach (blocksy_manager()->colors->get_color_palette() as $paletteKey => $paletteValue) {
				$key = 'blocksy_palette_' . str_replace('color', '', $paletteKey);

				$palettes[$key] = [
					'id' => $key,
					'title' => $paletteValue['title'],
					'value' => 'var(--' . $paletteValue['variable'] . ')'
				];
			}

			if (isset($palettes[$rest_id])) {
				return new \WP_REST_Response($palettes[$rest_id]);
			}

			if (
				$route === '/elementor/v1/globals'
				&&
				method_exists($response, 'get_data')
			) {
				$data = $response->get_data();

				$colors = blocksy_get_colors(blocksy_get_theme_mod('colorPalette'), [
					'color1' => [ 'color' => '#2872fa' ],
					'color2' => [ 'color' => '#1559ed' ],
					'color3' => [ 'color' => '#3A4F66' ],
					'color4' => [ 'color' => '#192a3d' ],
					'color5' => [ 'color' => '#e1e8ed' ],
					'color6' => [ 'color' => '#f2f5f7' ],
					'color7' => [ 'color' => '#FAFBFC' ],
					'color8' => [ 'color' => '#ffffff' ],
				]);

				$colors_for_palette = [
					'blocksy_palette_1' => 'color1',
					'blocksy_palette_2' => 'color2',
					'blocksy_palette_3' => 'color3',
					'blocksy_palette_4' => 'color4',
					'blocksy_palette_5' => 'color5',
					'blocksy_palette_6' => 'color6',
					'blocksy_palette_7' => 'color7',
					'blocksy_palette_8' => 'color8'
				];

				foreach (blocksy_manager()->colors->get_color_palette() as $paletteKey => $paletteValue) {
					$key = 'blocksy_palette_' . str_replace('color', '', $paletteKey);

					$data['colors'][$key] = [
						'id' => $key,
						'title' => $paletteValue['title'],
						'value' => $paletteValue['color']
					];
				}

				$response->set_data($data);
			}

			return $response;
		},
		1000, 3
	);

	/*
	add_action('elementor/frontend/section/before_render', function ($element) {
		$settings = $element->get_settings_for_display();

		if (
			! $element->get_data('isInner')
			&&
			blocksy_akg('blocksy_stretch_section', $settings, '') !== 'stretched'
		) {
			$element->add_render_attribute('_wrapper', [
				'class' => 'ct-section-boxed'
			]);
		}
	});
	 */

	add_action(
		'elementor/element/section/section_layout/after_section_start',
		function ($element, $args) {
			$element->add_control('blocksy_stretch_section', [
				'type' => \Elementor\Controls_Manager::SWITCHER,
				'label' => esc_html__( 'Full Width Section', 'blocksy' ),
				'return_value' => 'stretched',
				'hide_in_inner' => true,
				'default' => '',
				'separator' => 'after',
				'prefix_class' => 'ct-section-',
			]);
		},
		10, 2
	);

	add_action(
		'elementor/element/section/section_layout/before_section_end',
		function ($element, $args) {
			$element->remove_control('stretch_section');
			// $element->add_control('fix_columns_alignment', [
			// 	'type' => \Elementor\Controls_Manager::SWITCHER,
			// 	'label' => esc_html__( 'Columns Alignment Fix', 'blocksy' ),
			// 	'return_value' => 'fix',
			// 	'default' => apply_filters(
			// 		'blocksy:integrations:elementor:fix_columns_alignment:default',
			// 		''
			// 	),
			// 	'separator' => 'before',
			// 	'prefix_class' => 'ct-columns-alignment-',
			// ]);
		},
		10, 2
	);
});

add_action(
	'elementor/theme/register_locations',
	function ($elementor_theme_manager) {
		$elementor_theme_manager->register_all_core_location();
	}
);

// Render WP Core block supports styles inside Elementor preview.
// Check wp_enqueue_stored_styles() function from core WP as reference.
add_filter(
	'elementor/widget/render_content',
	function ($content, $widget) {
		if (! $widget instanceof \Elementor\Widget_Shortcode) {
			return $content;
		}

		$should_run = false;

		if (\Elementor\Plugin::$instance->editor->is_edit_mode()) {
			$should_run = true;
		}

		if (
			isset($_GET['action'])
			&&
			$_GET['action'] === 'elementor_ajax'
		) {
			$should_run = true;
		}

		if (! $should_run) {
			return $content;
		}

		$style_tag_id = 'core-block-supports';

		$compiled_core_stylesheet = wp_style_engine_get_stylesheet_from_context(
			'block-supports',
			[]
		);

		$content .= blocksy_html_tag(
			'style',
			[
				'id' => 'core-' . $widget->get_id() . '-' . $style_tag_id . '-inline-css',
			],
			$compiled_core_stylesheet
		);

		return $content;
	},
	10,
	2
);