[ 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
/
library
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 atomic-widgets-library.php
469 B
SET
[ EDIT ]
|
[ DEL ]
📄 div-block.php
1,186 B
SET
[ EDIT ]
|
[ DEL ]
📄 flexbox.php
1,170 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: atomic-widgets-library.php
<?php namespace Elementor\Modules\AtomicWidgets\Library; use Elementor\Plugin; class Atomic_Widgets_Library { public function register_hooks() { add_action( 'elementor/documents/register', fn() => $this->register_documents() ); } public function register_documents() { Plugin::$instance->documents ->register_document_type( 'e-div-block', Div_Block::get_class_full_name() ) ->register_document_type( 'e-flexbox', Flexbox::get_class_full_name() ); } }