[ 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
/
core
/
editor
/
data
/
globals
/
endpoints
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 base.php
1,691 B
SET
[ EDIT ]
|
[ DEL ]
📄 colors.php
1,144 B
SET
[ EDIT ]
|
[ DEL ]
📄 typography.php
1,884 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: colors.php
<?php namespace Elementor\Core\Editor\Data\Globals\Endpoints; use Elementor\Plugin; class Colors extends Base { public function get_name() { return 'colors'; } public function get_format() { return 'globals/colors/{id}'; } protected function get_kit_items() { $result = []; $kit = Plugin::$instance->kits_manager->get_active_kit_for_frontend(); $system_items = $kit->get_settings_for_display( 'system_colors' ); $custom_items = $kit->get_settings_for_display( 'custom_colors' ); if ( ! $system_items ) { $system_items = []; } if ( ! $custom_items ) { $custom_items = []; } $items = array_merge( $system_items, $custom_items ); foreach ( $items as $index => $item ) { $id = $item['_id']; $result[ $id ] = [ 'id' => $id, 'title' => $item['title'] ?? '', 'value' => $item['color'] ?? '', ]; } return apply_filters( 'elementor/globals/colors/items', $result ); } protected function convert_db_format( $item ) { return [ '_id' => $item['id'], 'title' => sanitize_text_field( $item['title'] ?? '' ), 'color' => sanitize_text_field( $item['value'] ?? '' ), ]; } }