127 lines
3.8 KiB
PHP
127 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* Creative Elements - live Theme & Page Builder
|
|
*
|
|
* @author WebshopWorks, Elementor
|
|
* @copyright 2019-2023 WebshopWorks.com & Elementor.com
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html
|
|
*/
|
|
|
|
namespace CE;
|
|
|
|
defined('_PS_VERSION_') or exit;
|
|
|
|
/**
|
|
* Elementor text shadow control.
|
|
*
|
|
* A base control for creating text shadows control. Displays input fields for
|
|
* horizontal shadow, vertical shadow, shadow blur and shadow color.
|
|
*
|
|
* @since 1.6.0
|
|
*/
|
|
class ControlTextShadow extends ControlBaseMultiple
|
|
{
|
|
/**
|
|
* Get text shadow control type.
|
|
*
|
|
* Retrieve the control type, in this case `text_shadow`.
|
|
*
|
|
* @since 1.6.0
|
|
*
|
|
* @return string Control type
|
|
*/
|
|
public function getType()
|
|
{
|
|
return 'text_shadow';
|
|
}
|
|
|
|
/**
|
|
* Get text shadow control default values.
|
|
*
|
|
* Retrieve the default value of the text shadow control. Used to return the
|
|
* default values while initializing the text shadow control.
|
|
*
|
|
* @since 1.6.0
|
|
*
|
|
* @return array Control default value
|
|
*/
|
|
public function getDefaultValue()
|
|
{
|
|
return [
|
|
'horizontal' => 0,
|
|
'vertical' => 0,
|
|
'blur' => 10,
|
|
'color' => 'rgba(0,0,0,0.3)',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get text shadow control sliders.
|
|
*
|
|
* Retrieve the sliders of the text shadow control. Sliders are used while
|
|
* rendering the control output in the editor.
|
|
*
|
|
* @since 1.6.0
|
|
*
|
|
* @return array Control sliders
|
|
*/
|
|
public function getSliders()
|
|
{
|
|
return [
|
|
'blur' => [
|
|
'label' => __('Blur'),
|
|
'min' => 0,
|
|
'max' => 100,
|
|
],
|
|
'horizontal' => [
|
|
'label' => __('Horizontal'),
|
|
'min' => -100,
|
|
'max' => 100,
|
|
],
|
|
'vertical' => [
|
|
'label' => __('Vertical'),
|
|
'min' => -100,
|
|
'max' => 100,
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Render text shadow control output in the editor.
|
|
*
|
|
* Used to generate the control HTML in the editor using Underscore JS
|
|
* template. The variables for the class are available using `data` JS
|
|
* object.
|
|
*
|
|
* @since 1.6.0
|
|
*/
|
|
public function contentTemplate()
|
|
{
|
|
?>
|
|
<div class="elementor-shadow-box">
|
|
<div class="elementor-control-field elementor-color-picker-wrapper">
|
|
<label class="elementor-control-title"><?php _e('Color'); ?></label>
|
|
<div class="elementor-control-input-wrapper elementor-control-unit-1">
|
|
<div class="elementor-color-picker-placeholder"></div>
|
|
</div>
|
|
</div>
|
|
<?php foreach ($this->getSliders() as $slider_name => $slider) { ?>
|
|
<?php $control_uid = $this->getControlUid($slider_name); ?>
|
|
<div class="elementor-shadow-slider elementor-control-type-slider">
|
|
<label for="<?php echo esc_attr($control_uid); ?>" class="elementor-control-title">
|
|
<?php echo $slider['label']; ?>
|
|
</label>
|
|
<div class="elementor-control-input-wrapper">
|
|
<div class="elementor-slider" data-input="<?php echo esc_attr($slider_name); ?>"></div>
|
|
<div class="elementor-slider-input elementor-control-unit-2">
|
|
<input id="<?php echo esc_attr($control_uid); ?>" data-setting="<?php echo esc_attr($slider_name); ?>"
|
|
type="number" min="<?php echo esc_attr($slider['min']); ?>" max="<?php echo esc_attr($slider['max']); ?>">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}
|