| Server IP : 38.190.208.107 / Your IP : 216.73.217.61 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/table/ |
Upload File : |
<?php
use XTS\Gutenberg\Block_CSS;
$heading_selector = $block_selector . ' th';
$body_selector = $block_selector . ' tbody td';
$footer_selector = $block_selector . ' tfoot td';
$block_css = new Block_CSS( $attrs );
$block_css->add_css_rules(
$heading_selector,
array(
array(
'attr_name' => 'headingCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'headingVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'headingBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'headingBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
$block_css->add_css_rules(
$footer_selector,
array(
array(
'attr_name' => 'footerCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'footerVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'footerBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'footerBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
if ( empty( $attrs['bodyBgType'] ) || 'body' === $attrs['bodyBgType'] ) {
$block_css->add_css_rules(
$body_selector,
array(
array(
'attr_name' => 'bodyCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'bodyVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'bodyBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'bodyBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
}
if ( ! empty( $attrs['bodyBgType'] ) && $attrs['bodyBgType'] == 'h-even' ) {
$block_css->add_css_rules(
$body_selector . ':nth-child(even)',
array(
array(
'attr_name' => 'bodyHEvenCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'bodyHEvenVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'bodyHEvenBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'bodyHEvenBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
$block_css->add_css_rules(
$body_selector . ':nth-child(odd)',
array(
array(
'attr_name' => 'bodyHOddCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'bodyHOddVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'bodyHOddBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'bodyHOddBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
}
if ( ! empty( $attrs['bodyBgType'] ) && $attrs['bodyBgType'] == 'v-even' ) {
$block_css->add_css_rules(
$block_selector . ' tbody tr:nth-child(even)',
array(
array(
'attr_name' => 'bodyVEvenCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'bodyVEvenVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'bodyVEvenBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'bodyVEvenBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
$block_css->add_css_rules(
$block_selector . ' tbody tr:nth-child(odd)',
array(
array(
'attr_name' => 'bodyVOddCode',
'template' => 'color: {{value}};',
),
array(
'attr_name' => 'bodyVOddVariable',
'template' => 'color: var({{value}});',
),
array(
'attr_name' => 'bodyVOddBgCode',
'template' => 'background-color: {{value}};',
),
array(
'attr_name' => 'bodyVOddBgVariable',
'template' => 'background-color: var({{value}});',
),
)
);
}
$block_css->merge_with( wd_get_block_typography_css( $heading_selector, $attrs, 'heading' ) );
$block_css->merge_with( wd_get_block_typography_css( $body_selector, $attrs, 'body' ) );
$block_css->merge_with( wd_get_block_typography_css( $footer_selector, $attrs, 'footer' ) );
$block_css->merge_with( wd_get_block_padding_css( $heading_selector, $attrs, 'heading' ) );
$block_css->merge_with( wd_get_block_padding_css( $body_selector, $attrs, 'body' ) );
$block_css->merge_with( wd_get_block_padding_css( $footer_selector, $attrs, 'footer' ) );
$block_css->merge_with( wd_get_block_border_css( $heading_selector, $attrs, 'headingBorder' ) );
$block_css->merge_with( wd_get_block_border_css( $body_selector, $attrs, 'bodyBorder' ) );
$block_css->merge_with( wd_get_block_border_css( $footer_selector, $attrs, 'footerBorder' ) );
$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();