403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.216.193
Web Server : nginx/1.28.1
System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64
User : www ( 1000)
PHP Version : 8.2.28
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/wp.4/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/slider/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.4/wp-content/themes/woodmart/inc/integrations/gutenberg/src/blocks/slider/css.php
<?php
/**
 * Gutenberg Slider Block CSS.
 *
 * @package woodmart
 */

use XTS\Gutenberg\Block_CSS;

$slide_selector = $block_selector . ' .wd-slide';
$block_css      = new Block_CSS( $attrs );

if ( isset( $attrs['heightType'] ) && 'aspectRatio' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'customAspectRatio',
				'template'  => '--wd-aspect-ratio: {{value}};',
			),
		)
	);
} elseif ( ! isset( $attrs['heightType'] ) || 'custom' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'height',
				'template'  => 'min-height: {{value}}' . $block_css->get_units_for_attribute( 'height' ) . ';',
			),
		)
	);
}

if ( isset( $attrs['autoplay'] ) && $attrs['autoplay'] && $attrs['paginationStyle'] && '4' === $attrs['paginationStyle'] ) {
	$block_css->add_css_rules(
		$block_selector . ' .wd-nav-pagin-wrap',
		array(
			array(
				'attr_name' => 'autoplaySpeed',
				'template'  => '--wd-autoplay-speed: {{value}}ms;',
			),
		)
	);
}

$block_css->add_css_rules(
	$block_selector . ' .wd-nav-pagin-wrap',
	array(
		array(
			'attr_name' => 'paginationAlign',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	)
);

if ( isset( $attrs['heightType'] ) && 'aspectRatio' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'customAspectRatioTablet',
				'template'  => '--wd-aspect-ratio: {{value}};',
			),
		),
		'tablet'
	);
} elseif ( ! isset( $attrs['heightType'] ) || 'custom' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'heightTablet',
				'template'  => 'min-height: {{value}}' . $block_css->get_units_for_attribute( 'height', 'tablet' ) . ';',
			),
		),
		'tablet'
	);
}

$block_css->add_css_rules(
	$block_selector . ' .wd-nav-pagin-wrap',
	array(
		array(
			'attr_name' => 'paginationAlignTablet',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	),
	'tablet'
);

if ( isset( $attrs['heightType'] ) && 'aspectRatio' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'customAspectRatioMobile',
				'template'  => '--wd-aspect-ratio: {{value}};',
			),
		),
		'mobile'
	);
} elseif ( ! isset( $attrs['heightType'] ) || 'custom' === $attrs['heightType'] ) {
	$block_css->add_css_rules(
		$slide_selector,
		array(
			array(
				'attr_name' => 'heightMobile',
				'template'  => 'min-height: {{value}}' . $block_css->get_units_for_attribute( 'height', 'mobile' ) . ';',
			),
		),
		'mobile'
	);
}

$block_css->add_css_rules(
	$block_selector . ' .wd-nav-pagin-wrap',
	array(
		array(
			'attr_name' => 'paginationAlignMobile',
			'template'  => '--wd-align: var(--wd-{{value}});',
		),
	),
	'mobile'
);

