| 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.9/wp-content/themes/blocksy/inc/panel-builder/header/search/ |
Upload File : |
<?php
if (! isset($device)) {
$device = 'desktop';
}
$class = 'ct-header-search ct-toggle';
$item_visibility = blocksy_default_akg('header_search_visibility', $atts, [
'tablet' => true,
'mobile' => true,
]);
$class .= ' ' . blocksy_visibility_classes($item_visibility);
$label_class = 'ct-label';
$label_class .= ' ' . blocksy_visibility_classes(blocksy_akg('search_label_visibility', $atts,
[
'desktop' => false,
'tablet' => false,
'mobile' => false,
]
));
$search_label = blocksy_expand_responsive_value(
blocksy_default_akg('search_label', $atts, __('Search', 'blocksy'))
)[$device];
$search_label = blocksy_translate_dynamic(
$search_label,
$panel_type . ':' . $section_id . ':' . $item_id . ':search_label'
);
$search_label_position = blocksy_expand_responsive_value(
blocksy_akg('search_label_position', $atts, 'left')
);
$icon_classes = [
'ct-icon',
blocksy_visibility_classes(
blocksy_akg('search_icon_visibility', $atts, [
'desktop' => true,
'tablet' => true,
'mobile' => true,
])
)
];
$icon = apply_filters(
'blocksy:header:search:icon',
'<svg class="' . trim(implode(' ', $icon_classes)) . '" aria-hidden="true" width="15" height="15" viewBox="0 0 15 15"><path d="M14.8,13.7L12,11c0.9-1.2,1.5-2.6,1.5-4.2c0-3.7-3-6.8-6.8-6.8S0,3,0,6.8s3,6.8,6.8,6.8c1.6,0,3.1-0.6,4.2-1.5l2.8,2.8c0.1,0.1,0.3,0.2,0.5,0.2s0.4-0.1,0.5-0.2C15.1,14.5,15.1,14,14.8,13.7z M1.5,6.8c0-2.9,2.4-5.2,5.2-5.2S12,3.9,12,6.8S9.6,12,6.8,12S1.5,9.6,1.5,6.8z"/></svg>'
);
if (function_exists('blocksy_companion_get_icon') && isset($atts['icon'])) {
$icon = blocksy_companion_get_icon([
'icon_descriptor' => blocksy_akg('icon', $atts, [
'icon' => 'blc blc-search'
]),
'icon_container' => false,
'icon_html_atts' => [
'class' => trim(implode(' ', $icon_classes)),
'aria-hidden' => 'true',
]
]);
}
?>
<button
class="<?php echo esc_attr($class) ?>"
data-toggle-panel="#search-modal"
aria-controls="search-modal"
aria-label="<?php echo $search_label; ?>"
data-label="<?php echo $search_label_position[$device] ?>"
<?php echo blocksy_attr_to_html($attr) ?>>
<span class="<?php echo $label_class ?>" aria-hidden="true"><?php echo $search_label; ?></span>
<?php
/**
* Note to code reviewers: This line doesn't need to be escaped.
* The value used here escapes the value properly.
* It contains an inline SVG, which is safe.
*/
echo $icon
?>
</button>