[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-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
/
database
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 migrations
SET
[ DEL ]
📄 atomic-widgets-database-updater.php
604 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: atomic-widgets-database-updater.php
<?php namespace Elementor\Modules\AtomicWidgets\Database; use Elementor\Core\Database\Base_Database_Updater; use Elementor\Modules\AtomicWidgets\Database\Migrations\Add_Capabilities; class Atomic_Widgets_Database_Updater extends Base_Database_Updater { const DB_VERSION = 1; const OPTION_NAME = 'elementor_atomic_widgets_db_version'; protected function get_migrations(): array { return [ 1 => new Add_Capabilities(), ]; } protected function get_db_version() { return static::DB_VERSION; } protected function get_db_version_option_name(): string { return static::OPTION_NAME; } }