??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/renovaid.co.uk/wp-content/plugins/elementor/includes/controls/groups/text-stroke.php
⬅ Kembali
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor text stroke control.
*
* A group control for creating a stroke effect on text. Displays input fields to define
* the text stroke and color stroke.
*
* @since 3.5.0
*/
class Group_Control_Text_Stroke extends Group_Control_Base {
/**
* Fields.
*
* Holds all the text stroke control fields.
*
* @since 3.5.0
* @access protected
* @static
*
* @var array Text Stroke control fields.
*/
protected static $fields;
/**
* Get text stroke control type.
*
* Retrieve the control type, in this case `text-stroke`.
*
* @since 3.5.0
* @access public
* @static
*
* @return string Control type.
*/
public static function get_type() {
return 'text-stroke';
}
/**
* Init fields.
*
* Initialize text stroke control fields.
*
* @since 3.5.0
* @access protected
*
* @return array Control fields.
*/
protected function init_fields() {
$controls = [];
$controls['text_stroke'] = [
'label' => esc_html__( 'Text Stroke', 'elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
'range' => [
'px' => [
'min' => 0,
'max' => 10,
],
'em' => [
'min' => 0,
'max' => 1,
],
'rem' => [
'min' => 0,
'max' => 1,
],
],
'responsive' => true,
'selector' => '{{WRAPPER}}',
'selectors' => [
'{{SELECTOR}}' => '-webkit-text-stroke-width: {{SIZE}}{{UNIT}}; stroke-width: {{SIZE}}{{UNIT}};',
],
];
$controls['stroke_color'] = [
'label' => esc_html__( 'Stroke Color', 'elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#000',
'selector' => '{{WRAPPER}}',
'selectors' => [
'{{SELECTOR}}' => '-webkit-text-stroke-color: {{VALUE}}; stroke: {{VALUE}};',
],
];
return $controls;
}
/**
* Get default options.
*
* Retrieve the default options of the text stroke control. Used to return the
* default options while initializing the text stroke control.
*
* @since 3.5.0
* @access protected
*
* @return array Default text stroke control options.
*/
protected function get_default_options() {
return [
'popover' => [
'starter_title' => esc_html__( 'Text Stroke', 'elementor' ),
'starter_name' => 'text_stroke_type',
'starter_value' => 'yes',
'settings' => [
'render_type' => 'ui',
],
],
];
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 background.php
php
22.5 KB
2024-09-04 13:09
🐘 base.php
php
13.9 KB
2023-04-23 15:22
🐘 border.php
php
2.6 KB
2023-10-18 18:32
🐘 box-shadow.php
php
2.3 KB
2023-10-18 18:32
🐘 css-filter.php
php
3.4 KB
2025-03-17 17:28
🐘 flex-container.php
php
7.5 KB
2024-12-10 19:19
🐘 flex-item.php
php
4.8 KB
2024-01-08 11:56
🐘 grid-container.php
php
8.2 KB
2024-12-10 19:19
🐘 image-size.php
php
11 KB
2024-02-29 16:51
🐘 text-shadow.php
php
1.9 KB
2023-10-18 18:32
🐘 text-stroke.php
php
2.4 KB
2024-01-08 11:56
🐘 typography.php
php
11.3 KB
2025-08-05 18:00