PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.6.2
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.6.2
2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 1.8.1 All 42 releases
sellkit / includes / elementor / modules / optin / fields / email.php

email.php in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.6.2, at includes/elementor/modules/optin/fields/email.php

27 lines 585 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined( 'ABSPATH' ) || die();
4
5 class Sellkit_Elementor_Optin_Field_Email extends Sellkit_Elementor_Optin_Field_Text {
6
7 public static function get_field_type() {
8 return 'email';
9 }
10
11 public function get_input_type() {
12 return 'email';
13 }
14
15 public static function get_additional_controls() {
16 $commons = parent::get_common_controls();
17
18 return [
19 'label' => $commons['label'],
20 'field_value' => $commons['field_value'],
21 'placeholder' => $commons['placeholder'],
22 'required' => $commons['required'],
23 'width_responsive' => $commons['width_responsive'],
24 ];
25 }
26 }
27