| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 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 : root ( 0) 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.11/wp-content/themes/blocksy/inc/options/single-elements/ |
Upload File : |
<?php
if (! isset($structure_label)) {
$structure_label = false;
}
if (! isset($has_v_spacing)) {
$has_v_spacing = true;
}
if (! isset($has_content_style)) {
$has_content_style = true;
}
if (! isset($default_structure)) {
$default_structure = 'type-3';
}
if (! isset($default_content_style)) {
$default_content_style = 'wide';
}
if (! isset($prefix)) {
$prefix = '';
} else {
$prefix = $prefix . '_';
}
$structure_choices = [
'type-3' => [
'src' => blocksy_image_picker_url('narrow.svg'),
'title' => __('Narrow Width', 'blocksy'),
],
'type-4' => [
'src' => blocksy_image_picker_url('normal.svg'),
'title' => __('Normal Width', 'blocksy'),
],
'type-2' => [
'src' => blocksy_image_picker_url('left-single-sidebar.svg'),
'title' => __('Left Sidebar', 'blocksy'),
],
'type-1' => [
'src' => blocksy_image_picker_url('right-single-sidebar.svg'),
'title' => __('Right Sidebar', 'blocksy'),
]
];
if (! isset($skipped_structure)) {
$skipped_structure = [];
}
foreach ($skipped_structure as $structure) {
unset($structure_choices[$structure]);
}
$options = [
[
$prefix . 'structure' => [
'label' => $structure_label,
'type' => 'ct-image-picker',
'value' => $default_structure,
'choices' => $structure_choices,
'sync' => blocksy_sync_whole_page([
'prefix' => $prefix,
'prefix_custom' => 'single-structure',
'loader_selector' => '[class*="ct-container"]'
]),
],
],
$has_content_style ? [
$prefix . 'content_style' => [
'label' => __('Content Area Style', 'blocksy'),
'type' => 'ct-radio',
'value' => $default_content_style,
'view' => 'text',
'design' => 'block',
'divider' => 'top',
'responsive' => true,
'choices' => [
'wide' => __( 'Wide', 'blocksy' ),
'boxed' => __( 'Boxed', 'blocksy' ),
],
'sync' => 'live'
],
] : [],
$has_v_spacing ? [
$prefix . 'content_area_spacing' => [
'label' => __( 'Content Area Vertical Spacing', 'blocksy' ),
'type' => 'ct-radio',
'value' => 'both',
'view' => 'text',
'design' => $has_v_spacing ? 'block' : 'inline',
'divider' => 'top',
'attr' => [ 'data-type' => 'content-spacing' ],
'choice_attr' => [ 'data-tooltip-reveal' => 'top' ],
'sync' => "live",
'choices' => [
'both' => '<span></span>
<i class="ct-tooltip">' . __( 'Top & Bottom', 'blocksy' ) . '</i>',
'top' => '<span></span>
<i class="ct-tooltip">' . __( 'Only Top', 'blocksy' ) . '</i>',
'bottom' => '<span></span>
<i class="ct-tooltip">' . __( 'Only Bottom', 'blocksy' ) . '</i>',
'none' => '<span></span>
<i class="ct-tooltip">' . __( 'Disabled', 'blocksy' ) . '</i>',
],
'desc' => blocksy_safe_sprintf(
// translators: placeholder here means the actual URL.
__( 'You can customize the global spacing value in General ➝ Layout ➝ %sContent Area Spacing%s.', 'blocksy' ),
blocksy_safe_sprintf(
'<a data-trigger-section="general:layout_panel" href="%s">',
admin_url('/customize.php?autofocus[section]=general&ct_autofocus=general:layout_panel')
),
'</a>'
),
],
] : []
];