PluginProbe
Elementor Website Builder – more than just a page builder / 3.32.3
Elementor Website Builder – more than just a page builder v3.32.3
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
elementor / app / modules / import-export-customization / runners / revert / revert-runner-base.php

revert-runner-base.php in Elementor Website Builder – more than just a page builder 3.32.3, at app/modules/import-export-customization/runners/revert/revert-runner-base.php

25 lines 622 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\App\Modules\ImportExportCustomization\Runners\Revert;
4
5 use Elementor\App\Modules\ImportExportCustomization\Runners\Runner_Interface;
6
7 abstract class Revert_Runner_Base implements Runner_Interface {
8
9 /**
10 * By the passed data we should decide if we want to run the revert function of the runner or not.
11 *
12 * @param array $data
13 *
14 * @return bool
15 */
16 abstract public function should_revert( array $data ): bool;
17
18 /**
19 * Main function of the runner revert process.
20 *
21 * @param array $data Necessary data for the revert process.
22 */
23 abstract public function revert( array $data );
24 }
25