[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
attributes
/
controls
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 repeatable-attributes-control.php
702 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: repeatable-attributes-control.php
<?php namespace ElementorPro\Modules\Attributes\Controls; use Elementor\Modules\AtomicWidgets\Controls\Types\Repeatable_Control as Core_Repeatable_Control; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Repeatable_Attributes_Control extends Core_Repeatable_Control { private ?array $add_item_tooltip_props = null; public function set_addItemTooltipProps( array $props ): self { $this->add_item_tooltip_props = $props; return $this; } public function get_props(): array { $props = parent::get_props(); if ( null !== $this->add_item_tooltip_props ) { $props['addItemTooltipProps'] = (object) $this->add_item_tooltip_props; } return $props; } }