🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
mnt
/
web613
/
c2
/
38
/
570372438
/
htdocs
/
STRATO-apps
/
wordpress_02
/
app
/
wp-content
/
plugins
/
elementor
/
modules
/
atomic-widgets
/
library
✏️
Editing: 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() ) ->register_document_type( 'e-form', Atomic_Form::get_class_full_name() ); } }
💾 Save Changes
❌ Cancel