PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / trunk
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell vtrunk
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / admin / import-export / batch-processing / bricks / class-wpfnl-bricks-batch.php

class-wpfnl-bricks-batch.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell trunk, at admin/import-export/batch-processing/bricks/class-wpfnl-bricks-batch.php

42 lines 649 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Bricks batch
4 *
5 * @package WPFunnels\Batch
6 * @since 3.3.2
7 */
8
9 namespace WPFunnels\Batch;
10
11 use WPFunnels\Batch\Bricks\Wpfnl_Bricks_Source;
12
13 /**
14 * Bricks batch
15 *
16 * @package
17 * @since 3.3.2
18 */
19 class Wpfnl_Bricks_Batch extends Wpfnl_Background_Task {
20
21 /**
22 * Image Process
23 *
24 * @var string
25 * @since 3.3.2
26 */
27 protected $action = 'wpfunnels_bricks_import_process';
28
29 /**
30 * Task
31 *
32 * @param mixed $item Bricks module item.
33 * @inheritDoc
34 * @since 3.3.2
35 */
36 protected function task( $item ) {
37 $elementor_source = new Wpfnl_Bricks_Source();
38 $elementor_source->import_single_template( $item );
39 return false;
40 }
41 }
42