PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
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 / modules / steps / landing / class-wpfnl-landing.php

class-wpfnl-landing.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at admin/modules/steps/landing/class-wpfnl-landing.php

41 lines 822 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Landing module
4 *
5 * @package
6 */
7 namespace WPFunnels\Admin\Modules\Steps\Landing;
8
9 use WPFunnels\Admin\Modules\Steps\Module as Steps;
10
11 class Module extends Steps
12 {
13 protected $_internal_keys = [
14
15 ];
16
17 /**
18 * Get view of the landing page settings module
19 *
20 * @since 1.0.0
21 */
22 public function get_view()
23 {
24 $show_settings = filter_input(INPUT_GET, 'show_settings', FILTER_SANITIZE_SPECIAL_CHARS);
25 if ($show_settings == 1) {
26 require_once WPFNL_DIR . '/admin/modules/steps/landing/views/settings.php';
27 } else {
28 require_once WPFNL_DIR . '/admin/modules/steps/landing/views/view.php';
29 }
30 }
31
32 public function get_name()
33 {
34 return __('landing','wpfnl');
35 }
36
37 public function init_ajax()
38 {
39 }
40 }
41