This commit is contained in:
proelements
2025-11-13 15:18:34 +02:00
commit 9ac2bf2aa0
1178 changed files with 296944 additions and 0 deletions

18
modules/wp-cli/update.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace ElementorPro\Modules\WpCli;
use Elementor\Modules\WpCli\Update as UpdateBase;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Elementor Page Builder Pro cli tools.
*/
class Update extends UpdateBase {
protected function get_update_db_manager_class() {
return '\ElementorPro\Core\Upgrade\Manager';
}
}