at path:
ROOT
/
wp-content
/
plugins
/
proelements-3.34.0
/
core
/
maintenance.php
run:
R
W
Run
admin
DIR
2026-01-21 20:29:01
R
W
Run
app
DIR
2026-01-21 20:29:01
R
W
Run
behaviors
DIR
2026-01-21 20:29:01
R
W
Run
compatibility
DIR
2026-01-21 20:29:01
R
W
Run
connect
DIR
2026-01-21 20:29:01
R
W
Run
data
DIR
2026-01-21 20:29:01
R
W
Run
database
DIR
2026-01-21 20:29:01
R
W
Run
editor
DIR
2026-01-21 20:29:01
R
W
Run
integrations
DIR
2026-01-21 20:29:01
R
W
Run
isolation
DIR
2026-01-21 20:29:01
R
W
Run
notifications
DIR
2026-01-21 20:29:01
R
W
Run
preview
DIR
2026-01-21 20:29:01
R
W
Run
security
DIR
2026-01-21 20:29:01
R
W
Run
upgrade
DIR
2026-01-21 20:29:01
R
W
Run
utils
DIR
2026-01-21 20:29:01
R
W
Run
maintenance.php
392 By
2026-01-21 20:29:01
R
W
Run
Delete
Rename
modules-manager.php
2.41 KB
2026-01-21 20:29:01
R
W
Run
Delete
Rename
php-api.php
424 By
2026-01-21 20:29:01
R
W
Run
Delete
Rename
utils.php
13.6 KB
2026-01-21 20:29:01
R
W
Run
Delete
Rename
error_log
up
📄
maintenance.php
Save
<?php namespace ElementorPro\Core; use ElementorPro\License\API; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Maintenance { public static function init(): void { register_deactivation_hook( ELEMENTOR_PRO_PLUGIN_BASE, [ __CLASS__, 'on_deactivated' ] ); } public static function on_deactivated(): void { API::get_version( true, 'deactivated' ); } }