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

View File

@@ -0,0 +1,25 @@
<?php
namespace ElementorPro\Modules\CustomCode\ImportExport;
use Elementor\App\Modules\ImportExport\Processes\Export;
use Elementor\App\Modules\ImportExport\Processes\Import;
use Elementor\App\Modules\ImportExport\Processes\Revert;
class Import_Export {
const FILE_NAME = 'custom-code';
public function register_hooks() {
add_action( 'elementor/import-export/export-kit', function ( Export $export ) {
$export->register( new Export_Runner() );
} );
add_action( 'elementor/import-export/import-kit', function ( Import $import ) {
$import->register( new Import_Runner() );
} );
add_action( 'elementor/import-export/revert-kit', function ( Revert $revert ) {
$revert->register( new Revert_Runner() );
} );
}
}