if ( ! empty( $attrs['arrowsCustomSettings'] ) ) {
	$block_css->add_css_rules(
		$block_selector . ' .wd-slider-arrows',
		array(
			array(
				'attr_name' => 'arrowsSize',
				'template'  => '--wd-arrow-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsSize' ) . ';',
			),
			array(
				'attr_name' => 'arrowsIconSize',
				'template'  => '--wd-arrow-icon-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsIconSize' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetH',
				'template'  => '--wd-arrow-offset-h: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetH' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetV',
				'template'  => '--wd-arrow-offset-v: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetV' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderRadius',
				'template'  => '--wd-arrow-radius: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderRadius' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderWidth',
				'template'  => '--wd-arrow-brd: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderWidth' ) . ' ' . $attrs['arrowsBorderType'] . ';',
			),

			array(
				'attr_name' => 'arrowsNormalColorCode',
				'template'  => '--wd-arrow-color: {{value}};',
			),
			array(
				'attr_name' => 'arrowsNormalColorVariable',
				'template'  => '--wd-arrow-color: var({{value}});',
			),
			array(
				'attr_name' => 'arrowsHoverColorCode',
				'template'  => '--wd-arrow-color-hover: {{value}};',
			),
			array(
				'attr_name' => 'arrowsHoverColorVariable',
				'template'  => '--wd-arrow-color-hover: var({{value}});',
			),

			array(
				'attr_name' => 'arrowsNormalBgColorCode',
				'template'  => '--wd-arrow-bg: {{value}};',
			),
			array(
				'attr_name' => 'arrowsNormalBgColorVariable',
				'template'  => '--wd-arrow-bg: var({{value}});',
			),
			array(
				'attr_name' => 'arrowsHoverBgColorCode',
				'template'  => '--wd-arrow-bg-hover: {{value}};',
			),
			array(
				'attr_name' => 'arrowsHoverBgColorVariable',
				'template'  => '--wd-arrow-bg-hover: var({{value}});',
			),
			array(
				'attr_name' => 'arrowsBorderColorCode',
				'template'  => '--wd-arrow-brd-color: {{value}};',
			),
			array(
				'attr_name' => 'arrowsBorderColorVariable',
				'template'  => '--wd-arrow-brd-color: var({{value}});',
			),
			array(
				'attr_name' => 'arrowsBorderHoverColorCode',
				'template'  => '--wd-arrow-brd-color-hover: {{value}};',
			),
			array(
				'attr_name' => 'arrowsBorderHoverColorVariable',
				'template'  => '--wd-arrow-brd-color-hover: var({{value}});',
			),
		)
	);

	$block_css->add_css_rules(
		$block_selector . ' .wd-slider-arrows',
		array(
			array(
				'attr_name' => 'arrowsSizeTablet',
				'template'  => '--wd-arrow-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsSize', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'arrowsIconSizeTablet',
				'template'  => '--wd-arrow-icon-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsIconSize', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetHTablet',
				'template'  => '--wd-arrow-offset-h: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetH', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetVTablet',
				'template'  => '--wd-arrow-offset-v: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetV', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderRadiusTablet',
				'template'  => '--wd-arrow-radius: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderRadius', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderWidthTablet',
				'template'  => '--wd-arrow-brd: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderWidth', 'tablet' ) . ' ' . $attrs['arrowsBorderType'] . ';',
			),
		),
		'tablet'
	);

	$block_css->add_css_rules(
		$block_selector . ' .wd-slider-arrows',
		array(
			array(
				'attr_name' => 'arrowsSizeMobile',
				'template'  => '--wd-arrow-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsSize', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'arrowsIconSizeMobile',
				'template'  => '--wd-arrow-icon-size: {{value}}' . $block_css->get_units_for_attribute( 'arrowsIconSize', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetHMobile',
				'template'  => '--wd-arrow-offset-h: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetH', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'arrowsOffsetVMobile',
				'template'  => '--wd-arrow-offset-v: {{value}}' . $block_css->get_units_for_attribute( 'arrowsOffsetV', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderRadiusMobile',
				'template'  => '--wd-arrow-radius: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderRadius', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'arrowsBorderWidthMobile',
				'template'  => '--wd-arrow-brd: {{value}}' . $block_css->get_units_for_attribute( 'arrowsBorderWidth', 'mobile' ) . ' ' . $attrs['arrowsBorderType'] . ';',
			),
		),
		'mobile'
	);

	$block_css->merge_with( wd_get_block_box_shadow_css( $block_selector . ' .wd-slider-arrows', $attrs, 'arrowsBoxShadow', '--wd-arrow-shadow' ) );
}

if ( ! empty( $attrs['paginationCustomSettings'] ) ) {
	if ( in_array( $attrs['paginationStyle'], array( '1', '3' ), true ) ) {
		$block_css->add_css_rules(
			$block_selector . ' .wd-nav-pagin-wrap',
			array(
				array(
					'attr_name' => 'paginationSize',
					'template'  => '--wd-pagin-size: {{value}}' . $block_css->get_units_for_attribute( 'paginationSize' ) . ';',
				),
			)
		);

		$block_css->add_css_rules(
			$block_selector . ' .wd-nav-pagin-wrap',
			array(
				array(
					'attr_name' => 'paginationSizeTablet',
					'template'  => '--wd-pagin-size: {{value}}' . $block_css->get_units_for_attribute( 'paginationSize', 'tablet' ) . ';',
				),
			),
			'tablet'
		);

		$block_css->add_css_rules(
			$block_selector . ' .wd-nav-pagin-wrap',
			array(
				array(
					'attr_name' => 'paginationSizeMobile',
					'template'  => '--wd-pagin-size: {{value}}' . $block_css->get_units_for_attribute( 'paginationSize', 'mobile' ) . ';',
				),
			),
			'mobile'
		);
	}

	$block_css->add_css_rules(
		$block_selector . ' .wd-nav-pagin-wrap',
		array(
			array(
				'attr_name' => 'paginationBorderRadius',
				'template'  => '--wd-pagin-radius: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderRadius' ) . ';',
			),
			array(
				'attr_name' => 'paginationBorderWidth',
				'template'  => '--wd-pagin-brd-width: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderWidth' ) . ';',
			),
			array(
				'attr_name' => 'paginationBorderType',
				'template'  => '--wd-pagin-brd-style: {{value}};',
			),
			array(
				'attr_name' => 'paginationNormalBgColorCode',
				'template'  => '--wd-pagin-bg: {{value}};',
			),
			array(
				'attr_name' => 'paginationNormalBgColorVariable',
				'template'  => '--wd-pagin-bg: var({{value}});',
			),
			array(
				'attr_name' => 'paginationHoverBgColorCode',
				'template'  => '--wd-pagin-bg-hover: {{value}};',
			),
			array(
				'attr_name' => 'paginationHoverBgColorVariable',
				'template'  => '--wd-pagin-bg-hover: var({{value}});',
			),
			array(
				'attr_name' => 'paginationActiveBgColorCode',
				'template'  => '--wd-pagin-bg-act: {{value}};',
			),
			array(
				'attr_name' => 'paginationActiveBgColorVariable',
				'template'  => '--wd-pagin-bg-act: var({{value}});',
			),
			array(
				'attr_name' => 'paginationWrapperBgColorCode',
				'template'  => '--wd-pagin-wrap-bg: {{value}};',
			),
			array(
				'attr_name' => 'paginationWrapperBgColorVariable',
				'template'  => '--wd-pagin-wrap-bg: var({{value}});',
			),

			array(
				'attr_name' => 'paginationNormalColorCode',
				'template'  => '--wd-pagin-color: {{value}};',
			),
			array(
				'attr_name' => 'paginationNormalColorVariable',
				'template'  => '--wd-pagin-color: var({{value}});',
			),
			array(
				'attr_name' => 'paginationHoverColorCode',
				'template'  => '--wd-pagin-color-hover: {{value}};',
			),
			array(
				'attr_name' => 'paginationHoverColorVariable',
				'template'  => '--wd-pagin-color-hover: var({{value}});',
			),
			array(
				'attr_name' => 'paginationActiveColorCode',
				'template'  => '--wd-pagin-color-act: {{value}};',
			),
			array(
				'attr_name' => 'paginationActiveColorVariable',
				'template'  => '--wd-pagin-color-act: var({{value}});',
			),

			array(
				'attr_name' => 'paginationBorderColorCode',
				'template'  => '--wd-pagin-brd-color: {{value}};',
			),
			array(
				'attr_name' => 'paginationBorderColorVariable',
				'template'  => '--wd-pagin-brd-color: var({{value}});',
			),
			array(
				'attr_name' => 'paginationBorderHoverColorCode',
				'template'  => '--wd-pagin-brd-color-hover: {{value}};',
			),
			array(
				'attr_name' => 'paginationBorderHoverColorVariable',
				'template'  => '--wd-pagin-brd-color-hover: var({{value}});',
			),
			array(
				'attr_name' => 'paginationBorderActiveColorCode',
				'template'  => '--wd-pagin-brd-color-act: {{value}};',
			),
			array(
				'attr_name' => 'paginationBorderActiveColorVariable',
				'template'  => '--wd-pagin-brd-color-act: var({{value}});',
			),
		)
	);

	$block_css->add_css_rules(
		$block_selector . ' .wd-nav-pagin-wrap',
		array(
			array(
				'attr_name' => 'paginationBorderRadiusTablet',
				'template'  => '--wd-pagin-radius: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderRadius', 'tablet' ) . ';',
			),
			array(
				'attr_name' => 'paginationBorderWidthTablet',
				'template'  => '--wd-pagin-brd: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderWidth', 'tablet' ) . ' ' . $attrs['paginationBorderType'] . ';',
			),
		),
		'tablet'
	);

	$block_css->add_css_rules(
		$block_selector . ' .wd-nav-pagin-wrap',
		array(
			array(
				'attr_name' => 'paginationBorderRadiusMobile',
				'template'  => '--wd-pagin-radius: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderRadius', 'mobile' ) . ';',
			),
			array(
				'attr_name' => 'paginationBorderWidthMobile',
				'template'  => '--wd-pagin-brd: {{value}}' . $block_css->get_units_for_attribute( 'paginationBorderWidth', 'mobile' ) . ' ' . $attrs['paginationBorderType'] . ';',
			),
		),
		'mobile'
	);

	if (
		(
			$attrs['paginationStyle'] &&
			in_array( $attrs['paginationStyle'], array( '2', '4' ), true )
		)
	) {
		$block_css->merge_with( wd_get_block_typography_css( $block_selector . ' .wd-nav-pagin li', $attrs, 'paginationTextTp' ) );
	}
}

$block_css->merge_with( wd_get_block_shape_divider_css( $block_selector, $attrs, 'shapeDividerTop' ) );
$block_css->merge_with( wd_get_block_shape_divider_css( $block_selector, $attrs, 'shapeDividerBottom', 'bottom' ) );

$block_css->merge_with(
	wd_get_block_advanced_css(
		array(
			'selector'              => $block_selector,
			'selector_hover'        => $block_selector_hover,
			'selector_parent_hover' => $block_selector_parent_hover,
		),
		$attrs
	)
);

return $block_css->get_css_for_devices();

Youez - 2016 - github.com/yon3zu
LinuXploit