Passed
Push — master ( f7388b...a1d3e4 )
by Brian
04:27
created
includes/data/discount-schema.php 1 patch
Indentation   +172 added lines, -172 removed lines patch added patch discarded remove patch
@@ -13,177 +13,177 @@
 block discarded – undo
13 13
 
14 14
 return array(
15 15
 
16
-	'id'              => array(
17
-		'description' => __( 'Unique identifier for the discount.', 'invoicing' ),
18
-		'type'        => 'integer',
19
-		'context'     => array( 'view', 'edit', 'embed' ),
20
-		'readonly'    => true,
21
-	),
22
-
23
-	'status'          => array(
24
-		'description' => __( 'A named status for the discount.', 'invoicing' ),
25
-		'type'        => 'string',
26
-		'enum'        => array( 'publish', 'pending', 'draft', 'expired' ),
27
-		'default'     => 'draft',
28
-		'context'     => array( 'view', 'edit', 'embed' ),
29
-	),
30
-
31
-	'version'         => array(
32
-		'description' => __( 'Plugin version when the discount was created.', 'invoicing' ),
33
-		'type'        => 'string',
34
-		'context'     => array( 'view', 'edit', 'embed' ),
35
-		'readonly'    => true,
36
-	),
37
-
38
-	'date_created'    => array(
39
-		'description' => __( "The date the discount was created, in the site's timezone.", 'invoicing' ),
40
-		'type'        => 'string',
41
-		'context'     => array( 'view', 'edit', 'embed' ),
42
-	),
43
-
44
-	'date_created_gmt'    => array(
45
-		'description' => __( 'The GMT date the discount was created.', 'invoicing' ),
46
-		'type'        => 'string',
47
-		'context'     => array( 'view', 'edit', 'embed' ),
48
-		'readonly'    => true,
49
-	),
50
-
51
-	'date_modified'   => array(
52
-		'description' => __( "The date the discount was last modified, in the site's timezone.", 'invoicing' ),
53
-		'type'        => 'string',
54
-		'context'     => array( 'view', 'edit', 'embed' ),
55
-		'readonly'    => true,
56
-	),
57
-
58
-	'date_modified_gmt'    => array(
59
-		'description' => __( 'The GMT date the discount was last modified.', 'invoicing' ),
60
-		'type'        => 'string',
61
-		'context'     => array( 'view', 'edit', 'embed' ),
62
-		'readonly'    => true,
63
-	),
64
-
65
-	'name'			  => array(
66
-		'description' => __( 'The discount name.', 'invoicing' ),
67
-		'type'        => 'string',
68
-		'context'     => array( 'view', 'edit', 'embed' ),
69
-	),
70
-
71
-	'description'     => array(
72
-		'description' => __( 'A description of what the discount is all about.', 'invoicing' ),
73
-		'type'        => 'string',
74
-		'context'     => array( 'view', 'edit', 'embed' ),
75
-	),
76
-
77
-	'code'            => array(
78
-		'description' => __( 'The discount code.', 'invoicing' ),
79
-		'type'        => 'string',
80
-		'context'     => array( 'view', 'edit', 'embed' ),
81
-		'required'	  => true,
82
-	),
83
-
84
-	'type'            => array(
85
-		'description' => __( 'The type of discount.', 'invoicing' ),
86
-		'type'        => 'string',
87
-		'enum'        => array_keys( wpinv_get_discount_types() ),
88
-		'context'     => array( 'view', 'edit', 'embed' ),
89
-		'default'	  => 'percent',
90
-	),
91
-
92
-	'amount'        => array(
93
-		'description' => __( 'The discount value.', 'invoicing' ),
94
-		'type'        => 'number',
95
-		'context'     => array( 'view', 'edit', 'embed' ),
96
-		'required'	  => true,
97
-	),
98
-
99
-	'formatted_amount'        => array(
100
-		'description' => __( 'The formatted discount value.', 'invoicing' ),
101
-		'type'        => 'string',
102
-		'context'     => array( 'view', 'edit', 'embed' ),
103
-		'readonly'    => true,
104
-	),
105
-
106
-	'uses'            => array(
107
-		'description' => __( 'The number of times the discount has been used.', 'invoicing' ),
108
-		'type'        => 'integer',
109
-		'context'     => array( 'view', 'embed' ),
110
-		'readonly'    => true,
111
-	),
112
-
113
-	'max_uses'        => array(
114
-		'description' => __( 'The maximum number of times the discount can be used.', 'invoicing' ),
115
-		'type'        => 'integer',
116
-		'context'     => array( 'view', 'edit' ),
117
-	),
118
-
119
-	'usage'           => array(
120
-		'description' => __( "The discount's usage, i.e uses / max uses.", 'invoicing' ),
121
-		'type'        => 'string',
122
-		'context'     => array( 'view', 'embed' ),
123
-		'readonly'    => true,
124
-	),
125
-
126
-	'is_single_use'   => array(
127
-		'description' => __( 'Whether or not the discount can only be used once per user.', 'invoicing' ),
128
-		'type'        => 'boolean',
129
-		'context'     => array( 'view', 'edit' ),
130
-	),
131
-
132
-	'is_recurring'   => array(
133
-		'description' => __( 'Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing' ),
134
-		'type'        => 'boolean',
135
-		'context'     => array( 'view', 'edit' ),
136
-	),
137
-
138
-	'start_date'      => array(
139
-		'description' => __( 'The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing' ),
140
-		'type'        => 'string',
141
-		'context'     => array( 'view', 'edit' ),
142
-	),
143
-
144
-	'end_date'        => array(
145
-		'description' => __( 'The expiration date for the discount.', 'invoicing' ),
146
-		'type'        => 'string',
147
-		'context'     => array( 'view', 'edit' ),
148
-	),
149
-
150
-	'allowed_items'   => array(
151
-		'description' => __( 'Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing' ),
152
-		'type'        => 'array',
153
-		'context'     => array( 'view', 'edit' ),
154
-		'items'       => array(
155
-			'type'    => 'integer'
156
-		)
157
-	),
158
-
159
-	'excluded_items'  => array(
160
-		'description' => __( 'Items which are NOT allowed to use this discount.', 'invoicing' ),
161
-		'type'        => 'array',
162
-		'context'     => array( 'view', 'edit' ),
163
-		'items'       => array(
164
-			'type'    => 'integer'
165
-		)
166
-	),
167
-
168
-	'required_items'  => array(
169
-		'description' => __( 'Items which are required to be in the cart before using this discount.', 'invoicing' ),
170
-		'type'        => 'array',
171
-		'context'     => array( 'view', 'edit' ),
172
-		'items'       => array(
173
-			'type'    => 'integer'
174
-		)
175
-	),
176
-
177
-	'minimum_total'   => array(
178
-		'description' => __( 'The minimum total needed to use this invoice.', 'invoicing' ),
179
-		'type'        => 'number',
180
-		'context'     => array( 'view', 'edit' ),
181
-	),
182
-
183
-	'maximum_total'   => array(
184
-		'description' => __( 'The maximum total needed to use this invoice.', 'invoicing' ),
185
-		'type'        => 'number',
186
-		'context'     => array( 'view', 'edit' ),
187
-	),
16
+    'id'              => array(
17
+        'description' => __( 'Unique identifier for the discount.', 'invoicing' ),
18
+        'type'        => 'integer',
19
+        'context'     => array( 'view', 'edit', 'embed' ),
20
+        'readonly'    => true,
21
+    ),
22
+
23
+    'status'          => array(
24
+        'description' => __( 'A named status for the discount.', 'invoicing' ),
25
+        'type'        => 'string',
26
+        'enum'        => array( 'publish', 'pending', 'draft', 'expired' ),
27
+        'default'     => 'draft',
28
+        'context'     => array( 'view', 'edit', 'embed' ),
29
+    ),
30
+
31
+    'version'         => array(
32
+        'description' => __( 'Plugin version when the discount was created.', 'invoicing' ),
33
+        'type'        => 'string',
34
+        'context'     => array( 'view', 'edit', 'embed' ),
35
+        'readonly'    => true,
36
+    ),
37
+
38
+    'date_created'    => array(
39
+        'description' => __( "The date the discount was created, in the site's timezone.", 'invoicing' ),
40
+        'type'        => 'string',
41
+        'context'     => array( 'view', 'edit', 'embed' ),
42
+    ),
43
+
44
+    'date_created_gmt'    => array(
45
+        'description' => __( 'The GMT date the discount was created.', 'invoicing' ),
46
+        'type'        => 'string',
47
+        'context'     => array( 'view', 'edit', 'embed' ),
48
+        'readonly'    => true,
49
+    ),
50
+
51
+    'date_modified'   => array(
52
+        'description' => __( "The date the discount was last modified, in the site's timezone.", 'invoicing' ),
53
+        'type'        => 'string',
54
+        'context'     => array( 'view', 'edit', 'embed' ),
55
+        'readonly'    => true,
56
+    ),
57
+
58
+    'date_modified_gmt'    => array(
59
+        'description' => __( 'The GMT date the discount was last modified.', 'invoicing' ),
60
+        'type'        => 'string',
61
+        'context'     => array( 'view', 'edit', 'embed' ),
62
+        'readonly'    => true,
63
+    ),
64
+
65
+    'name'			  => array(
66
+        'description' => __( 'The discount name.', 'invoicing' ),
67
+        'type'        => 'string',
68
+        'context'     => array( 'view', 'edit', 'embed' ),
69
+    ),
70
+
71
+    'description'     => array(
72
+        'description' => __( 'A description of what the discount is all about.', 'invoicing' ),
73
+        'type'        => 'string',
74
+        'context'     => array( 'view', 'edit', 'embed' ),
75
+    ),
76
+
77
+    'code'            => array(
78
+        'description' => __( 'The discount code.', 'invoicing' ),
79
+        'type'        => 'string',
80
+        'context'     => array( 'view', 'edit', 'embed' ),
81
+        'required'	  => true,
82
+    ),
83
+
84
+    'type'            => array(
85
+        'description' => __( 'The type of discount.', 'invoicing' ),
86
+        'type'        => 'string',
87
+        'enum'        => array_keys( wpinv_get_discount_types() ),
88
+        'context'     => array( 'view', 'edit', 'embed' ),
89
+        'default'	  => 'percent',
90
+    ),
91
+
92
+    'amount'        => array(
93
+        'description' => __( 'The discount value.', 'invoicing' ),
94
+        'type'        => 'number',
95
+        'context'     => array( 'view', 'edit', 'embed' ),
96
+        'required'	  => true,
97
+    ),
98
+
99
+    'formatted_amount'        => array(
100
+        'description' => __( 'The formatted discount value.', 'invoicing' ),
101
+        'type'        => 'string',
102
+        'context'     => array( 'view', 'edit', 'embed' ),
103
+        'readonly'    => true,
104
+    ),
105
+
106
+    'uses'            => array(
107
+        'description' => __( 'The number of times the discount has been used.', 'invoicing' ),
108
+        'type'        => 'integer',
109
+        'context'     => array( 'view', 'embed' ),
110
+        'readonly'    => true,
111
+    ),
112
+
113
+    'max_uses'        => array(
114
+        'description' => __( 'The maximum number of times the discount can be used.', 'invoicing' ),
115
+        'type'        => 'integer',
116
+        'context'     => array( 'view', 'edit' ),
117
+    ),
118
+
119
+    'usage'           => array(
120
+        'description' => __( "The discount's usage, i.e uses / max uses.", 'invoicing' ),
121
+        'type'        => 'string',
122
+        'context'     => array( 'view', 'embed' ),
123
+        'readonly'    => true,
124
+    ),
125
+
126
+    'is_single_use'   => array(
127
+        'description' => __( 'Whether or not the discount can only be used once per user.', 'invoicing' ),
128
+        'type'        => 'boolean',
129
+        'context'     => array( 'view', 'edit' ),
130
+    ),
131
+
132
+    'is_recurring'   => array(
133
+        'description' => __( 'Whether or not the discount applies to the initial payment only or all recurring payments.', 'invoicing' ),
134
+        'type'        => 'boolean',
135
+        'context'     => array( 'view', 'edit' ),
136
+    ),
137
+
138
+    'start_date'      => array(
139
+        'description' => __( 'The start date for the discount in the format of yyyy-mm-dd hh:mm:ss. If provided, the discount can only be used after or on this date.', 'invoicing' ),
140
+        'type'        => 'string',
141
+        'context'     => array( 'view', 'edit' ),
142
+    ),
143
+
144
+    'end_date'        => array(
145
+        'description' => __( 'The expiration date for the discount.', 'invoicing' ),
146
+        'type'        => 'string',
147
+        'context'     => array( 'view', 'edit' ),
148
+    ),
149
+
150
+    'allowed_items'   => array(
151
+        'description' => __( 'Items which are allowed to use this discount. Leave blank to enable for all items.', 'invoicing' ),
152
+        'type'        => 'array',
153
+        'context'     => array( 'view', 'edit' ),
154
+        'items'       => array(
155
+            'type'    => 'integer'
156
+        )
157
+    ),
158
+
159
+    'excluded_items'  => array(
160
+        'description' => __( 'Items which are NOT allowed to use this discount.', 'invoicing' ),
161
+        'type'        => 'array',
162
+        'context'     => array( 'view', 'edit' ),
163
+        'items'       => array(
164
+            'type'    => 'integer'
165
+        )
166
+    ),
167
+
168
+    'required_items'  => array(
169
+        'description' => __( 'Items which are required to be in the cart before using this discount.', 'invoicing' ),
170
+        'type'        => 'array',
171
+        'context'     => array( 'view', 'edit' ),
172
+        'items'       => array(
173
+            'type'    => 'integer'
174
+        )
175
+    ),
176
+
177
+    'minimum_total'   => array(
178
+        'description' => __( 'The minimum total needed to use this invoice.', 'invoicing' ),
179
+        'type'        => 'number',
180
+        'context'     => array( 'view', 'edit' ),
181
+    ),
182
+
183
+    'maximum_total'   => array(
184
+        'description' => __( 'The maximum total needed to use this invoice.', 'invoicing' ),
185
+        'type'        => 'number',
186
+        'context'     => array( 'view', 'edit' ),
187
+    ),
188 188
 
189 189
 );
Please login to merge, or discard this patch.
includes/class-wpinv-discount.php 1 patch
Indentation   +1349 added lines, -1349 removed lines patch added patch discarded remove patch
@@ -15,30 +15,30 @@  discard block
 block discarded – undo
15 15
  */
16 16
 class WPInv_Discount extends GetPaid_Data  {
17 17
 
18
-	/**
19
-	 * Which data store to load.
20
-	 *
21
-	 * @var string
22
-	 */
18
+    /**
19
+     * Which data store to load.
20
+     *
21
+     * @var string
22
+     */
23 23
     protected $data_store_name = 'discount';
24 24
 
25 25
     /**
26
-	 * This is the name of this object type.
27
-	 *
28
-	 * @var string
29
-	 */
30
-	protected $object_type = 'discount';
31
-
32
-	/**
33
-	 * Discount Data array. This is the core item data exposed in APIs.
34
-	 *
35
-	 * @since 1.0.19
36
-	 * @var array
37
-	 */
38
-	protected $data = array(
39
-		'status'               => 'draft',
40
-		'version'              => '',
41
-		'date_created'         => null,
26
+     * This is the name of this object type.
27
+     *
28
+     * @var string
29
+     */
30
+    protected $object_type = 'discount';
31
+
32
+    /**
33
+     * Discount Data array. This is the core item data exposed in APIs.
34
+     *
35
+     * @since 1.0.19
36
+     * @var array
37
+     */
38
+    protected $data = array(
39
+        'status'               => 'draft',
40
+        'version'              => '',
41
+        'date_created'         => null,
42 42
         'date_modified'        => null,
43 43
         'name'                 => 'no-name',
44 44
         'description'          => '',
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         'start'                => null,
50 50
         'items'                => array(),
51 51
         'excluded_items'       => array(),
52
-		'required_items'       => array(),
52
+        'required_items'       => array(),
53 53
         'uses' 				   => 0,
54 54
         'max_uses'             => null,
55 55
         'is_recurring'         => null,
@@ -59,144 +59,144 @@  discard block
 block discarded – undo
59 59
         'amount'               => null,
60 60
     );
61 61
 
62
-	/**
63
-	 * Stores meta in cache for future reads.
64
-	 *
65
-	 * A group must be set to to enable caching.
66
-	 *
67
-	 * @var string
68
-	 */
69
-	protected $cache_group = 'getpaid_discounts';
62
+    /**
63
+     * Stores meta in cache for future reads.
64
+     *
65
+     * A group must be set to to enable caching.
66
+     *
67
+     * @var string
68
+     */
69
+    protected $cache_group = 'getpaid_discounts';
70 70
 
71 71
     /**
72 72
      * Stores a reference to the original WP_Post object
73 73
      *
74 74
      * @var WP_Post
75 75
      */
76
-	protected $post = null;
77
-
78
-	/**
79
-	 * Get the discount if ID is passed, otherwise the discount is new and empty.
80
-	 *
81
-	 * @param int|array|string|WPInv_Discount|WP_Post $discount discount data, object, ID or code.
82
-	 */
83
-	public function __construct( $discount = 0 ) {
84
-		parent::__construct( $discount );
85
-
86
-		if ( is_numeric( $discount ) && 'wpi_discount' === get_post_type( $discount ) ) {
87
-			$this->set_id( $discount );
88
-		} elseif ( $discount instanceof self ) {
89
-			$this->set_id( $discount->get_id() );
90
-		} elseif ( ! empty( $discount->ID ) ) {
91
-			$this->set_id( $discount->ID );
92
-		} elseif ( is_array( $discount ) ) {
93
-			$this->set_props( $discount );
94
-
95
-			if ( isset( $discount['ID'] ) ) {
96
-				$this->set_id( $discount['ID'] );
97
-			}
98
-
99
-		} elseif ( is_scalar( $discount ) && $discount = self::get_discount_id_by_code( $discount ) ) {
100
-			$this->set_id( $discount );
101
-		} else {
102
-			$this->set_object_read( true );
103
-		}
76
+    protected $post = null;
77
+
78
+    /**
79
+     * Get the discount if ID is passed, otherwise the discount is new and empty.
80
+     *
81
+     * @param int|array|string|WPInv_Discount|WP_Post $discount discount data, object, ID or code.
82
+     */
83
+    public function __construct( $discount = 0 ) {
84
+        parent::__construct( $discount );
85
+
86
+        if ( is_numeric( $discount ) && 'wpi_discount' === get_post_type( $discount ) ) {
87
+            $this->set_id( $discount );
88
+        } elseif ( $discount instanceof self ) {
89
+            $this->set_id( $discount->get_id() );
90
+        } elseif ( ! empty( $discount->ID ) ) {
91
+            $this->set_id( $discount->ID );
92
+        } elseif ( is_array( $discount ) ) {
93
+            $this->set_props( $discount );
94
+
95
+            if ( isset( $discount['ID'] ) ) {
96
+                $this->set_id( $discount['ID'] );
97
+            }
98
+
99
+        } elseif ( is_scalar( $discount ) && $discount = self::get_discount_id_by_code( $discount ) ) {
100
+            $this->set_id( $discount );
101
+        } else {
102
+            $this->set_object_read( true );
103
+        }
104 104
 
105 105
         // Load the datastore.
106
-		$this->data_store = GetPaid_Data_Store::load( $this->data_store_name );
106
+        $this->data_store = GetPaid_Data_Store::load( $this->data_store_name );
107 107
 
108
-		if ( $this->get_id() > 0 ) {
108
+        if ( $this->get_id() > 0 ) {
109 109
             $this->post = get_post( $this->get_id() );
110 110
             $this->ID   = $this->get_id();
111
-			$this->data_store->read( $this );
111
+            $this->data_store->read( $this );
112
+        }
113
+
114
+    }
115
+
116
+    /**
117
+     * Fetch a discount from the db/cache
118
+     *
119
+     *
120
+     * @static
121
+     * @param string $field The field to query against: 'ID', 'discount_code'
122
+     * @param string|int $value The field value
123
+     * @deprecated
124
+     * @since 1.0.15
125
+     * @return array|bool array of discount details on success. False otherwise.
126
+     */
127
+    public static function get_data_by( $field, $value ) {
128
+
129
+        if ( 'id' == strtolower( $field ) ) {
130
+            // Make sure the value is numeric to avoid casting objects, for example,
131
+            // to int 1.
132
+            if ( ! is_numeric( $value ) )
133
+                return false;
134
+            $value = intval( $value );
135
+            if ( $value < 1 )
136
+                return false;
137
+        }
138
+
139
+        if ( ! $value || ! is_string( $field ) ) {
140
+            return false;
141
+        }
142
+
143
+        $field = trim( $field );
144
+
145
+        // prepare query args
146
+        switch ( strtolower( $field ) ) {
147
+            case 'id':
148
+                $discount_id = $value;
149
+                $args		 = array( 'include' => array( $value ) );
150
+                break;
151
+            case 'discount_code':
152
+            case 'code':
153
+                $value       = trim( $value );
154
+                $discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' );
155
+                $args		 = array( 'meta_key' => '_wpi_discount_code', 'meta_value' => $value );
156
+                break;
157
+            case 'name':
158
+                $discount_id = 0;
159
+                $args		 = array( 'name' => trim( $value ) );
160
+                break;
161
+            default:
162
+                $args		 = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value );
163
+                if ( ! is_array( $args ) ) {
164
+                    return apply_filters( "wpinv_discount_get_data_by_$field", false, $value );
165
+                }
166
+
167
+        }
168
+
169
+        // Check if there is a cached value.
170
+        if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) {
171
+            return $discount;
172
+        }
173
+
174
+        $args = array_merge(
175
+            $args,
176
+            array(
177
+                'post_type'      => 'wpi_discount',
178
+                'posts_per_page' => 1,
179
+                'post_status'    => array( 'publish', 'pending', 'draft', 'expired' )
180
+            )
181
+        );
182
+
183
+        $discount = get_posts( $args );
184
+
185
+        if( empty( $discount ) ) {
186
+            return false;
112 187
         }
113 188
 
114
-	}
115
-
116
-	/**
117
-	 * Fetch a discount from the db/cache
118
-	 *
119
-	 *
120
-	 * @static
121
-	 * @param string $field The field to query against: 'ID', 'discount_code'
122
-	 * @param string|int $value The field value
123
-	 * @deprecated
124
-	 * @since 1.0.15
125
-	 * @return array|bool array of discount details on success. False otherwise.
126
-	 */
127
-	public static function get_data_by( $field, $value ) {
128
-
129
-		if ( 'id' == strtolower( $field ) ) {
130
-			// Make sure the value is numeric to avoid casting objects, for example,
131
-			// to int 1.
132
-			if ( ! is_numeric( $value ) )
133
-				return false;
134
-			$value = intval( $value );
135
-			if ( $value < 1 )
136
-				return false;
137
-		}
138
-
139
-		if ( ! $value || ! is_string( $field ) ) {
140
-			return false;
141
-		}
142
-
143
-		$field = trim( $field );
144
-
145
-		// prepare query args
146
-		switch ( strtolower( $field ) ) {
147
-			case 'id':
148
-				$discount_id = $value;
149
-				$args		 = array( 'include' => array( $value ) );
150
-				break;
151
-			case 'discount_code':
152
-			case 'code':
153
-				$value       = trim( $value );
154
-				$discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' );
155
-				$args		 = array( 'meta_key' => '_wpi_discount_code', 'meta_value' => $value );
156
-				break;
157
-			case 'name':
158
-				$discount_id = 0;
159
-				$args		 = array( 'name' => trim( $value ) );
160
-				break;
161
-			default:
162
-				$args		 = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value );
163
-				if ( ! is_array( $args ) ) {
164
-					return apply_filters( "wpinv_discount_get_data_by_$field", false, $value );
165
-				}
166
-
167
-		}
168
-
169
-		// Check if there is a cached value.
170
-		if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) {
171
-			return $discount;
172
-		}
173
-
174
-		$args = array_merge(
175
-			$args,
176
-			array(
177
-				'post_type'      => 'wpi_discount',
178
-				'posts_per_page' => 1,
179
-				'post_status'    => array( 'publish', 'pending', 'draft', 'expired' )
180
-			)
181
-		);
182
-
183
-		$discount = get_posts( $args );
184
-
185
-		if( empty( $discount ) ) {
186
-			return false;
187
-		}
188
-
189
-		$discount = $discount[0];
190
-
191
-		// Prepare the return data.
192
-		$return = array(
189
+        $discount = $discount[0];
190
+
191
+        // Prepare the return data.
192
+        $return = array(
193 193
             'ID'                          => $discount->ID,
194 194
             'code'                        => get_post_meta( $discount->ID, '_wpi_discount_code', true ),
195 195
             'amount'                      => get_post_meta( $discount->ID, '_wpi_discount_amount', true ),
196 196
             'date_created'                => $discount->post_date,
197
-			'date_modified'               => $discount->post_modified,
198
-			'status'               		  => $discount->post_status,
199
-			'start'                  	  => get_post_meta( $discount->ID, '_wpi_discount_start', true ),
197
+            'date_modified'               => $discount->post_modified,
198
+            'status'               		  => $discount->post_status,
199
+            'start'                  	  => get_post_meta( $discount->ID, '_wpi_discount_start', true ),
200 200
             'expiration'                  => get_post_meta( $discount->ID, '_wpi_discount_expiration', true ),
201 201
             'type'               		  => get_post_meta( $discount->ID, '_wpi_discount_type', true ),
202 202
             'description'                 => $discount->post_excerpt,
@@ -204,84 +204,84 @@  discard block
 block discarded – undo
204 204
             'is_single_use'               => get_post_meta( $discount->ID, '_wpi_discount_is_single_use', true ),
205 205
             'items'              	      => get_post_meta( $discount->ID, '_wpi_discount_items', true ),
206 206
             'excluded_items'              => get_post_meta( $discount->ID, '_wpi_discount_excluded_items', true ),
207
-			'required_items'              => get_post_meta( $discount->ID, '_wpi_discount_required_items', true ),
207
+            'required_items'              => get_post_meta( $discount->ID, '_wpi_discount_required_items', true ),
208 208
             'max_uses'                    => get_post_meta( $discount->ID, '_wpi_discount_max_uses', true ),
209 209
             'is_recurring'                => get_post_meta( $discount->ID, '_wpi_discount_is_recurring', true ),
210 210
             'min_total'                   => get_post_meta( $discount->ID, '_wpi_discount_min_total', true ),
211 211
             'max_total'                   => get_post_meta( $discount->ID, '_wpi_discount_max_total', true ),
212 212
         );
213 213
 
214
-		$return = apply_filters( 'wpinv_discount_properties', $return );
215
-
216
-		// Update the cache with our data
217
-		wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' );
218
-		wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' );
219
-
220
-		return $return;
221
-	}
222
-
223
-	/**
224
-	 * Given a discount code, it returns a discount id.
225
-	 *
226
-	 *
227
-	 * @static
228
-	 * @param string $discount_code
229
-	 * @since 1.0.15
230
-	 * @return int
231
-	 */
232
-	public static function get_discount_id_by_code( $discount_code ) {
233
-
234
-		// Trim the code.
235
-		$discount_code = trim( $discount_code );
236
-
237
-		// Ensure a value has been passed.
238
-		if ( empty( $discount_code ) ) {
239
-			return 0;
240
-		}
241
-
242
-		// Maybe retrieve from the cache.
243
-		$discount_id   = wp_cache_get( $discount_code, 'getpaid_discount_codes' );
244
-		if ( ! empty( $discount_id ) ) {
245
-			return $discount_id;
246
-		}
247
-
248
-		// Fetch the first discount codes.
249
-		$discounts = get_posts(
250
-			array(
251
-				'meta_key'       => '_wpi_discount_code',
252
-				'meta_value'     => $discount_code,
253
-				'post_type'      => 'wpi_discount',
254
-				'posts_per_page' => 1,
255
-				'post_status'    => array( 'publish', 'pending', 'draft', 'expired' ),
256
-				'fields'         => 'ids',
257
-			)
258
-		);
259
-
260
-		if ( empty( $discounts ) ) {
261
-			return 0;
262
-		}
263
-
264
-		$discount_id = $discounts[0];
265
-
266
-		// Update the cache with our data
267
-		wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' );
268
-
269
-		return $discount_id;
270
-	}
271
-
272
-	/**
273
-	 * Magic method for checking the existence of a certain custom field.
274
-	 *
275
-	 * @since 1.0.15
276
-	 * @access public
277
-	 *
278
-	 * @return bool Whether the given discount field is set.
279
-	 */
280
-	public function __isset( $key ){
281
-		return isset( $this->data[$key] ) || method_exists( $this, "get_$key");
282
-	}
283
-
284
-	/*
214
+        $return = apply_filters( 'wpinv_discount_properties', $return );
215
+
216
+        // Update the cache with our data
217
+        wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' );
218
+        wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' );
219
+
220
+        return $return;
221
+    }
222
+
223
+    /**
224
+     * Given a discount code, it returns a discount id.
225
+     *
226
+     *
227
+     * @static
228
+     * @param string $discount_code
229
+     * @since 1.0.15
230
+     * @return int
231
+     */
232
+    public static function get_discount_id_by_code( $discount_code ) {
233
+
234
+        // Trim the code.
235
+        $discount_code = trim( $discount_code );
236
+
237
+        // Ensure a value has been passed.
238
+        if ( empty( $discount_code ) ) {
239
+            return 0;
240
+        }
241
+
242
+        // Maybe retrieve from the cache.
243
+        $discount_id   = wp_cache_get( $discount_code, 'getpaid_discount_codes' );
244
+        if ( ! empty( $discount_id ) ) {
245
+            return $discount_id;
246
+        }
247
+
248
+        // Fetch the first discount codes.
249
+        $discounts = get_posts(
250
+            array(
251
+                'meta_key'       => '_wpi_discount_code',
252
+                'meta_value'     => $discount_code,
253
+                'post_type'      => 'wpi_discount',
254
+                'posts_per_page' => 1,
255
+                'post_status'    => array( 'publish', 'pending', 'draft', 'expired' ),
256
+                'fields'         => 'ids',
257
+            )
258
+        );
259
+
260
+        if ( empty( $discounts ) ) {
261
+            return 0;
262
+        }
263
+
264
+        $discount_id = $discounts[0];
265
+
266
+        // Update the cache with our data
267
+        wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' );
268
+
269
+        return $discount_id;
270
+    }
271
+
272
+    /**
273
+     * Magic method for checking the existence of a certain custom field.
274
+     *
275
+     * @since 1.0.15
276
+     * @access public
277
+     *
278
+     * @return bool Whether the given discount field is set.
279
+     */
280
+    public function __isset( $key ){
281
+        return isset( $this->data[$key] ) || method_exists( $this, "get_$key");
282
+    }
283
+
284
+    /*
285 285
 	|--------------------------------------------------------------------------
286 286
 	| CRUD methods
287 287
 	|--------------------------------------------------------------------------
@@ -296,441 +296,441 @@  discard block
 block discarded – undo
296 296
 	|--------------------------------------------------------------------------
297 297
 	*/
298 298
 
299
-	/**
300
-	 * Get discount status.
301
-	 *
302
-	 * @since 1.0.19
303
-	 * @param  string $context View or edit context.
304
-	 * @return string
305
-	 */
306
-	public function get_status( $context = 'view' ) {
307
-		return $this->get_prop( 'status', $context );
299
+    /**
300
+     * Get discount status.
301
+     *
302
+     * @since 1.0.19
303
+     * @param  string $context View or edit context.
304
+     * @return string
305
+     */
306
+    public function get_status( $context = 'view' ) {
307
+        return $this->get_prop( 'status', $context );
308 308
     }
309 309
 
310 310
     /**
311
-	 * Get plugin version when the discount was created.
312
-	 *
313
-	 * @since 1.0.19
314
-	 * @param  string $context View or edit context.
315
-	 * @return string
316
-	 */
317
-	public function get_version( $context = 'view' ) {
318
-		return $this->get_prop( 'version', $context );
311
+     * Get plugin version when the discount was created.
312
+     *
313
+     * @since 1.0.19
314
+     * @param  string $context View or edit context.
315
+     * @return string
316
+     */
317
+    public function get_version( $context = 'view' ) {
318
+        return $this->get_prop( 'version', $context );
319 319
     }
320 320
 
321 321
     /**
322
-	 * Get date when the discount was created.
323
-	 *
324
-	 * @since 1.0.19
325
-	 * @param  string $context View or edit context.
326
-	 * @return string
327
-	 */
328
-	public function get_date_created( $context = 'view' ) {
329
-		return $this->get_prop( 'date_created', $context );
322
+     * Get date when the discount was created.
323
+     *
324
+     * @since 1.0.19
325
+     * @param  string $context View or edit context.
326
+     * @return string
327
+     */
328
+    public function get_date_created( $context = 'view' ) {
329
+        return $this->get_prop( 'date_created', $context );
330 330
     }
331 331
 
332 332
     /**
333
-	 * Get GMT date when the discount was created.
334
-	 *
335
-	 * @since 1.0.19
336
-	 * @param  string $context View or edit context.
337
-	 * @return string
338
-	 */
339
-	public function get_date_created_gmt( $context = 'view' ) {
333
+     * Get GMT date when the discount was created.
334
+     *
335
+     * @since 1.0.19
336
+     * @param  string $context View or edit context.
337
+     * @return string
338
+     */
339
+    public function get_date_created_gmt( $context = 'view' ) {
340 340
         $date = $this->get_date_created( $context );
341 341
 
342 342
         if ( $date ) {
343 343
             $date = get_gmt_from_date( $date );
344 344
         }
345
-		return $date;
345
+        return $date;
346 346
     }
347 347
 
348 348
     /**
349
-	 * Get date when the discount was last modified.
350
-	 *
351
-	 * @since 1.0.19
352
-	 * @param  string $context View or edit context.
353
-	 * @return string
354
-	 */
355
-	public function get_date_modified( $context = 'view' ) {
356
-		return $this->get_prop( 'date_modified', $context );
349
+     * Get date when the discount was last modified.
350
+     *
351
+     * @since 1.0.19
352
+     * @param  string $context View or edit context.
353
+     * @return string
354
+     */
355
+    public function get_date_modified( $context = 'view' ) {
356
+        return $this->get_prop( 'date_modified', $context );
357 357
     }
358 358
 
359 359
     /**
360
-	 * Get GMT date when the discount was last modified.
361
-	 *
362
-	 * @since 1.0.19
363
-	 * @param  string $context View or edit context.
364
-	 * @return string
365
-	 */
366
-	public function get_date_modified_gmt( $context = 'view' ) {
360
+     * Get GMT date when the discount was last modified.
361
+     *
362
+     * @since 1.0.19
363
+     * @param  string $context View or edit context.
364
+     * @return string
365
+     */
366
+    public function get_date_modified_gmt( $context = 'view' ) {
367 367
         $date = $this->get_date_modified( $context );
368 368
 
369 369
         if ( $date ) {
370 370
             $date = get_gmt_from_date( $date );
371 371
         }
372
-		return $date;
373
-    }
374
-
375
-    /**
376
-	 * Get the discount name.
377
-	 *
378
-	 * @since 1.0.19
379
-	 * @param  string $context View or edit context.
380
-	 * @return string
381
-	 */
382
-	public function get_name( $context = 'view' ) {
383
-		return $this->get_prop( 'name', $context );
384
-    }
385
-
386
-    /**
387
-	 * Alias of self::get_name().
388
-	 *
389
-	 * @since 1.0.19
390
-	 * @param  string $context View or edit context.
391
-	 * @return string
392
-	 */
393
-	public function get_title( $context = 'view' ) {
394
-		return $this->get_name( $context );
395
-    }
396
-
397
-    /**
398
-	 * Get the discount description.
399
-	 *
400
-	 * @since 1.0.19
401
-	 * @param  string $context View or edit context.
402
-	 * @return string
403
-	 */
404
-	public function get_description( $context = 'view' ) {
405
-		return $this->get_prop( 'description', $context );
406
-    }
407
-
408
-    /**
409
-	 * Alias of self::get_description().
410
-	 *
411
-	 * @since 1.0.19
412
-	 * @param  string $context View or edit context.
413
-	 * @return string
414
-	 */
415
-	public function get_excerpt( $context = 'view' ) {
416
-		return $this->get_description( $context );
417
-    }
418
-
419
-    /**
420
-	 * Alias of self::get_description().
421
-	 *
422
-	 * @since 1.0.19
423
-	 * @param  string $context View or edit context.
424
-	 * @return string
425
-	 */
426
-	public function get_summary( $context = 'view' ) {
427
-		return $this->get_description( $context );
428
-    }
429
-
430
-    /**
431
-	 * Get the owner of the discount.
432
-	 *
433
-	 * @since 1.0.19
434
-	 * @param  string $context View or edit context.
435
-	 * @return string
436
-	 */
437
-	public function get_author( $context = 'view' ) {
438
-		return (int) $this->get_prop( 'author', $context );
439
-	}
440
-
441
-	/**
442
-	 * Get the discount code.
443
-	 *
444
-	 * @since 1.0.19
445
-	 * @param  string $context View or edit context.
446
-	 * @return string
447
-	 */
448
-	public function get_code( $context = 'view' ) {
449
-		return $this->get_prop( 'code', $context );
450
-	}
451
-
452
-	/**
453
-	 * Alias for self::get_code().
454
-	 *
455
-	 * @since 1.0.19
456
-	 * @param  string $context View or edit context.
457
-	 * @return string
458
-	 */
459
-	public function get_coupon_code( $context = 'view' ) {
460
-		return $this->get_code( $context );
461
-	}
462
-
463
-	/**
464
-	 * Alias for self::get_code().
465
-	 *
466
-	 * @since 1.0.19
467
-	 * @param  string $context View or edit context.
468
-	 * @return string
469
-	 */
470
-	public function get_discount_code( $context = 'view' ) {
471
-		return $this->get_code( $context );
472
-	}
473
-
474
-	/**
475
-	 * Get the discount's amount.
476
-	 *
477
-	 * @since 1.0.19
478
-	 * @param  string $context View or edit context.
479
-	 * @return float
480
-	 */
481
-	public function get_amount( $context = 'view' ) {
482
-		return $context == 'view' ? floatval( $this->get_prop( 'amount', $context ) ) : $this->get_prop( 'amount', $context );
483
-	}
484
-
485
-	/**
486
-	 * Get the discount's formated amount/rate.
487
-	 *
488
-	 * @since 1.0.19
489
-	 * @return string
490
-	 */
491
-	public function get_formatted_amount() {
492
-
493
-		if ( $this->is_type( 'flat' ) ) {
494
-			$rate = wpinv_price( $this->get_amount() );
495
-		} else {
496
-			$rate = $this->get_amount() . '%';
497
-		}
498
-
499
-		return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() );
500
-	}
501
-
502
-	/**
503
-	 * Get the discount's start date.
504
-	 *
505
-	 * @since 1.0.19
506
-	 * @param  string $context View or edit context.
507
-	 * @return string
508
-	 */
509
-	public function get_start( $context = 'view' ) {
510
-		return $this->get_prop( 'start', $context );
511
-	}
512
-
513
-	/**
514
-	 * Alias for self::get_start().
515
-	 *
516
-	 * @since 1.0.19
517
-	 * @param  string $context View or edit context.
518
-	 * @return string
519
-	 */
520
-	public function get_start_date( $context = 'view' ) {
521
-		return $this->get_start( $context );
522
-	}
523
-
524
-	/**
525
-	 * Get the discount's expiration date.
526
-	 *
527
-	 * @since 1.0.19
528
-	 * @param  string $context View or edit context.
529
-	 * @return string
530
-	 */
531
-	public function get_expiration( $context = 'view' ) {
532
-		return $this->get_prop( 'expiration', $context );
533
-	}
534
-
535
-	/**
536
-	 * Alias for self::get_expiration().
537
-	 *
538
-	 * @since 1.0.19
539
-	 * @param  string $context View or edit context.
540
-	 * @return string
541
-	 */
542
-	public function get_expiration_date( $context = 'view' ) {
543
-		return $this->get_expiration( $context );
544
-	}
545
-
546
-	/**
547
-	 * Alias for self::get_expiration().
548
-	 *
549
-	 * @since 1.0.19
550
-	 * @param  string $context View or edit context.
551
-	 * @return string
552
-	 */
553
-	public function get_end_date( $context = 'view' ) {
554
-		return $this->get_expiration( $context );
555
-	}
556
-
557
-	/**
558
-	 * Get the discount's type.
559
-	 *
560
-	 * @since 1.0.19
561
-	 * @param  string $context View or edit context.
562
-	 * @return string
563
-	 */
564
-	public function get_type( $context = 'view' ) {
565
-		return $this->get_prop( 'type', $context );
566
-	}
567
-
568
-	/**
569
-	 * Get the number of times a discount has been used.
570
-	 *
571
-	 * @since 1.0.19
572
-	 * @param  string $context View or edit context.
573
-	 * @return int
574
-	 */
575
-	public function get_uses( $context = 'view' ) {
576
-		return (int) $this->get_prop( 'uses', $context );
577
-	}
578
-
579
-	/**
580
-	 * Get the discount's usage, i.e uses / max uses.
581
-	 *
582
-	 * @since 1.0.19
583
-	 * @return string
584
-	 */
585
-	public function get_usage() {
586
-
587
-		if ( ! $this->has_limit() ) {
588
-			return $this->get_uses() . ' / ' . ' &infin;';
589
-		}
590
-
591
-		return $this->get_uses() . ' / ' . (int) $this->get_max_uses();
592
-
593
-	}
594
-
595
-	/**
596
-	 * Get the maximum number of time a discount can be used.
597
-	 *
598
-	 * @since 1.0.19
599
-	 * @param  string $context View or edit context.
600
-	 * @return int
601
-	 */
602
-	public function get_max_uses( $context = 'view' ) {
603
-		$max_uses = $this->get_prop( 'max_uses', $context );
604
-		return empty( $max_uses ) ? null : $max_uses;
605
-	}
606
-
607
-	/**
608
-	 * Checks if this is a single use discount or not.
609
-	 *
610
-	 * @since 1.0.19
611
-	 * @param  string $context View or edit context.
612
-	 * @return bool
613
-	 */
614
-	public function get_is_single_use( $context = 'view' ) {
615
-		return $this->get_prop( 'is_single_use', $context );
616
-	}
617
-
618
-	/**
619
-	 * Get the items that can be used with this discount.
620
-	 *
621
-	 * @since 1.0.19
622
-	 * @param  string $context View or edit context.
623
-	 * @return array
624
-	 */
625
-	public function get_items( $context = 'view' ) {
626
-		return array_filter( wp_parse_id_list( $this->get_prop( 'items', $context ) ) );
627
-	}
628
-
629
-	/**
630
-	 * Alias for self::get_items().
631
-	 *
632
-	 * @since 1.0.19
633
-	 * @param  string $context View or edit context.
634
-	 * @return array
635
-	 */
636
-	public function get_allowed_items( $context = 'view' ) {
637
-		return $this->get_items( $context );
638
-	}
639
-
640
-	/**
641
-	 * Get the items that are not allowed to use this discount.
642
-	 *
643
-	 * @since 1.0.19
644
-	 * @param  string $context View or edit context.
645
-	 * @return array
646
-	 */
647
-	public function get_excluded_items( $context = 'view' ) {
648
-		return array_filter( wp_parse_id_list( $this->get_prop( 'excluded_items', $context ) ) );
649
-	}
650
-
651
-	/**
652
-	 * Get the items that are required to be in the cart before using this discount.
653
-	 *
654
-	 * @since 1.0.19
655
-	 * @param  string $context View or edit context.
656
-	 * @return array
657
-	 */
658
-	public function get_required_items( $context = 'view' ) {
659
-		return array_filter( wp_parse_id_list( $this->get_prop( 'required_items', $context ) ) );
660
-	}
661
-
662
-	/**
663
-	 * Checks if this is a recurring discount or not.
664
-	 *
665
-	 * @since 1.0.19
666
-	 * @param  string $context View or edit context.
667
-	 * @return int|string|bool
668
-	 */
669
-	public function get_is_recurring( $context = 'view' ) {
670
-		return $this->get_prop( 'is_recurring', $context );
671
-	}
672
-
673
-	/**
674
-	 * Get's the minimum total amount allowed for this discount.
675
-	 *
676
-	 * @since 1.0.19
677
-	 * @param  string $context View or edit context.
678
-	 * @return float
679
-	 */
680
-	public function get_min_total( $context = 'view' ) {
681
-		$minimum = $this->get_prop( 'min_total', $context );
682
-		return empty( $minimum ) ? null : $minimum;
683
-	}
684
-
685
-	/**
686
-	 * Alias for self::get_min_total().
687
-	 *
688
-	 * @since 1.0.19
689
-	 * @param  string $context View or edit context.
690
-	 * @return float
691
-	 */
692
-	public function get_minimum_total( $context = 'view' ) {
693
-		return $this->get_min_total( $context );
694
-	}
695
-
696
-	/**
697
-	 * Get's the maximum total amount allowed for this discount.
698
-	 *
699
-	 * @since 1.0.19
700
-	 * @param  string $context View or edit context.
701
-	 * @return float
702
-	 */
703
-	public function get_max_total( $context = 'view' ) {
704
-		$maximum = $this->get_prop( 'max_total', $context );
705
-		return empty( $maximum ) ? null : $maximum;
706
-	}
707
-
708
-	/**
709
-	 * Alias for self::get_max_total().
710
-	 *
711
-	 * @since 1.0.19
712
-	 * @param  string $context View or edit context.
713
-	 * @return float
714
-	 */
715
-	public function get_maximum_total( $context = 'view' ) {
716
-		return $this->get_max_total( $context );
717
-	}
718
-
719
-	/**
720
-	 * Magic method for accessing discount properties.
721
-	 *
722
-	 * @since 1.0.15
723
-	 * @access public
724
-	 *
725
-	 * @param string $key Discount data to retrieve
726
-	 * @param  string $context View or edit context.
727
-	 * @return mixed Value of the given discount property (if set).
728
-	 */
729
-	public function get( $key, $context = 'view' ) {
372
+        return $date;
373
+    }
374
+
375
+    /**
376
+     * Get the discount name.
377
+     *
378
+     * @since 1.0.19
379
+     * @param  string $context View or edit context.
380
+     * @return string
381
+     */
382
+    public function get_name( $context = 'view' ) {
383
+        return $this->get_prop( 'name', $context );
384
+    }
385
+
386
+    /**
387
+     * Alias of self::get_name().
388
+     *
389
+     * @since 1.0.19
390
+     * @param  string $context View or edit context.
391
+     * @return string
392
+     */
393
+    public function get_title( $context = 'view' ) {
394
+        return $this->get_name( $context );
395
+    }
396
+
397
+    /**
398
+     * Get the discount description.
399
+     *
400
+     * @since 1.0.19
401
+     * @param  string $context View or edit context.
402
+     * @return string
403
+     */
404
+    public function get_description( $context = 'view' ) {
405
+        return $this->get_prop( 'description', $context );
406
+    }
407
+
408
+    /**
409
+     * Alias of self::get_description().
410
+     *
411
+     * @since 1.0.19
412
+     * @param  string $context View or edit context.
413
+     * @return string
414
+     */
415
+    public function get_excerpt( $context = 'view' ) {
416
+        return $this->get_description( $context );
417
+    }
418
+
419
+    /**
420
+     * Alias of self::get_description().
421
+     *
422
+     * @since 1.0.19
423
+     * @param  string $context View or edit context.
424
+     * @return string
425
+     */
426
+    public function get_summary( $context = 'view' ) {
427
+        return $this->get_description( $context );
428
+    }
429
+
430
+    /**
431
+     * Get the owner of the discount.
432
+     *
433
+     * @since 1.0.19
434
+     * @param  string $context View or edit context.
435
+     * @return string
436
+     */
437
+    public function get_author( $context = 'view' ) {
438
+        return (int) $this->get_prop( 'author', $context );
439
+    }
440
+
441
+    /**
442
+     * Get the discount code.
443
+     *
444
+     * @since 1.0.19
445
+     * @param  string $context View or edit context.
446
+     * @return string
447
+     */
448
+    public function get_code( $context = 'view' ) {
449
+        return $this->get_prop( 'code', $context );
450
+    }
451
+
452
+    /**
453
+     * Alias for self::get_code().
454
+     *
455
+     * @since 1.0.19
456
+     * @param  string $context View or edit context.
457
+     * @return string
458
+     */
459
+    public function get_coupon_code( $context = 'view' ) {
460
+        return $this->get_code( $context );
461
+    }
462
+
463
+    /**
464
+     * Alias for self::get_code().
465
+     *
466
+     * @since 1.0.19
467
+     * @param  string $context View or edit context.
468
+     * @return string
469
+     */
470
+    public function get_discount_code( $context = 'view' ) {
471
+        return $this->get_code( $context );
472
+    }
473
+
474
+    /**
475
+     * Get the discount's amount.
476
+     *
477
+     * @since 1.0.19
478
+     * @param  string $context View or edit context.
479
+     * @return float
480
+     */
481
+    public function get_amount( $context = 'view' ) {
482
+        return $context == 'view' ? floatval( $this->get_prop( 'amount', $context ) ) : $this->get_prop( 'amount', $context );
483
+    }
484
+
485
+    /**
486
+     * Get the discount's formated amount/rate.
487
+     *
488
+     * @since 1.0.19
489
+     * @return string
490
+     */
491
+    public function get_formatted_amount() {
492
+
493
+        if ( $this->is_type( 'flat' ) ) {
494
+            $rate = wpinv_price( $this->get_amount() );
495
+        } else {
496
+            $rate = $this->get_amount() . '%';
497
+        }
498
+
499
+        return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() );
500
+    }
501
+
502
+    /**
503
+     * Get the discount's start date.
504
+     *
505
+     * @since 1.0.19
506
+     * @param  string $context View or edit context.
507
+     * @return string
508
+     */
509
+    public function get_start( $context = 'view' ) {
510
+        return $this->get_prop( 'start', $context );
511
+    }
512
+
513
+    /**
514
+     * Alias for self::get_start().
515
+     *
516
+     * @since 1.0.19
517
+     * @param  string $context View or edit context.
518
+     * @return string
519
+     */
520
+    public function get_start_date( $context = 'view' ) {
521
+        return $this->get_start( $context );
522
+    }
523
+
524
+    /**
525
+     * Get the discount's expiration date.
526
+     *
527
+     * @since 1.0.19
528
+     * @param  string $context View or edit context.
529
+     * @return string
530
+     */
531
+    public function get_expiration( $context = 'view' ) {
532
+        return $this->get_prop( 'expiration', $context );
533
+    }
534
+
535
+    /**
536
+     * Alias for self::get_expiration().
537
+     *
538
+     * @since 1.0.19
539
+     * @param  string $context View or edit context.
540
+     * @return string
541
+     */
542
+    public function get_expiration_date( $context = 'view' ) {
543
+        return $this->get_expiration( $context );
544
+    }
545
+
546
+    /**
547
+     * Alias for self::get_expiration().
548
+     *
549
+     * @since 1.0.19
550
+     * @param  string $context View or edit context.
551
+     * @return string
552
+     */
553
+    public function get_end_date( $context = 'view' ) {
554
+        return $this->get_expiration( $context );
555
+    }
556
+
557
+    /**
558
+     * Get the discount's type.
559
+     *
560
+     * @since 1.0.19
561
+     * @param  string $context View or edit context.
562
+     * @return string
563
+     */
564
+    public function get_type( $context = 'view' ) {
565
+        return $this->get_prop( 'type', $context );
566
+    }
567
+
568
+    /**
569
+     * Get the number of times a discount has been used.
570
+     *
571
+     * @since 1.0.19
572
+     * @param  string $context View or edit context.
573
+     * @return int
574
+     */
575
+    public function get_uses( $context = 'view' ) {
576
+        return (int) $this->get_prop( 'uses', $context );
577
+    }
578
+
579
+    /**
580
+     * Get the discount's usage, i.e uses / max uses.
581
+     *
582
+     * @since 1.0.19
583
+     * @return string
584
+     */
585
+    public function get_usage() {
586
+
587
+        if ( ! $this->has_limit() ) {
588
+            return $this->get_uses() . ' / ' . ' &infin;';
589
+        }
590
+
591
+        return $this->get_uses() . ' / ' . (int) $this->get_max_uses();
592
+
593
+    }
594
+
595
+    /**
596
+     * Get the maximum number of time a discount can be used.
597
+     *
598
+     * @since 1.0.19
599
+     * @param  string $context View or edit context.
600
+     * @return int
601
+     */
602
+    public function get_max_uses( $context = 'view' ) {
603
+        $max_uses = $this->get_prop( 'max_uses', $context );
604
+        return empty( $max_uses ) ? null : $max_uses;
605
+    }
606
+
607
+    /**
608
+     * Checks if this is a single use discount or not.
609
+     *
610
+     * @since 1.0.19
611
+     * @param  string $context View or edit context.
612
+     * @return bool
613
+     */
614
+    public function get_is_single_use( $context = 'view' ) {
615
+        return $this->get_prop( 'is_single_use', $context );
616
+    }
617
+
618
+    /**
619
+     * Get the items that can be used with this discount.
620
+     *
621
+     * @since 1.0.19
622
+     * @param  string $context View or edit context.
623
+     * @return array
624
+     */
625
+    public function get_items( $context = 'view' ) {
626
+        return array_filter( wp_parse_id_list( $this->get_prop( 'items', $context ) ) );
627
+    }
628
+
629
+    /**
630
+     * Alias for self::get_items().
631
+     *
632
+     * @since 1.0.19
633
+     * @param  string $context View or edit context.
634
+     * @return array
635
+     */
636
+    public function get_allowed_items( $context = 'view' ) {
637
+        return $this->get_items( $context );
638
+    }
639
+
640
+    /**
641
+     * Get the items that are not allowed to use this discount.
642
+     *
643
+     * @since 1.0.19
644
+     * @param  string $context View or edit context.
645
+     * @return array
646
+     */
647
+    public function get_excluded_items( $context = 'view' ) {
648
+        return array_filter( wp_parse_id_list( $this->get_prop( 'excluded_items', $context ) ) );
649
+    }
650
+
651
+    /**
652
+     * Get the items that are required to be in the cart before using this discount.
653
+     *
654
+     * @since 1.0.19
655
+     * @param  string $context View or edit context.
656
+     * @return array
657
+     */
658
+    public function get_required_items( $context = 'view' ) {
659
+        return array_filter( wp_parse_id_list( $this->get_prop( 'required_items', $context ) ) );
660
+    }
661
+
662
+    /**
663
+     * Checks if this is a recurring discount or not.
664
+     *
665
+     * @since 1.0.19
666
+     * @param  string $context View or edit context.
667
+     * @return int|string|bool
668
+     */
669
+    public function get_is_recurring( $context = 'view' ) {
670
+        return $this->get_prop( 'is_recurring', $context );
671
+    }
672
+
673
+    /**
674
+     * Get's the minimum total amount allowed for this discount.
675
+     *
676
+     * @since 1.0.19
677
+     * @param  string $context View or edit context.
678
+     * @return float
679
+     */
680
+    public function get_min_total( $context = 'view' ) {
681
+        $minimum = $this->get_prop( 'min_total', $context );
682
+        return empty( $minimum ) ? null : $minimum;
683
+    }
684
+
685
+    /**
686
+     * Alias for self::get_min_total().
687
+     *
688
+     * @since 1.0.19
689
+     * @param  string $context View or edit context.
690
+     * @return float
691
+     */
692
+    public function get_minimum_total( $context = 'view' ) {
693
+        return $this->get_min_total( $context );
694
+    }
695
+
696
+    /**
697
+     * Get's the maximum total amount allowed for this discount.
698
+     *
699
+     * @since 1.0.19
700
+     * @param  string $context View or edit context.
701
+     * @return float
702
+     */
703
+    public function get_max_total( $context = 'view' ) {
704
+        $maximum = $this->get_prop( 'max_total', $context );
705
+        return empty( $maximum ) ? null : $maximum;
706
+    }
707
+
708
+    /**
709
+     * Alias for self::get_max_total().
710
+     *
711
+     * @since 1.0.19
712
+     * @param  string $context View or edit context.
713
+     * @return float
714
+     */
715
+    public function get_maximum_total( $context = 'view' ) {
716
+        return $this->get_max_total( $context );
717
+    }
718
+
719
+    /**
720
+     * Magic method for accessing discount properties.
721
+     *
722
+     * @since 1.0.15
723
+     * @access public
724
+     *
725
+     * @param string $key Discount data to retrieve
726
+     * @param  string $context View or edit context.
727
+     * @return mixed Value of the given discount property (if set).
728
+     */
729
+    public function get( $key, $context = 'view' ) {
730 730
         return $this->get_prop( $key, $context );
731
-	}
731
+    }
732 732
 
733
-	/*
733
+    /*
734 734
 	|--------------------------------------------------------------------------
735 735
 	| Setters
736 736
 	|--------------------------------------------------------------------------
@@ -740,41 +740,41 @@  discard block
 block discarded – undo
740 740
 	| object.
741 741
 	*/
742 742
 
743
-	/**
744
-	 * Sets discount status.
745
-	 *
746
-	 * @since 1.0.19
747
-	 * @param  string $status New status.
748
-	 * @return array details of change.
749
-	 */
750
-	public function set_status( $status ) {
743
+    /**
744
+     * Sets discount status.
745
+     *
746
+     * @since 1.0.19
747
+     * @param  string $status New status.
748
+     * @return array details of change.
749
+     */
750
+    public function set_status( $status ) {
751 751
         $old_status = $this->get_status();
752 752
 
753 753
         $this->set_prop( 'status', $status );
754 754
 
755
-		return array(
756
-			'from' => $old_status,
757
-			'to'   => $status,
758
-		);
755
+        return array(
756
+            'from' => $old_status,
757
+            'to'   => $status,
758
+        );
759 759
     }
760 760
 
761 761
     /**
762
-	 * Set plugin version when the discount was created.
763
-	 *
764
-	 * @since 1.0.19
765
-	 */
766
-	public function set_version( $value ) {
767
-		$this->set_prop( 'version', $value );
762
+     * Set plugin version when the discount was created.
763
+     *
764
+     * @since 1.0.19
765
+     */
766
+    public function set_version( $value ) {
767
+        $this->set_prop( 'version', $value );
768 768
     }
769 769
 
770 770
     /**
771
-	 * Set date when the discount was created.
772
-	 *
773
-	 * @since 1.0.19
774
-	 * @param string $value Value to set.
771
+     * Set date when the discount was created.
772
+     *
773
+     * @since 1.0.19
774
+     * @param string $value Value to set.
775 775
      * @return bool Whether or not the date was set.
776
-	 */
777
-	public function set_date_created( $value ) {
776
+     */
777
+    public function set_date_created( $value ) {
778 778
         $date = strtotime( $value );
779 779
 
780 780
         if ( $date ) {
@@ -787,13 +787,13 @@  discard block
 block discarded – undo
787 787
     }
788 788
 
789 789
     /**
790
-	 * Set date when the discount was last modified.
791
-	 *
792
-	 * @since 1.0.19
793
-	 * @param string $value Value to set.
790
+     * Set date when the discount was last modified.
791
+     *
792
+     * @since 1.0.19
793
+     * @param string $value Value to set.
794 794
      * @return bool Whether or not the date was set.
795
-	 */
796
-	public function set_date_modified( $value ) {
795
+     */
796
+    public function set_date_modified( $value ) {
797 797
         $date = strtotime( $value );
798 798
 
799 799
         if ( $date ) {
@@ -806,334 +806,334 @@  discard block
 block discarded – undo
806 806
     }
807 807
 
808 808
     /**
809
-	 * Set the discount name.
810
-	 *
811
-	 * @since 1.0.19
812
-	 * @param  string $value New name.
813
-	 */
814
-	public function set_name( $value ) {
809
+     * Set the discount name.
810
+     *
811
+     * @since 1.0.19
812
+     * @param  string $value New name.
813
+     */
814
+    public function set_name( $value ) {
815 815
         $name = sanitize_text_field( $value );
816
-		$this->set_prop( 'name', $name );
816
+        $this->set_prop( 'name', $name );
817 817
     }
818 818
 
819 819
     /**
820
-	 * Alias of self::set_name().
821
-	 *
822
-	 * @since 1.0.19
823
-	 * @param  string $value New name.
824
-	 */
825
-	public function set_title( $value ) {
826
-		$this->set_name( $value );
820
+     * Alias of self::set_name().
821
+     *
822
+     * @since 1.0.19
823
+     * @param  string $value New name.
824
+     */
825
+    public function set_title( $value ) {
826
+        $this->set_name( $value );
827 827
     }
828 828
 
829 829
     /**
830
-	 * Set the discount description.
831
-	 *
832
-	 * @since 1.0.19
833
-	 * @param  string $value New description.
834
-	 */
835
-	public function set_description( $value ) {
830
+     * Set the discount description.
831
+     *
832
+     * @since 1.0.19
833
+     * @param  string $value New description.
834
+     */
835
+    public function set_description( $value ) {
836 836
         $description = wp_kses_post( $value );
837
-		return $this->set_prop( 'description', $description );
838
-    }
839
-
840
-    /**
841
-	 * Alias of self::set_description().
842
-	 *
843
-	 * @since 1.0.19
844
-	 * @param  string $value New description.
845
-	 */
846
-	public function set_excerpt( $value ) {
847
-		$this->set_description( $value );
848
-    }
849
-
850
-    /**
851
-	 * Alias of self::set_description().
852
-	 *
853
-	 * @since 1.0.19
854
-	 * @param  string $value New description.
855
-	 */
856
-	public function set_summary( $value ) {
857
-		$this->set_description( $value );
858
-    }
859
-
860
-    /**
861
-	 * Set the owner of the discount.
862
-	 *
863
-	 * @since 1.0.19
864
-	 * @param  int $value New author.
865
-	 */
866
-	public function set_author( $value ) {
867
-		$this->set_prop( 'author', (int) $value );
868
-	}
869
-
870
-	/**
871
-	 * Sets the discount code.
872
-	 *
873
-	 * @since 1.0.19
874
-	 * @param string $value New discount code.
875
-	 */
876
-	public function set_code( $value ) {
877
-		$code = sanitize_text_field( $value );
878
-		$this->set_prop( 'code', $code );
879
-	}
880
-
881
-	/**
882
-	 * Alias of self::set_code().
883
-	 *
884
-	 * @since 1.0.19
885
-	 * @param string $value New discount code.
886
-	 */
887
-	public function set_coupon_code( $value ) {
888
-		$this->set_code( $value );
889
-	}
890
-
891
-	/**
892
-	 * Alias of self::set_code().
893
-	 *
894
-	 * @since 1.0.19
895
-	 * @param string $value New discount code.
896
-	 */
897
-	public function set_discount_code( $value ) {
898
-		$this->set_code( $value );
899
-	}
900
-
901
-	/**
902
-	 * Sets the discount amount.
903
-	 *
904
-	 * @since 1.0.19
905
-	 * @param float $value New discount code.
906
-	 */
907
-	public function set_amount( $value ) {
908
-		$amount = floatval( wpinv_sanitize_amount( $value ) );
909
-		$this->set_prop( 'amount', $amount );
910
-	}
911
-
912
-	/**
913
-	 * Sets the discount's start date.
914
-	 *
915
-	 * @since 1.0.19
916
-	 * @param float $value New start date.
917
-	 */
918
-	public function set_start( $value ) {
919
-		$date = strtotime( $value );
837
+        return $this->set_prop( 'description', $description );
838
+    }
839
+
840
+    /**
841
+     * Alias of self::set_description().
842
+     *
843
+     * @since 1.0.19
844
+     * @param  string $value New description.
845
+     */
846
+    public function set_excerpt( $value ) {
847
+        $this->set_description( $value );
848
+    }
849
+
850
+    /**
851
+     * Alias of self::set_description().
852
+     *
853
+     * @since 1.0.19
854
+     * @param  string $value New description.
855
+     */
856
+    public function set_summary( $value ) {
857
+        $this->set_description( $value );
858
+    }
859
+
860
+    /**
861
+     * Set the owner of the discount.
862
+     *
863
+     * @since 1.0.19
864
+     * @param  int $value New author.
865
+     */
866
+    public function set_author( $value ) {
867
+        $this->set_prop( 'author', (int) $value );
868
+    }
869
+
870
+    /**
871
+     * Sets the discount code.
872
+     *
873
+     * @since 1.0.19
874
+     * @param string $value New discount code.
875
+     */
876
+    public function set_code( $value ) {
877
+        $code = sanitize_text_field( $value );
878
+        $this->set_prop( 'code', $code );
879
+    }
880
+
881
+    /**
882
+     * Alias of self::set_code().
883
+     *
884
+     * @since 1.0.19
885
+     * @param string $value New discount code.
886
+     */
887
+    public function set_coupon_code( $value ) {
888
+        $this->set_code( $value );
889
+    }
890
+
891
+    /**
892
+     * Alias of self::set_code().
893
+     *
894
+     * @since 1.0.19
895
+     * @param string $value New discount code.
896
+     */
897
+    public function set_discount_code( $value ) {
898
+        $this->set_code( $value );
899
+    }
900
+
901
+    /**
902
+     * Sets the discount amount.
903
+     *
904
+     * @since 1.0.19
905
+     * @param float $value New discount code.
906
+     */
907
+    public function set_amount( $value ) {
908
+        $amount = floatval( wpinv_sanitize_amount( $value ) );
909
+        $this->set_prop( 'amount', $amount );
910
+    }
911
+
912
+    /**
913
+     * Sets the discount's start date.
914
+     *
915
+     * @since 1.0.19
916
+     * @param float $value New start date.
917
+     */
918
+    public function set_start( $value ) {
919
+        $date = strtotime( $value );
920 920
 
921 921
         if ( $date ) {
922 922
             $this->set_prop( 'start', date( 'Y-m-d H:i', $date ) );
923 923
             return true;
924
-		}
924
+        }
925 925
 
926
-		$this->set_prop( 'start', '' );
926
+        $this->set_prop( 'start', '' );
927 927
 
928 928
         return false;
929
-	}
930
-
931
-	/**
932
-	 * Alias of self::set_start().
933
-	 *
934
-	 * @since 1.0.19
935
-	 * @param string $value New start date.
936
-	 */
937
-	public function set_start_date( $value ) {
938
-		$this->set_start( $value );
939
-	}
940
-
941
-	/**
942
-	 * Sets the discount's expiration date.
943
-	 *
944
-	 * @since 1.0.19
945
-	 * @param float $value New expiration date.
946
-	 */
947
-	public function set_expiration( $value ) {
948
-		$date = strtotime( $value );
929
+    }
930
+
931
+    /**
932
+     * Alias of self::set_start().
933
+     *
934
+     * @since 1.0.19
935
+     * @param string $value New start date.
936
+     */
937
+    public function set_start_date( $value ) {
938
+        $this->set_start( $value );
939
+    }
940
+
941
+    /**
942
+     * Sets the discount's expiration date.
943
+     *
944
+     * @since 1.0.19
945
+     * @param float $value New expiration date.
946
+     */
947
+    public function set_expiration( $value ) {
948
+        $date = strtotime( $value );
949 949
 
950 950
         if ( $date ) {
951 951
             $this->set_prop( 'expiration', date( 'Y-m-d H:i', $date ) );
952 952
             return true;
953 953
         }
954 954
 
955
-		$this->set_prop( 'expiration', '' );
955
+        $this->set_prop( 'expiration', '' );
956 956
         return false;
957
-	}
958
-
959
-	/**
960
-	 * Alias of self::set_expiration().
961
-	 *
962
-	 * @since 1.0.19
963
-	 * @param string $value New expiration date.
964
-	 */
965
-	public function set_expiration_date( $value ) {
966
-		$this->set_expiration( $value );
967
-	}
968
-
969
-	/**
970
-	 * Alias of self::set_expiration().
971
-	 *
972
-	 * @since 1.0.19
973
-	 * @param string $value New expiration date.
974
-	 */
975
-	public function set_end_date( $value ) {
976
-		$this->set_expiration( $value );
977
-	}
978
-
979
-	/**
980
-	 * Sets the discount type.
981
-	 *
982
-	 * @since 1.0.19
983
-	 * @param string $value New discount type.
984
-	 */
985
-	public function set_type( $value ) {
986
-		if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) {
987
-			$this->set_prop( 'type', sanitize_text_field( $value ) );
988
-		}
989
-	}
990
-
991
-	/**
992
-	 * Sets the number of times a discount has been used.
993
-	 *
994
-	 * @since 1.0.19
995
-	 * @param int $value usage count.
996
-	 */
997
-	public function set_uses( $value ) {
998
-
999
-		$value = (int) $value;
1000
-
1001
-		if ( $value < 0 ) {
1002
-			$value = 0;
1003
-		}
1004
-
1005
-		$this->set_prop( 'uses', (int) $value );
1006
-	}
1007
-
1008
-	/**
1009
-	 * Sets the maximum number of times a discount can be used.
1010
-	 *
1011
-	 * @since 1.0.19
1012
-	 * @param int $value maximum usage count.
1013
-	 */
1014
-	public function set_max_uses( $value ) {
1015
-		$this->set_prop( 'max_uses', absint( $value ) );
1016
-	}
1017
-
1018
-	/**
1019
-	 * Sets if this is a single use discount or not.
1020
-	 *
1021
-	 * @since 1.0.19
1022
-	 * @param int|bool $value is single use.
1023
-	 */
1024
-	public function set_is_single_use( $value ) {
1025
-		$this->set_prop( 'is_single_use', (bool) $value );
1026
-	}
1027
-
1028
-	/**
1029
-	 * Sets the items that can be used with this discount.
1030
-	 *
1031
-	 * @since 1.0.19
1032
-	 * @param array $value items.
1033
-	 */
1034
-	public function set_items( $value ) {
1035
-		$this->set_prop( 'items', array_filter( wp_parse_id_list( $value ) ) );
1036
-	}
1037
-
1038
-	/**
1039
-	 * Alias for self::set_items().
1040
-	 *
1041
-	 * @since 1.0.19
1042
-	 * @param array $value items.
1043
-	 */
1044
-	public function set_allowed_items( $value ) {
1045
-		$this->set_items( $value );
1046
-	}
1047
-
1048
-	/**
1049
-	 * Sets the items that can not be used with this discount.
1050
-	 *
1051
-	 * @since 1.0.19
1052
-	 * @param array $value items.
1053
-	 */
1054
-	public function set_excluded_items( $value ) {
1055
-		$this->set_prop( 'excluded_items', array_filter( wp_parse_id_list( $value ) ) );
1056
-	}
1057
-
1058
-	/**
1059
-	 * Sets the items that are required to be in the cart before using this discount.
1060
-	 *
1061
-	 * @since 1.0.19
1062
-	 * @param array $value items.
1063
-	 */
1064
-	public function set_required_items( $value ) {
1065
-		$this->set_prop( 'required_items', array_filter( wp_parse_id_list( $value ) ) );
1066
-	}
1067
-
1068
-	/**
1069
-	 * Sets if this is a recurring discounts or not.
1070
-	 *
1071
-	 * @since 1.0.19
1072
-	 * @param int|bool $value is recurring.
1073
-	 */
1074
-	public function set_is_recurring( $value ) {
1075
-		$this->set_prop( 'is_recurring', (bool) $value );
1076
-	}
1077
-
1078
-	/**
1079
-	 * Sets the minimum total that can not be used with this discount.
1080
-	 *
1081
-	 * @since 1.0.19
1082
-	 * @param float $value minimum total.
1083
-	 */
1084
-	public function set_min_total( $value ) {
1085
-		$this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) );
1086
-	}
1087
-
1088
-	/**
1089
-	 * Alias for self::set_min_total().
1090
-	 *
1091
-	 * @since 1.0.19
1092
-	 * @param float $value minimum total.
1093
-	 */
1094
-	public function set_minimum_total( $value ) {
1095
-		$this->set_min_total( $value );
1096
-	}
1097
-
1098
-	/**
1099
-	 * Sets the maximum total that can not be used with this discount.
1100
-	 *
1101
-	 * @since 1.0.19
1102
-	 * @param float $value maximum total.
1103
-	 */
1104
-	public function set_max_total( $value ) {
1105
-		$this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) );
1106
-	}
1107
-
1108
-	/**
1109
-	 * Alias for self::set_max_total().
1110
-	 *
1111
-	 * @since 1.0.19
1112
-	 * @param float $value maximum total.
1113
-	 */
1114
-	public function set_maximum_total( $value ) {
1115
-		$this->set_max_total( $value );
1116
-	}
1117
-
1118
-	/**
1119
-	 * @deprecated
1120
-	 */
1121
-	public function refresh(){}
1122
-
1123
-	/**
1124
-	 * @deprecated
1125
-	 *
1126
-	 */
1127
-	public function update_status( $status = 'publish' ){
1128
-
1129
-		if ( $this->exists() && $this->get_status() != $status ) {
1130
-			$this->set_status( $status );
1131
-			$this->save();
1132
-		}
1133
-
1134
-	}
1135
-
1136
-	/*
957
+    }
958
+
959
+    /**
960
+     * Alias of self::set_expiration().
961
+     *
962
+     * @since 1.0.19
963
+     * @param string $value New expiration date.
964
+     */
965
+    public function set_expiration_date( $value ) {
966
+        $this->set_expiration( $value );
967
+    }
968
+
969
+    /**
970
+     * Alias of self::set_expiration().
971
+     *
972
+     * @since 1.0.19
973
+     * @param string $value New expiration date.
974
+     */
975
+    public function set_end_date( $value ) {
976
+        $this->set_expiration( $value );
977
+    }
978
+
979
+    /**
980
+     * Sets the discount type.
981
+     *
982
+     * @since 1.0.19
983
+     * @param string $value New discount type.
984
+     */
985
+    public function set_type( $value ) {
986
+        if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) {
987
+            $this->set_prop( 'type', sanitize_text_field( $value ) );
988
+        }
989
+    }
990
+
991
+    /**
992
+     * Sets the number of times a discount has been used.
993
+     *
994
+     * @since 1.0.19
995
+     * @param int $value usage count.
996
+     */
997
+    public function set_uses( $value ) {
998
+
999
+        $value = (int) $value;
1000
+
1001
+        if ( $value < 0 ) {
1002
+            $value = 0;
1003
+        }
1004
+
1005
+        $this->set_prop( 'uses', (int) $value );
1006
+    }
1007
+
1008
+    /**
1009
+     * Sets the maximum number of times a discount can be used.
1010
+     *
1011
+     * @since 1.0.19
1012
+     * @param int $value maximum usage count.
1013
+     */
1014
+    public function set_max_uses( $value ) {
1015
+        $this->set_prop( 'max_uses', absint( $value ) );
1016
+    }
1017
+
1018
+    /**
1019
+     * Sets if this is a single use discount or not.
1020
+     *
1021
+     * @since 1.0.19
1022
+     * @param int|bool $value is single use.
1023
+     */
1024
+    public function set_is_single_use( $value ) {
1025
+        $this->set_prop( 'is_single_use', (bool) $value );
1026
+    }
1027
+
1028
+    /**
1029
+     * Sets the items that can be used with this discount.
1030
+     *
1031
+     * @since 1.0.19
1032
+     * @param array $value items.
1033
+     */
1034
+    public function set_items( $value ) {
1035
+        $this->set_prop( 'items', array_filter( wp_parse_id_list( $value ) ) );
1036
+    }
1037
+
1038
+    /**
1039
+     * Alias for self::set_items().
1040
+     *
1041
+     * @since 1.0.19
1042
+     * @param array $value items.
1043
+     */
1044
+    public function set_allowed_items( $value ) {
1045
+        $this->set_items( $value );
1046
+    }
1047
+
1048
+    /**
1049
+     * Sets the items that can not be used with this discount.
1050
+     *
1051
+     * @since 1.0.19
1052
+     * @param array $value items.
1053
+     */
1054
+    public function set_excluded_items( $value ) {
1055
+        $this->set_prop( 'excluded_items', array_filter( wp_parse_id_list( $value ) ) );
1056
+    }
1057
+
1058
+    /**
1059
+     * Sets the items that are required to be in the cart before using this discount.
1060
+     *
1061
+     * @since 1.0.19
1062
+     * @param array $value items.
1063
+     */
1064
+    public function set_required_items( $value ) {
1065
+        $this->set_prop( 'required_items', array_filter( wp_parse_id_list( $value ) ) );
1066
+    }
1067
+
1068
+    /**
1069
+     * Sets if this is a recurring discounts or not.
1070
+     *
1071
+     * @since 1.0.19
1072
+     * @param int|bool $value is recurring.
1073
+     */
1074
+    public function set_is_recurring( $value ) {
1075
+        $this->set_prop( 'is_recurring', (bool) $value );
1076
+    }
1077
+
1078
+    /**
1079
+     * Sets the minimum total that can not be used with this discount.
1080
+     *
1081
+     * @since 1.0.19
1082
+     * @param float $value minimum total.
1083
+     */
1084
+    public function set_min_total( $value ) {
1085
+        $this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) );
1086
+    }
1087
+
1088
+    /**
1089
+     * Alias for self::set_min_total().
1090
+     *
1091
+     * @since 1.0.19
1092
+     * @param float $value minimum total.
1093
+     */
1094
+    public function set_minimum_total( $value ) {
1095
+        $this->set_min_total( $value );
1096
+    }
1097
+
1098
+    /**
1099
+     * Sets the maximum total that can not be used with this discount.
1100
+     *
1101
+     * @since 1.0.19
1102
+     * @param float $value maximum total.
1103
+     */
1104
+    public function set_max_total( $value ) {
1105
+        $this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) );
1106
+    }
1107
+
1108
+    /**
1109
+     * Alias for self::set_max_total().
1110
+     *
1111
+     * @since 1.0.19
1112
+     * @param float $value maximum total.
1113
+     */
1114
+    public function set_maximum_total( $value ) {
1115
+        $this->set_max_total( $value );
1116
+    }
1117
+
1118
+    /**
1119
+     * @deprecated
1120
+     */
1121
+    public function refresh(){}
1122
+
1123
+    /**
1124
+     * @deprecated
1125
+     *
1126
+     */
1127
+    public function update_status( $status = 'publish' ){
1128
+
1129
+        if ( $this->exists() && $this->get_status() != $status ) {
1130
+            $this->set_status( $status );
1131
+            $this->save();
1132
+        }
1133
+
1134
+    }
1135
+
1136
+    /*
1137 1137
 	|--------------------------------------------------------------------------
1138 1138
 	| Conditionals
1139 1139
 	|--------------------------------------------------------------------------
@@ -1142,290 +1142,290 @@  discard block
 block discarded – undo
1142 1142
 	|
1143 1143
 	*/
1144 1144
 
1145
-	/**
1146
-	 * Checks whether a discount exists in the database or not
1147
-	 *
1148
-	 * @since 1.0.15
1149
-	 */
1150
-	public function exists(){
1151
-		$id = $this->get_id();
1152
-		return ! empty( $id );
1153
-	}
1154
-
1155
-	/**
1156
-	 * Checks the discount type.
1157
-	 *
1158
-	 *
1159
-	 * @param  string $type the discount type to check against
1160
-	 * @since 1.0.15
1161
-	 * @return bool
1162
-	 */
1163
-	public function is_type( $type ) {
1164
-		return $this->get_type() == $type;
1165
-	}
1166
-
1167
-	/**
1168
-	 * Checks whether the discount is published or not
1169
-	 *
1170
-	 * @since 1.0.15
1171
-	 * @return bool
1172
-	 */
1173
-	public function is_active() {
1174
-		return $this->get_status() == 'publish';
1175
-	}
1176
-
1177
-	/**
1178
-	 * Checks whether the discount has max uses
1179
-	 *
1180
-	 * @since 1.0.15
1181
-	 * @return bool
1182
-	 */
1183
-	public function has_limit() {
1184
-		$limit = $this->get_max_uses();
1185
-		return ! empty( $limit );
1186
-	}
1187
-
1188
-	/**
1189
-	 * Checks whether the discount has ever been used.
1190
-	 *
1191
-	 * @since 1.0.15
1192
-	 * @return bool
1193
-	 */
1194
-	public function has_uses() {
1195
-		return $this->get_uses() > 0;
1196
-	}
1197
-
1198
-	/**
1199
-	 * Checks whether the discount is has exided the usage limit or not
1200
-	 *
1201
-	 * @since 1.0.15
1202
-	 * @return bool
1203
-	 */
1204
-	public function has_exceeded_limit() {
1205
-
1206
-		if ( ! $this->has_limit() || ! $this->has_uses() ) {
1207
-			$exceeded = false ;
1208
-		} else {
1209
-			$exceeded = (int) $this->get_max_uses() <= $this->get_uses();
1210
-		}
1211
-
1212
-		return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() );
1213
-	}
1214
-
1215
-	/**
1216
-	 * Checks whether the discount has an expiration date.
1217
-	 *
1218
-	 * @since 1.0.15
1219
-	 * @return bool
1220
-	 */
1221
-	public function has_expiration_date() {
1222
-		$date = $this->get_expiration_date();
1223
-		return ! empty( $date );
1224
-	}
1225
-
1226
-	/**
1227
-	 * Checks if the discount is expired
1228
-	 *
1229
-	 * @since 1.0.15
1230
-	 * @return bool
1231
-	 */
1232
-	public function is_expired() {
1233
-		$expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false;
1234
-		return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() );
1235
-	}
1236
-
1237
-	/**
1238
-	 * Checks whether the discount has a start date.
1239
-	 *
1240
-	 * @since 1.0.15
1241
-	 * @return bool
1242
-	 */
1243
-	public function has_start_date() {
1244
-		$date = $this->get_start_date();
1245
-		return ! empty( $date );
1246
-	}
1247
-
1248
-	/**
1249
-	 * Checks the discount start date.
1250
-	 *
1251
-	 * @since 1.0.15
1252
-	 * @return bool
1253
-	 */
1254
-	public function has_started() {
1255
-		$started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() );
1256
-		return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() );
1257
-	}
1258
-
1259
-	/**
1260
-	 * Checks the discount has allowed items or not.
1261
-	 *
1262
-	 * @since 1.0.15
1263
-	 * @return bool
1264
-	 */
1265
-	public function has_allowed_items() {
1266
-		$allowed_items = $this->get_allowed_items();
1267
-		return ! empty( $allowed_items );
1268
-	}
1269
-
1270
-	/**
1271
-	 * Checks the discount has excluded items or not.
1272
-	 *
1273
-	 * @since 1.0.15
1274
-	 * @return bool
1275
-	 */
1276
-	public function has_excluded_items() {
1277
-		$excluded_items = $this->get_excluded_items();
1278
-		return ! empty( $excluded_items );
1279
-	}
1280
-
1281
-	/**
1282
-	 * Check if a discount is valid for a given item id.
1283
-	 *
1284
-	 * @param  int|int[]  $item_ids
1285
-	 * @since 1.0.15
1286
-	 * @return boolean
1287
-	 */
1288
-	public function is_valid_for_items( $item_ids ) {
1289
-
1290
-		$item_ids = array_filter( wp_parse_id_list( $item_ids ) );
1291
-		$included = array_intersect( $item_ids, $this->get_allowed_items() );
1292
-		$excluded = array_intersect( $item_ids, $this->get_excluded_items() );
1293
-
1294
-		if ( $this->has_excluded_items() && ! empty( $excluded ) ) {
1295
-			return false;
1296
-		}
1297
-
1298
-		if ( $this->has_allowed_items() && empty( $included ) ) {
1299
-			return false;
1300
-		}
1301
-
1302
-		return true;
1303
-	}
1304
-
1305
-	/**
1306
-	 * Checks the discount has required items or not.
1307
-	 *
1308
-	 * @since 1.0.15
1309
-	 * @return bool
1310
-	 */
1311
-	public function has_required_items() {
1312
-		$required_items = $this->get_required_items();
1313
-		return ! empty( $required_items );
1314
-	}
1315
-
1316
-	/**
1317
-	 * Checks if the required items are met
1318
-	 *
1319
-	 * @param  int|int[]  $item_ids
1320
-	 * @since 1.0.15
1321
-	 * @return boolean
1322
-	 */
1323
-	public function is_required_items_met( $item_ids ) {
1324
-
1325
-		if ( ! $this->has_required_items() ) {
1326
-			return true;
1327
-		}
1328
-
1329
-		return ! array_diff( $this->get_required_items(), array_filter( wp_parse_id_list( $item_ids ) ) );
1330
-	}
1331
-
1332
-	/**
1333
-	 * Check if a discount is valid for the given amount
1334
-	 *
1335
-	 * @param  float  $amount The amount to check against
1336
-	 * @since 1.0.15
1337
-	 * @return boolean
1338
-	 */
1339
-	public function is_valid_for_amount( $amount ) {
1340
-		return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount );
1341
-	}
1342
-
1343
-	/**
1344
-	 * Checks if the minimum amount is set
1345
-	 *
1346
-	 * @since 1.0.15
1347
-	 * @return boolean
1348
-	 */
1349
-	public function has_minimum_amount() {
1350
-		$minimum = $this->get_minimum_total();
1351
-		return ! empty( $minimum );
1352
-	}
1353
-
1354
-	/**
1355
-	 * Checks if the minimum amount is met
1356
-	 *
1357
-	 * @param  float  $amount The amount to check against
1358
-	 * @since 1.0.15
1359
-	 * @return boolean
1360
-	 */
1361
-	public function is_minimum_amount_met( $amount ) {
1362
-		$amount = floatval( wpinv_sanitize_amount( $amount ) );
1363
-		$min_met= ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) );
1364
-		return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount );
1365
-	}
1366
-
1367
-	/**
1368
-	 * Checks if the maximum amount is set
1369
-	 *
1370
-	 * @since 1.0.15
1371
-	 * @return boolean
1372
-	 */
1373
-	public function has_maximum_amount() {
1374
-		$maximum = $this->get_maximum_total();
1375
-		return ! empty( $maximum );
1376
-	}
1377
-
1378
-	/**
1379
-	 * Checks if the maximum amount is met
1380
-	 *
1381
-	 * @param  float  $amount The amount to check against
1382
-	 * @since 1.0.15
1383
-	 * @return boolean
1384
-	 */
1385
-	public function is_maximum_amount_met( $amount ) {
1386
-		$amount = floatval( wpinv_sanitize_amount( $amount ) );
1387
-		$max_met= ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) );
1388
-		return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount );
1389
-	}
1390
-
1391
-	/**
1392
-	 * Checks if the discount is recurring.
1393
-	 *
1394
-	 * @since 1.0.15
1395
-	 * @return boolean
1396
-	 */
1397
-	public function is_recurring() {
1398
-		$recurring = $this->get_is_recurring();
1399
-		return ! empty( $recurring );
1400
-	}
1401
-
1402
-	/**
1403
-	 * Checks if the discount is single use.
1404
-	 *
1405
-	 * @since 1.0.15
1406
-	 * @return boolean
1407
-	 */
1408
-	public function is_single_use() {
1409
-		$usage = $this->get_is_single_use();
1410
-		return ! empty( $usage );
1411
-	}
1412
-
1413
-	/**
1414
-	 * Check if a discount is valid for the given user
1415
-	 *
1416
-	 * @param  int|string  $user
1417
-	 * @since 1.0.15
1418
-	 * @return boolean
1419
-	 */
1420
-	public function is_valid_for_user( $user ) {
1421
-
1422
-		// Ensure that the discount is single use.
1423
-		if ( empty( $user ) || ! $this->is_single_use() ) {
1424
-			return true;
1425
-		}
1426
-
1427
-		// Prepare the user id.
1428
-		$user_id = 0;
1145
+    /**
1146
+     * Checks whether a discount exists in the database or not
1147
+     *
1148
+     * @since 1.0.15
1149
+     */
1150
+    public function exists(){
1151
+        $id = $this->get_id();
1152
+        return ! empty( $id );
1153
+    }
1154
+
1155
+    /**
1156
+     * Checks the discount type.
1157
+     *
1158
+     *
1159
+     * @param  string $type the discount type to check against
1160
+     * @since 1.0.15
1161
+     * @return bool
1162
+     */
1163
+    public function is_type( $type ) {
1164
+        return $this->get_type() == $type;
1165
+    }
1166
+
1167
+    /**
1168
+     * Checks whether the discount is published or not
1169
+     *
1170
+     * @since 1.0.15
1171
+     * @return bool
1172
+     */
1173
+    public function is_active() {
1174
+        return $this->get_status() == 'publish';
1175
+    }
1176
+
1177
+    /**
1178
+     * Checks whether the discount has max uses
1179
+     *
1180
+     * @since 1.0.15
1181
+     * @return bool
1182
+     */
1183
+    public function has_limit() {
1184
+        $limit = $this->get_max_uses();
1185
+        return ! empty( $limit );
1186
+    }
1187
+
1188
+    /**
1189
+     * Checks whether the discount has ever been used.
1190
+     *
1191
+     * @since 1.0.15
1192
+     * @return bool
1193
+     */
1194
+    public function has_uses() {
1195
+        return $this->get_uses() > 0;
1196
+    }
1197
+
1198
+    /**
1199
+     * Checks whether the discount is has exided the usage limit or not
1200
+     *
1201
+     * @since 1.0.15
1202
+     * @return bool
1203
+     */
1204
+    public function has_exceeded_limit() {
1205
+
1206
+        if ( ! $this->has_limit() || ! $this->has_uses() ) {
1207
+            $exceeded = false ;
1208
+        } else {
1209
+            $exceeded = (int) $this->get_max_uses() <= $this->get_uses();
1210
+        }
1211
+
1212
+        return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() );
1213
+    }
1214
+
1215
+    /**
1216
+     * Checks whether the discount has an expiration date.
1217
+     *
1218
+     * @since 1.0.15
1219
+     * @return bool
1220
+     */
1221
+    public function has_expiration_date() {
1222
+        $date = $this->get_expiration_date();
1223
+        return ! empty( $date );
1224
+    }
1225
+
1226
+    /**
1227
+     * Checks if the discount is expired
1228
+     *
1229
+     * @since 1.0.15
1230
+     * @return bool
1231
+     */
1232
+    public function is_expired() {
1233
+        $expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false;
1234
+        return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() );
1235
+    }
1236
+
1237
+    /**
1238
+     * Checks whether the discount has a start date.
1239
+     *
1240
+     * @since 1.0.15
1241
+     * @return bool
1242
+     */
1243
+    public function has_start_date() {
1244
+        $date = $this->get_start_date();
1245
+        return ! empty( $date );
1246
+    }
1247
+
1248
+    /**
1249
+     * Checks the discount start date.
1250
+     *
1251
+     * @since 1.0.15
1252
+     * @return bool
1253
+     */
1254
+    public function has_started() {
1255
+        $started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() );
1256
+        return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() );
1257
+    }
1258
+
1259
+    /**
1260
+     * Checks the discount has allowed items or not.
1261
+     *
1262
+     * @since 1.0.15
1263
+     * @return bool
1264
+     */
1265
+    public function has_allowed_items() {
1266
+        $allowed_items = $this->get_allowed_items();
1267
+        return ! empty( $allowed_items );
1268
+    }
1269
+
1270
+    /**
1271
+     * Checks the discount has excluded items or not.
1272
+     *
1273
+     * @since 1.0.15
1274
+     * @return bool
1275
+     */
1276
+    public function has_excluded_items() {
1277
+        $excluded_items = $this->get_excluded_items();
1278
+        return ! empty( $excluded_items );
1279
+    }
1280
+
1281
+    /**
1282
+     * Check if a discount is valid for a given item id.
1283
+     *
1284
+     * @param  int|int[]  $item_ids
1285
+     * @since 1.0.15
1286
+     * @return boolean
1287
+     */
1288
+    public function is_valid_for_items( $item_ids ) {
1289
+
1290
+        $item_ids = array_filter( wp_parse_id_list( $item_ids ) );
1291
+        $included = array_intersect( $item_ids, $this->get_allowed_items() );
1292
+        $excluded = array_intersect( $item_ids, $this->get_excluded_items() );
1293
+
1294
+        if ( $this->has_excluded_items() && ! empty( $excluded ) ) {
1295
+            return false;
1296
+        }
1297
+
1298
+        if ( $this->has_allowed_items() && empty( $included ) ) {
1299
+            return false;
1300
+        }
1301
+
1302
+        return true;
1303
+    }
1304
+
1305
+    /**
1306
+     * Checks the discount has required items or not.
1307
+     *
1308
+     * @since 1.0.15
1309
+     * @return bool
1310
+     */
1311
+    public function has_required_items() {
1312
+        $required_items = $this->get_required_items();
1313
+        return ! empty( $required_items );
1314
+    }
1315
+
1316
+    /**
1317
+     * Checks if the required items are met
1318
+     *
1319
+     * @param  int|int[]  $item_ids
1320
+     * @since 1.0.15
1321
+     * @return boolean
1322
+     */
1323
+    public function is_required_items_met( $item_ids ) {
1324
+
1325
+        if ( ! $this->has_required_items() ) {
1326
+            return true;
1327
+        }
1328
+
1329
+        return ! array_diff( $this->get_required_items(), array_filter( wp_parse_id_list( $item_ids ) ) );
1330
+    }
1331
+
1332
+    /**
1333
+     * Check if a discount is valid for the given amount
1334
+     *
1335
+     * @param  float  $amount The amount to check against
1336
+     * @since 1.0.15
1337
+     * @return boolean
1338
+     */
1339
+    public function is_valid_for_amount( $amount ) {
1340
+        return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount );
1341
+    }
1342
+
1343
+    /**
1344
+     * Checks if the minimum amount is set
1345
+     *
1346
+     * @since 1.0.15
1347
+     * @return boolean
1348
+     */
1349
+    public function has_minimum_amount() {
1350
+        $minimum = $this->get_minimum_total();
1351
+        return ! empty( $minimum );
1352
+    }
1353
+
1354
+    /**
1355
+     * Checks if the minimum amount is met
1356
+     *
1357
+     * @param  float  $amount The amount to check against
1358
+     * @since 1.0.15
1359
+     * @return boolean
1360
+     */
1361
+    public function is_minimum_amount_met( $amount ) {
1362
+        $amount = floatval( wpinv_sanitize_amount( $amount ) );
1363
+        $min_met= ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) );
1364
+        return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount );
1365
+    }
1366
+
1367
+    /**
1368
+     * Checks if the maximum amount is set
1369
+     *
1370
+     * @since 1.0.15
1371
+     * @return boolean
1372
+     */
1373
+    public function has_maximum_amount() {
1374
+        $maximum = $this->get_maximum_total();
1375
+        return ! empty( $maximum );
1376
+    }
1377
+
1378
+    /**
1379
+     * Checks if the maximum amount is met
1380
+     *
1381
+     * @param  float  $amount The amount to check against
1382
+     * @since 1.0.15
1383
+     * @return boolean
1384
+     */
1385
+    public function is_maximum_amount_met( $amount ) {
1386
+        $amount = floatval( wpinv_sanitize_amount( $amount ) );
1387
+        $max_met= ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) );
1388
+        return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount );
1389
+    }
1390
+
1391
+    /**
1392
+     * Checks if the discount is recurring.
1393
+     *
1394
+     * @since 1.0.15
1395
+     * @return boolean
1396
+     */
1397
+    public function is_recurring() {
1398
+        $recurring = $this->get_is_recurring();
1399
+        return ! empty( $recurring );
1400
+    }
1401
+
1402
+    /**
1403
+     * Checks if the discount is single use.
1404
+     *
1405
+     * @since 1.0.15
1406
+     * @return boolean
1407
+     */
1408
+    public function is_single_use() {
1409
+        $usage = $this->get_is_single_use();
1410
+        return ! empty( $usage );
1411
+    }
1412
+
1413
+    /**
1414
+     * Check if a discount is valid for the given user
1415
+     *
1416
+     * @param  int|string  $user
1417
+     * @since 1.0.15
1418
+     * @return boolean
1419
+     */
1420
+    public function is_valid_for_user( $user ) {
1421
+
1422
+        // Ensure that the discount is single use.
1423
+        if ( empty( $user ) || ! $this->is_single_use() ) {
1424
+            return true;
1425
+        }
1426
+
1427
+        // Prepare the user id.
1428
+        $user_id = 0;
1429 1429
         if ( is_numeric( $user ) ) {
1430 1430
             $user_id = absint( $user );
1431 1431
         } else if ( is_email( $user ) && $user_data = get_user_by( 'email', $user ) ) {
@@ -1434,117 +1434,117 @@  discard block
 block discarded – undo
1434 1434
             $user_id = $user_data->ID;
1435 1435
         }
1436 1436
 
1437
-		// Ensure that we have a user.
1438
-		if ( empty( $user_id ) ) {
1439
-			return true;
1440
-		}
1437
+        // Ensure that we have a user.
1438
+        if ( empty( $user_id ) ) {
1439
+            return true;
1440
+        }
1441 1441
 
1442
-		// Get all payments with matching user id.
1442
+        // Get all payments with matching user id.
1443 1443
         $payments = wpinv_get_invoices( array( 'user' => $user_id, 'limit' => false, 'paginate' => false ) );
1444
-		$code     = strtolower( $this->get_code() );
1445
-
1446
-		// For each payment...
1447
-		foreach ( $payments as $payment ) {
1448
-
1449
-			// Only check for paid invoices.
1450
-			if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) {
1451
-				return false;
1452
-			}
1453
-
1454
-		}
1455
-
1456
-		return true;
1457
-	}
1458
-
1459
-	/**
1460
-	 * Deletes the discount from the database
1461
-	 *
1462
-	 * @since 1.0.15
1463
-	 * @return boolean
1464
-	 */
1465
-	public function remove() {
1466
-		return $this->delete();
1467
-	}
1468
-
1469
-	/**
1470
-	 * Increases a discount's usage.
1471
-	 *
1472
-	 * @since 1.0.15
1473
-	 * @param int $by The number of usages to increas by.
1474
-	 * @return int
1475
-	 */
1476
-	public function increase_usage( $by = 1 ) {
1477
-
1478
-		// Abort if zero.
1479
-		if ( empty( $by ) ) {
1480
-			return;
1481
-		}
1482
-
1483
-		// Increase the usage.
1484
-		$this->set_uses( $this->get_uses() + (int) $by );
1485
-
1486
-		// Save the discount.
1487
-		$this->save();
1488
-
1489
-		// Fire relevant hooks.
1490
-		if( (int) $by > 0 ) {
1491
-			do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(),  absint( $by ) );
1492
-		} else {
1493
-			do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) );
1494
-		}
1495
-
1496
-		// Return the number of times the discount has been used.
1497
-		return $this->get_uses();
1498
-	}
1499
-
1500
-	/**
1501
-	 * Alias of self::__toString()
1502
-	 *
1503
-	 * @since 1.0.15
1504
-	 * @return string|false
1505
-	 */
1506
-	public function get_data_as_json() {
1507
-		return $this->__toString();
1508
-	}
1509
-
1510
-	/**
1511
-	 * Returns a discount's discounted amount.
1512
-	 *
1513
-	 * @since 1.0.15
1514
-	 * @param float $amount
1515
-	 * @return float
1516
-	 */
1517
-	public function get_discounted_amount( $amount ) {
1518
-
1519
-		// Convert amount to float.
1520
-		$amount = (float) $amount;
1521
-
1522
-		// Get discount amount.
1523
-		$discount_amount = $this->get_amount();
1524
-
1525
-		if ( empty( $discount_amount ) ) {
1526
-			return 0;
1527
-		}
1528
-
1529
-		// Format the amount.
1530
-		$discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) );
1531
-
1532
-		// If this is a percentage discount.
1533
-		if ( $this->is_type( 'percent' ) ) {
1444
+        $code     = strtolower( $this->get_code() );
1445
+
1446
+        // For each payment...
1447
+        foreach ( $payments as $payment ) {
1448
+
1449
+            // Only check for paid invoices.
1450
+            if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) {
1451
+                return false;
1452
+            }
1453
+
1454
+        }
1455
+
1456
+        return true;
1457
+    }
1458
+
1459
+    /**
1460
+     * Deletes the discount from the database
1461
+     *
1462
+     * @since 1.0.15
1463
+     * @return boolean
1464
+     */
1465
+    public function remove() {
1466
+        return $this->delete();
1467
+    }
1468
+
1469
+    /**
1470
+     * Increases a discount's usage.
1471
+     *
1472
+     * @since 1.0.15
1473
+     * @param int $by The number of usages to increas by.
1474
+     * @return int
1475
+     */
1476
+    public function increase_usage( $by = 1 ) {
1477
+
1478
+        // Abort if zero.
1479
+        if ( empty( $by ) ) {
1480
+            return;
1481
+        }
1482
+
1483
+        // Increase the usage.
1484
+        $this->set_uses( $this->get_uses() + (int) $by );
1485
+
1486
+        // Save the discount.
1487
+        $this->save();
1488
+
1489
+        // Fire relevant hooks.
1490
+        if( (int) $by > 0 ) {
1491
+            do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(),  absint( $by ) );
1492
+        } else {
1493
+            do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) );
1494
+        }
1495
+
1496
+        // Return the number of times the discount has been used.
1497
+        return $this->get_uses();
1498
+    }
1499
+
1500
+    /**
1501
+     * Alias of self::__toString()
1502
+     *
1503
+     * @since 1.0.15
1504
+     * @return string|false
1505
+     */
1506
+    public function get_data_as_json() {
1507
+        return $this->__toString();
1508
+    }
1509
+
1510
+    /**
1511
+     * Returns a discount's discounted amount.
1512
+     *
1513
+     * @since 1.0.15
1514
+     * @param float $amount
1515
+     * @return float
1516
+     */
1517
+    public function get_discounted_amount( $amount ) {
1518
+
1519
+        // Convert amount to float.
1520
+        $amount = (float) $amount;
1521
+
1522
+        // Get discount amount.
1523
+        $discount_amount = $this->get_amount();
1524
+
1525
+        if ( empty( $discount_amount ) ) {
1526
+            return 0;
1527
+        }
1528
+
1529
+        // Format the amount.
1530
+        $discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) );
1531
+
1532
+        // If this is a percentage discount.
1533
+        if ( $this->is_type( 'percent' ) ) {
1534 1534
             $discount_amount = $amount * ( $discount_amount / 100 );
1535
-		}
1535
+        }
1536 1536
 
1537
-		// Discount can not be less than zero...
1538
-		if ( $discount_amount < 0 ) {
1539
-			$discount_amount = 0;
1540
-		}
1537
+        // Discount can not be less than zero...
1538
+        if ( $discount_amount < 0 ) {
1539
+            $discount_amount = 0;
1540
+        }
1541 1541
 
1542
-		// ... or more than the amount.
1543
-		if ( $discount_amount > $amount ) {
1544
-			$discount_amount = $amount;
1545
-		}
1542
+        // ... or more than the amount.
1543
+        if ( $discount_amount > $amount ) {
1544
+            $discount_amount = $amount;
1545
+        }
1546 1546
 
1547
-		return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this );
1548
-	}
1547
+        return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this );
1548
+    }
1549 1549
 
1550 1550
 }
Please login to merge, or discard this patch.
includes/data-stores/class-getpaid-discount-data-store.php 1 patch
Indentation   +188 added lines, -188 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 if ( ! defined( 'ABSPATH' ) ) {
8
-	exit;
8
+    exit;
9 9
 }
10 10
 
11 11
 /**
@@ -15,198 +15,198 @@  discard block
 block discarded – undo
15 15
  */
16 16
 class GetPaid_Discount_Data_Store extends GetPaid_Data_Store_WP {
17 17
 
18
-	/**
19
-	 * Data stored in meta keys, but not considered "meta" for a discount.
20
-	 *
21
-	 * @since 1.0.19
22
-	 * @var array
23
-	 */
24
-	protected $internal_meta_keys = array(
25
-		'_wpi_discount_code',
26
-		'_wpi_discount_amount',
27
-		'_wpi_discount_start',
28
-		'_wpi_discount_expiration',
29
-		'_wpi_discount_type',
30
-		'_wpi_discount_uses',
31
-		'_wpi_discount_is_single_use',
32
-		'_wpi_discount_items',
33
-		'_wpi_discount_excluded_items',
34
-		'_wpi_discount_required_items',
35
-		'_wpi_discount_max_uses',
36
-		'_wpi_discount_is_recurring',
37
-		'_wpi_discount_min_total',
38
-		'_wpi_discount_max_total',
39
-	);
40
-
41
-	/**
42
-	 * A map of meta keys to data props.
43
-	 *
44
-	 * @since 1.0.19
45
-	 *
46
-	 * @var array
47
-	 */
48
-	protected $meta_key_to_props = array(
49
-		'_wpi_discount_code'           => 'code',
50
-		'_wpi_discount_amount'         => 'amount',
51
-		'_wpi_discount_start'          => 'start',
52
-		'_wpi_discount_expiration'     => 'expiration',
53
-		'_wpi_discount_type'           => 'type',
54
-		'_wpi_discount_uses'           => 'uses',
55
-		'_wpi_discount_is_single_use'  => 'is_single_use',
56
-		'_wpi_discount_items'          => 'items',
57
-		'_wpi_discount_excluded_items' => 'excluded_items',
58
-		'_wpi_discount_required_items' => 'required_items',
59
-		'_wpi_discount_max_uses'       => 'max_uses',
60
-		'_wpi_discount_is_recurring'   => 'is_recurring',
61
-		'_wpi_discount_min_total'      => 'min_total',
62
-		'_wpi_discount_max_total'      => 'max_total',
63
-	);
64
-
65
-	/*
18
+    /**
19
+     * Data stored in meta keys, but not considered "meta" for a discount.
20
+     *
21
+     * @since 1.0.19
22
+     * @var array
23
+     */
24
+    protected $internal_meta_keys = array(
25
+        '_wpi_discount_code',
26
+        '_wpi_discount_amount',
27
+        '_wpi_discount_start',
28
+        '_wpi_discount_expiration',
29
+        '_wpi_discount_type',
30
+        '_wpi_discount_uses',
31
+        '_wpi_discount_is_single_use',
32
+        '_wpi_discount_items',
33
+        '_wpi_discount_excluded_items',
34
+        '_wpi_discount_required_items',
35
+        '_wpi_discount_max_uses',
36
+        '_wpi_discount_is_recurring',
37
+        '_wpi_discount_min_total',
38
+        '_wpi_discount_max_total',
39
+    );
40
+
41
+    /**
42
+     * A map of meta keys to data props.
43
+     *
44
+     * @since 1.0.19
45
+     *
46
+     * @var array
47
+     */
48
+    protected $meta_key_to_props = array(
49
+        '_wpi_discount_code'           => 'code',
50
+        '_wpi_discount_amount'         => 'amount',
51
+        '_wpi_discount_start'          => 'start',
52
+        '_wpi_discount_expiration'     => 'expiration',
53
+        '_wpi_discount_type'           => 'type',
54
+        '_wpi_discount_uses'           => 'uses',
55
+        '_wpi_discount_is_single_use'  => 'is_single_use',
56
+        '_wpi_discount_items'          => 'items',
57
+        '_wpi_discount_excluded_items' => 'excluded_items',
58
+        '_wpi_discount_required_items' => 'required_items',
59
+        '_wpi_discount_max_uses'       => 'max_uses',
60
+        '_wpi_discount_is_recurring'   => 'is_recurring',
61
+        '_wpi_discount_min_total'      => 'min_total',
62
+        '_wpi_discount_max_total'      => 'max_total',
63
+    );
64
+
65
+    /*
66 66
 	|--------------------------------------------------------------------------
67 67
 	| CRUD Methods
68 68
 	|--------------------------------------------------------------------------
69 69
 	*/
70 70
 
71
-	/**
72
-	 * Method to create a new discount in the database.
73
-	 *
74
-	 * @param WPInv_Discount $discount Discount object.
75
-	 */
76
-	public function create( &$discount ) {
77
-		$discount->set_version( WPINV_VERSION );
78
-		$discount->set_date_created( current_time('mysql') );
79
-
80
-		// Create a new post.
81
-		$id = wp_insert_post(
82
-			apply_filters(
83
-				'getpaid_new_discount_data',
84
-				array(
85
-					'post_date'     => $discount->get_date_created( 'edit' ),
86
-					'post_type'     => 'wpi_discount',
87
-					'post_status'   => $this->get_post_status( $discount ),
88
-					'ping_status'   => 'closed',
89
-					'post_author'   => $discount->get_author( 'edit' ),
90
-					'post_title'    => $discount->get_name( 'edit' ),
91
-					'post_excerpt'  => $discount->get_description( 'edit' ),
92
-				)
93
-			),
94
-			true
95
-		);
96
-
97
-		if ( $id && ! is_wp_error( $id ) ) {
98
-			$discount->set_id( $id );
99
-			$this->update_post_meta( $discount );
100
-			$discount->save_meta_data();
101
-			$discount->apply_changes();
102
-			$this->clear_caches( $discount );
103
-			do_action( 'getpaid_new_discount', $discount );
104
-			return true;
105
-		}
106
-
107
-		if ( is_wp_error( $id ) ) {
108
-			$discount->last_error = $id->get_error_message();
109
-		}
110
-
111
-		return false;
112
-	}
113
-
114
-	/**
115
-	 * Method to read a discount from the database.
116
-	 *
117
-	 * @param WPInv_Discount $discount Discount object.
118
-	 *
119
-	 */
120
-	public function read( &$discount ) {
121
-
122
-		$discount->set_defaults();
123
-		$discount_object = get_post( $discount->get_id() );
124
-
125
-		if ( ! $discount->get_id() || ! $discount_object || $discount_object->post_type != 'wpi_discount' ) {
126
-			$discount->last_error = __( 'Invalid discount.', 'invoicing' );
127
-			$discount->set_id( 0 );
128
-			return false;
129
-		}
130
-
131
-		$discount->set_props(
132
-			array(
133
-				'date_created'  => 0 < $discount_object->post_date ? $discount_object->post_date : null,
134
-				'date_modified' => 0 < $discount_object->post_modified ? $discount_object->post_modified : null,
135
-				'status'        => $discount_object->post_status,
136
-				'name'          => $discount_object->post_title,
137
-				'author'        => $discount_object->post_author,
138
-				'description'   => $discount_object->post_excerpt,
139
-			)
140
-		);
141
-
142
-		$this->read_object_data( $discount, $discount_object );
143
-		$discount->read_meta_data();
144
-		$discount->set_object_read( true );
145
-		do_action( 'getpaid_read_discount', $discount );
146
-
147
-	}
148
-
149
-	/**
150
-	 * Method to update a discount in the database.
151
-	 *
152
-	 * @param WPInv_Discount $discount Discount object.
153
-	 */
154
-	public function update( &$discount ) {
155
-		$discount->save_meta_data();
156
-		$discount->set_version( WPINV_VERSION );
157
-
158
-		if ( null === $discount->get_date_created( 'edit' ) ) {
159
-			$discount->set_date_created(  current_time('mysql') );
160
-		}
161
-
162
-		// Grab the current status so we can compare.
163
-		$previous_status = get_post_status( $discount->get_id() );
164
-
165
-		$changes = $discount->get_changes();
166
-
167
-		// Only update the post when the post data changes.
168
-		if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'post_excerpt' ), array_keys( $changes ) ) ) {
169
-			$post_data = array(
170
-				'post_date'         => $discount->get_date_created( 'edit' ),
171
-				'post_status'       => $discount->get_status( 'edit' ),
172
-				'post_title'        => $discount->get_name( 'edit' ),
173
-				'post_author'       => $discount->get_author( 'edit' ),
174
-				'post_modified'     => $discount->get_date_modified( 'edit' ),
175
-				'post_excerpt'      => $discount->get_description( 'edit' ),
176
-			);
177
-
178
-			/**
179
-			 * When updating this object, to prevent infinite loops, use $wpdb
180
-			 * to update data, since wp_update_post spawns more calls to the
181
-			 * save_post action.
182
-			 *
183
-			 * This ensures hooks are fired by either WP itself (admin screen save),
184
-			 * or an update purely from CRUD.
185
-			 */
186
-			if ( doing_action( 'save_post' ) ) {
187
-				$GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $discount->get_id() ) );
188
-				clean_post_cache( $discount->get_id() );
189
-			} else {
190
-				wp_update_post( array_merge( array( 'ID' => $discount->get_id() ), $post_data ) );
191
-			}
192
-			$discount->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
193
-		}
194
-		$this->update_post_meta( $discount );
195
-		$discount->apply_changes();
196
-		$this->clear_caches( $discount );
197
-
198
-		// Fire a hook depending on the status - this should be considered a creation if it was previously draft status.
199
-		$new_status = $discount->get_status( 'edit' );
200
-
201
-		if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) {
202
-			do_action( 'getpaid_new_discount', $discount );
203
-		} else {
204
-			do_action( 'getpaid_update_discount', $discount );
205
-		}
206
-
207
-	}
208
-
209
-	/*
71
+    /**
72
+     * Method to create a new discount in the database.
73
+     *
74
+     * @param WPInv_Discount $discount Discount object.
75
+     */
76
+    public function create( &$discount ) {
77
+        $discount->set_version( WPINV_VERSION );
78
+        $discount->set_date_created( current_time('mysql') );
79
+
80
+        // Create a new post.
81
+        $id = wp_insert_post(
82
+            apply_filters(
83
+                'getpaid_new_discount_data',
84
+                array(
85
+                    'post_date'     => $discount->get_date_created( 'edit' ),
86
+                    'post_type'     => 'wpi_discount',
87
+                    'post_status'   => $this->get_post_status( $discount ),
88
+                    'ping_status'   => 'closed',
89
+                    'post_author'   => $discount->get_author( 'edit' ),
90
+                    'post_title'    => $discount->get_name( 'edit' ),
91
+                    'post_excerpt'  => $discount->get_description( 'edit' ),
92
+                )
93
+            ),
94
+            true
95
+        );
96
+
97
+        if ( $id && ! is_wp_error( $id ) ) {
98
+            $discount->set_id( $id );
99
+            $this->update_post_meta( $discount );
100
+            $discount->save_meta_data();
101
+            $discount->apply_changes();
102
+            $this->clear_caches( $discount );
103
+            do_action( 'getpaid_new_discount', $discount );
104
+            return true;
105
+        }
106
+
107
+        if ( is_wp_error( $id ) ) {
108
+            $discount->last_error = $id->get_error_message();
109
+        }
110
+
111
+        return false;
112
+    }
113
+
114
+    /**
115
+     * Method to read a discount from the database.
116
+     *
117
+     * @param WPInv_Discount $discount Discount object.
118
+     *
119
+     */
120
+    public function read( &$discount ) {
121
+
122
+        $discount->set_defaults();
123
+        $discount_object = get_post( $discount->get_id() );
124
+
125
+        if ( ! $discount->get_id() || ! $discount_object || $discount_object->post_type != 'wpi_discount' ) {
126
+            $discount->last_error = __( 'Invalid discount.', 'invoicing' );
127
+            $discount->set_id( 0 );
128
+            return false;
129
+        }
130
+
131
+        $discount->set_props(
132
+            array(
133
+                'date_created'  => 0 < $discount_object->post_date ? $discount_object->post_date : null,
134
+                'date_modified' => 0 < $discount_object->post_modified ? $discount_object->post_modified : null,
135
+                'status'        => $discount_object->post_status,
136
+                'name'          => $discount_object->post_title,
137
+                'author'        => $discount_object->post_author,
138
+                'description'   => $discount_object->post_excerpt,
139
+            )
140
+        );
141
+
142
+        $this->read_object_data( $discount, $discount_object );
143
+        $discount->read_meta_data();
144
+        $discount->set_object_read( true );
145
+        do_action( 'getpaid_read_discount', $discount );
146
+
147
+    }
148
+
149
+    /**
150
+     * Method to update a discount in the database.
151
+     *
152
+     * @param WPInv_Discount $discount Discount object.
153
+     */
154
+    public function update( &$discount ) {
155
+        $discount->save_meta_data();
156
+        $discount->set_version( WPINV_VERSION );
157
+
158
+        if ( null === $discount->get_date_created( 'edit' ) ) {
159
+            $discount->set_date_created(  current_time('mysql') );
160
+        }
161
+
162
+        // Grab the current status so we can compare.
163
+        $previous_status = get_post_status( $discount->get_id() );
164
+
165
+        $changes = $discount->get_changes();
166
+
167
+        // Only update the post when the post data changes.
168
+        if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'name', 'author', 'post_excerpt' ), array_keys( $changes ) ) ) {
169
+            $post_data = array(
170
+                'post_date'         => $discount->get_date_created( 'edit' ),
171
+                'post_status'       => $discount->get_status( 'edit' ),
172
+                'post_title'        => $discount->get_name( 'edit' ),
173
+                'post_author'       => $discount->get_author( 'edit' ),
174
+                'post_modified'     => $discount->get_date_modified( 'edit' ),
175
+                'post_excerpt'      => $discount->get_description( 'edit' ),
176
+            );
177
+
178
+            /**
179
+             * When updating this object, to prevent infinite loops, use $wpdb
180
+             * to update data, since wp_update_post spawns more calls to the
181
+             * save_post action.
182
+             *
183
+             * This ensures hooks are fired by either WP itself (admin screen save),
184
+             * or an update purely from CRUD.
185
+             */
186
+            if ( doing_action( 'save_post' ) ) {
187
+                $GLOBALS['wpdb']->update( $GLOBALS['wpdb']->posts, $post_data, array( 'ID' => $discount->get_id() ) );
188
+                clean_post_cache( $discount->get_id() );
189
+            } else {
190
+                wp_update_post( array_merge( array( 'ID' => $discount->get_id() ), $post_data ) );
191
+            }
192
+            $discount->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
193
+        }
194
+        $this->update_post_meta( $discount );
195
+        $discount->apply_changes();
196
+        $this->clear_caches( $discount );
197
+
198
+        // Fire a hook depending on the status - this should be considered a creation if it was previously draft status.
199
+        $new_status = $discount->get_status( 'edit' );
200
+
201
+        if ( $new_status !== $previous_status && in_array( $previous_status, array( 'new', 'auto-draft', 'draft' ), true ) ) {
202
+            do_action( 'getpaid_new_discount', $discount );
203
+        } else {
204
+            do_action( 'getpaid_update_discount', $discount );
205
+        }
206
+
207
+    }
208
+
209
+    /*
210 210
 	|--------------------------------------------------------------------------
211 211
 	| Additional Methods
212 212
 	|--------------------------------------------------------------------------
Please login to merge, or discard this patch.
includes/admin/class-getpaid-admin.php 1 patch
Indentation   +607 added lines, -607 removed lines patch added patch discarded remove patch
@@ -14,91 +14,91 @@  discard block
 block discarded – undo
14 14
 class GetPaid_Admin {
15 15
 
16 16
     /**
17
-	 * Local path to this plugins admin directory
18
-	 *
19
-	 * @var         string
20
-	 */
21
-	public $admin_path;
22
-
23
-	/**
24
-	 * Web path to this plugins admin directory
25
-	 *
26
-	 * @var         string
27
-	 */
28
-	public $admin_url;
17
+     * Local path to this plugins admin directory
18
+     *
19
+     * @var         string
20
+     */
21
+    public $admin_path;
22
+
23
+    /**
24
+     * Web path to this plugins admin directory
25
+     *
26
+     * @var         string
27
+     */
28
+    public $admin_url;
29 29
 	
30
-	/**
31
-	 * Reports components.
32
-	 *
33
-	 * @var GetPaid_Reports
34
-	 */
30
+    /**
31
+     * Reports components.
32
+     *
33
+     * @var GetPaid_Reports
34
+     */
35 35
     public $reports;
36 36
 
37 37
     /**
38
-	 * Class constructor.
39
-	 */
40
-	public function __construct(){
38
+     * Class constructor.
39
+     */
40
+    public function __construct(){
41 41
 
42 42
         $this->admin_path  = plugin_dir_path( __FILE__ );
43
-		$this->admin_url   = plugins_url( '/', __FILE__ );
44
-		$this->reports     = new GetPaid_Reports();
43
+        $this->admin_url   = plugins_url( '/', __FILE__ );
44
+        $this->reports     = new GetPaid_Reports();
45 45
 
46 46
         if ( is_admin() ) {
47
-			$this->init_admin_hooks();
47
+            $this->init_admin_hooks();
48 48
         }
49 49
 
50 50
     }
51 51
 
52 52
     /**
53
-	 * Init action and filter hooks
54
-	 *
55
-	 */
56
-	private function init_admin_hooks() {
53
+     * Init action and filter hooks
54
+     *
55
+     */
56
+    private function init_admin_hooks() {
57 57
         add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 );
58 58
         add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
59 59
         add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) );
60 60
         add_action( 'admin_init', array( $this, 'activation_redirect') );
61 61
         add_action( 'admin_init', array( $this, 'maybe_do_admin_action') );
62
-		add_action( 'admin_notices', array( $this, 'show_notices' ) );
63
-		add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) );
64
-		add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) );
65
-		add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) );
66
-		add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) );
67
-		add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) );
62
+        add_action( 'admin_notices', array( $this, 'show_notices' ) );
63
+        add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) );
64
+        add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) );
65
+        add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) );
66
+        add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) );
67
+        add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) );
68 68
         add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) );
69
-		add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) );
70
-		add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) );
71
-		add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) );
72
-		add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) );
73
-		add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) );
74
-		add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) );
75
-		add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) );
76
-		add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
77
-		do_action( 'getpaid_init_admin_hooks', $this );
78
-
79
-		// Setup/welcome
80
-		if ( ! empty( $_GET['page'] ) ) {
81
-			switch ( $_GET['page'] ) {
82
-				case 'gp-setup' :
83
-					include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' );
84
-					break;
85
-			}
86
-		}
87
-
88
-    }
89
-
90
-    /**
91
-	 * Register admin scripts
92
-	 *
93
-	 */
94
-	public function enqeue_scripts() {
69
+        add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) );
70
+        add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) );
71
+        add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) );
72
+        add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) );
73
+        add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) );
74
+        add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) );
75
+        add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) );
76
+        add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) );
77
+        do_action( 'getpaid_init_admin_hooks', $this );
78
+
79
+        // Setup/welcome
80
+        if ( ! empty( $_GET['page'] ) ) {
81
+            switch ( $_GET['page'] ) {
82
+                case 'gp-setup' :
83
+                    include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' );
84
+                    break;
85
+            }
86
+        }
87
+
88
+    }
89
+
90
+    /**
91
+     * Register admin scripts
92
+     *
93
+     */
94
+    public function enqeue_scripts() {
95 95
         global $current_screen, $pagenow;
96 96
 
97
-		$page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
98
-		$editing = $pagenow == 'post.php' || $pagenow == 'post-new.php';
97
+        $page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
98
+        $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php';
99 99
 
100 100
         if ( ! empty( $current_screen->post_type ) ) {
101
-			$page = $current_screen->post_type;
101
+            $page = $current_screen->post_type;
102 102
         }
103 103
 
104 104
         // General styles.
@@ -119,54 +119,54 @@  discard block
 block discarded – undo
119 119
         }
120 120
 
121 121
         // Payment form scripts.
122
-		if ( 'wpi_payment_form' == $page && $editing ) {
122
+        if ( 'wpi_payment_form' == $page && $editing ) {
123 123
             $this->load_payment_form_scripts();
124 124
         }
125 125
 
126
-		if ( $page == 'wpinv-subscriptions' ) {
127
-			wp_enqueue_script( 'postbox' );
128
-		}
126
+        if ( $page == 'wpinv-subscriptions' ) {
127
+            wp_enqueue_script( 'postbox' );
128
+        }
129 129
 
130 130
     }
131 131
 
132 132
     /**
133
-	 * Returns admin js translations.
134
-	 *
135
-	 */
136
-	protected function get_admin_i18() {
133
+     * Returns admin js translations.
134
+     *
135
+     */
136
+    protected function get_admin_i18() {
137 137
         global $post;
138 138
 
139
-		$date_range = array(
140
-			'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days'
141
-		);
139
+        $date_range = array(
140
+            'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days'
141
+        );
142 142
 
143
-		if ( $date_range['period'] == 'custom' ) {
143
+        if ( $date_range['period'] == 'custom' ) {
144 144
 			
145
-			if ( isset( $_GET['from'] ) ) {
146
-				$date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS );
147
-			}
145
+            if ( isset( $_GET['from'] ) ) {
146
+                $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS );
147
+            }
148 148
 
149
-			if ( isset( $_GET['to'] ) ) {
150
-				$date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS );
151
-			}
149
+            if ( isset( $_GET['to'] ) ) {
150
+                $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS );
151
+            }
152 152
 
153
-		}
153
+        }
154 154
 
155 155
         $i18n = array(
156 156
             'ajax_url'                  => admin_url( 'admin-ajax.php' ),
157 157
             'post_ID'                   => isset( $post->ID ) ? $post->ID : '',
158
-			'wpinv_nonce'               => wp_create_nonce( 'wpinv-nonce' ),
159
-			'rest_nonce'                => wp_create_nonce( 'wp_rest' ),
160
-			'rest_root'                 => esc_url_raw( rest_url() ),
161
-			'date_range'                => $date_range,
158
+            'wpinv_nonce'               => wp_create_nonce( 'wpinv-nonce' ),
159
+            'rest_nonce'                => wp_create_nonce( 'wp_rest' ),
160
+            'rest_root'                 => esc_url_raw( rest_url() ),
161
+            'date_range'                => $date_range,
162 162
             'add_invoice_note_nonce'    => wp_create_nonce( 'add-invoice-note' ),
163 163
             'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ),
164 164
             'invoice_item_nonce'        => wp_create_nonce( 'invoice-item' ),
165 165
             'billing_details_nonce'     => wp_create_nonce( 'get-billing-details' ),
166 166
             'tax'                       => wpinv_tax_amount(),
167 167
             'discount'                  => 0,
168
-			'currency_symbol'           => wpinv_currency_symbol(),
169
-			'currency'                  => wpinv_get_currency(),
168
+            'currency_symbol'           => wpinv_currency_symbol(),
169
+            'currency'                  => wpinv_get_currency(),
170 170
             'currency_pos'              => wpinv_currency_position(),
171 171
             'thousand_sep'              => wpinv_thousands_separator(),
172 172
             'decimal_sep'               => wpinv_decimal_separator(),
@@ -186,118 +186,118 @@  discard block
 block discarded – undo
186 186
             'item_description'          => __( 'Item Description', 'invoicing' ),
187 187
             'invoice_description'       => __( 'Invoice Description', 'invoicing' ),
188 188
             'discount_description'      => __( 'Discount Description', 'invoicing' ),
189
-			'searching'                 => __( 'Searching', 'invoicing' ),
190
-			'loading'                   => __( 'Loading...', 'invoicing' ),
191
-			'search_customers'          => __( 'Enter customer name or email', 'invoicing' ),
192
-			'search_items'              => __( 'Enter item name', 'invoicing' ),
189
+            'searching'                 => __( 'Searching', 'invoicing' ),
190
+            'loading'                   => __( 'Loading...', 'invoicing' ),
191
+            'search_customers'          => __( 'Enter customer name or email', 'invoicing' ),
192
+            'search_items'              => __( 'Enter item name', 'invoicing' ),
193 193
         );
194 194
 
195
-		if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) {
195
+        if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) {
196 196
 
197
-			$invoice              = new WPInv_Invoice( $post );
198
-			$i18n['save_invoice'] = sprintf(
199
-				__( 'Save %s', 'invoicing' ),
200
-				ucfirst( $invoice->get_invoice_quote_type() )
201
-			);
197
+            $invoice              = new WPInv_Invoice( $post );
198
+            $i18n['save_invoice'] = sprintf(
199
+                __( 'Save %s', 'invoicing' ),
200
+                ucfirst( $invoice->get_invoice_quote_type() )
201
+            );
202 202
 
203
-			$i18n['invoice_description'] = sprintf(
204
-				__( '%s Description', 'invoicing' ),
205
-				ucfirst( $invoice->get_invoice_quote_type() )
206
-			);
203
+            $i18n['invoice_description'] = sprintf(
204
+                __( '%s Description', 'invoicing' ),
205
+                ucfirst( $invoice->get_invoice_quote_type() )
206
+            );
207 207
 
208
-		}
209
-		return $i18n;
210
-	}
208
+        }
209
+        return $i18n;
210
+    }
211 211
 
212
-	/**
213
-	 * Change the admin footer text on GetPaid admin pages.
214
-	 *
215
-	 * @since  2.0.0
216
-	 * @param  string $footer_text
217
-	 * @return string
218
-	 */
219
-	public function admin_footer_text( $footer_text ) {
220
-		global $current_screen;
212
+    /**
213
+     * Change the admin footer text on GetPaid admin pages.
214
+     *
215
+     * @since  2.0.0
216
+     * @param  string $footer_text
217
+     * @return string
218
+     */
219
+    public function admin_footer_text( $footer_text ) {
220
+        global $current_screen;
221 221
 
222
-		$page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
222
+        $page    = isset( $_GET['page'] ) ? $_GET['page'] : '';
223 223
 
224 224
         if ( ! empty( $current_screen->post_type ) ) {
225
-			$page = $current_screen->post_type;
225
+            $page = $current_screen->post_type;
226 226
         }
227 227
 
228 228
         // General styles.
229 229
         if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) {
230 230
 
231
-			// Change the footer text
232
-			if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) {
233
-
234
-				$rating_url  = esc_url(
235
-					wp_nonce_url(
236
-						admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ),
237
-						'getpaid-nonce',
238
-						'getpaid-nonce'
239
-						)
240
-				);
241
-
242
-				$footer_text = sprintf(
243
-					/* translators: %s: five stars */
244
-					__( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ),
245
-					"<a href='$rating_url'>&#9733;&#9733;&#9733;&#9733;&#9733;</a>"
246
-				);
247
-
248
-			} else {
249
-
250
-				$footer_text = sprintf(
251
-					/* translators: %s: GetPaid */
252
-					__( 'Thank you for using %s!', 'invoicing' ),
253
-					"<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>"
254
-				);
255
-
256
-			}
257
-
258
-		}
259
-
260
-		return $footer_text;
261
-	}
262
-
263
-	/**
264
-	 * Redirects to wp.org to rate the plugin.
265
-	 *
266
-	 * @since  2.0.0
267
-	 */
268
-	public function redirect_to_wordpress_rating_page() {
269
-		update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 );
270
-		wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' );
271
-		exit;
272
-	}
273
-
274
-    /**
275
-	 * Loads payment form js.
276
-	 *
277
-	 */
278
-	protected function load_payment_form_scripts() {
231
+            // Change the footer text
232
+            if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) {
233
+
234
+                $rating_url  = esc_url(
235
+                    wp_nonce_url(
236
+                        admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ),
237
+                        'getpaid-nonce',
238
+                        'getpaid-nonce'
239
+                        )
240
+                );
241
+
242
+                $footer_text = sprintf(
243
+                    /* translators: %s: five stars */
244
+                    __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ),
245
+                    "<a href='$rating_url'>&#9733;&#9733;&#9733;&#9733;&#9733;</a>"
246
+                );
247
+
248
+            } else {
249
+
250
+                $footer_text = sprintf(
251
+                    /* translators: %s: GetPaid */
252
+                    __( 'Thank you for using %s!', 'invoicing' ),
253
+                    "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>"
254
+                );
255
+
256
+            }
257
+
258
+        }
259
+
260
+        return $footer_text;
261
+    }
262
+
263
+    /**
264
+     * Redirects to wp.org to rate the plugin.
265
+     *
266
+     * @since  2.0.0
267
+     */
268
+    public function redirect_to_wordpress_rating_page() {
269
+        update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 );
270
+        wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' );
271
+        exit;
272
+    }
273
+
274
+    /**
275
+     * Loads payment form js.
276
+     *
277
+     */
278
+    protected function load_payment_form_scripts() {
279 279
         global $post;
280 280
 
281 281
         wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION );
282
-		wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION );
283
-		wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION );
282
+        wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION );
283
+        wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION );
284 284
 
285
-		$version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' );
286
-		wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ),  $version );
285
+        $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' );
286
+        wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ),  $version );
287 287
 
288
-		wp_localize_script(
288
+        wp_localize_script(
289 289
             'wpinv-admin-payment-form-script',
290 290
             'wpinvPaymentFormAdmin',
291 291
             array(
292
-				'elements'      => wpinv_get_data( 'payment-form-elements' ),
293
-				'form_elements' => getpaid_get_payment_form_elements( $post->ID ),
294
-				'currency'      => wpinv_currency_symbol(),
295
-				'position'      => wpinv_currency_position(),
296
-				'decimals'      => (int) wpinv_decimals(),
297
-				'thousands_sep' => wpinv_thousands_separator(),
298
-				'decimals_sep'  => wpinv_decimal_separator(),
299
-				'form_items'    => gepaid_get_form_items( $post->ID ),
300
-				'is_default'    => $post->ID == wpinv_get_default_payment_form(),
292
+                'elements'      => wpinv_get_data( 'payment-form-elements' ),
293
+                'form_elements' => getpaid_get_payment_form_elements( $post->ID ),
294
+                'currency'      => wpinv_currency_symbol(),
295
+                'position'      => wpinv_currency_position(),
296
+                'decimals'      => (int) wpinv_decimals(),
297
+                'thousands_sep' => wpinv_thousands_separator(),
298
+                'decimals_sep'  => wpinv_decimal_separator(),
299
+                'form_items'    => gepaid_get_form_items( $post->ID ),
300
+                'is_default'    => $post->ID == wpinv_get_default_payment_form(),
301 301
             )
302 302
         );
303 303
 
@@ -306,20 +306,20 @@  discard block
 block discarded – undo
306 306
     }
307 307
 
308 308
     /**
309
-	 * Add our classes to admin pages.
309
+     * Add our classes to admin pages.
310 310
      *
311 311
      * @param string $classes
312 312
      * @return string
313
-	 *
314
-	 */
313
+     *
314
+     */
315 315
     public function admin_body_class( $classes ) {
316
-		global $pagenow, $post, $current_screen;
316
+        global $pagenow, $post, $current_screen;
317 317
 
318 318
 
319 319
         $page = isset( $_GET['page'] ) ? $_GET['page'] : '';
320 320
 
321 321
         if ( ! empty( $current_screen->post_type ) ) {
322
-			$page = $current_screen->post_type;
322
+            $page = $current_screen->post_type;
323 323
         }
324 324
 
325 325
         if ( false !== stripos( $page, 'wpi' ) ) {
@@ -328,68 +328,68 @@  discard block
 block discarded – undo
328 328
 
329 329
         if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) {
330 330
             $classes .= ' wpinv-cpt wpinv';
331
-		}
331
+        }
332 332
 		
333
-		if ( getpaid_is_invoice_post_type( $page ) ) {
333
+        if ( getpaid_is_invoice_post_type( $page ) ) {
334 334
             $classes .= ' getpaid-is-invoice-cpt';
335 335
         }
336 336
 
337
-		return $classes;
337
+        return $classes;
338 338
     }
339 339
 
340 340
     /**
341
-	 * Maybe show the AyeCode Connect Notice.
342
-	 */
343
-	public function init_ayecode_connect_helper(){
341
+     * Maybe show the AyeCode Connect Notice.
342
+     */
343
+    public function init_ayecode_connect_helper(){
344 344
 
345
-		// Register with the deactivation survey class.
346
-		AyeCode_Deactivation_Survey::instance(array(
347
-			'slug'		        => 'invoicing',
348
-			'version'	        => WPINV_VERSION,
349
-			'support_url'       => 'https://wpgetpaid.com/support/',
350
-			'documentation_url' => 'https://docs.wpgetpaid.com/',
351
-			'activated'         => (int) get_option( 'gepaid_installed_on' ),
352
-		));
345
+        // Register with the deactivation survey class.
346
+        AyeCode_Deactivation_Survey::instance(array(
347
+            'slug'		        => 'invoicing',
348
+            'version'	        => WPINV_VERSION,
349
+            'support_url'       => 'https://wpgetpaid.com/support/',
350
+            'documentation_url' => 'https://docs.wpgetpaid.com/',
351
+            'activated'         => (int) get_option( 'gepaid_installed_on' ),
352
+        ));
353 353
 
354 354
         new AyeCode_Connect_Helper(
355 355
             array(
356
-				'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"),
357
-				'connect_external'  => __( "Please confirm you wish to connect your site?","invoicing" ),
358
-				'connect'           => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ),
359
-				'connect_button'    => __("Connect Site","invoicing"),
360
-				'connecting_button'    => __("Connecting...","invoicing"),
361
-				'error_localhost'   => __( "This service will only work with a live domain, not a localhost.","invoicing" ),
362
-				'error'             => __( "Something went wrong, please refresh and try again.","invoicing" ),
356
+                'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"),
357
+                'connect_external'  => __( "Please confirm you wish to connect your site?","invoicing" ),
358
+                'connect'           => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ),
359
+                'connect_button'    => __("Connect Site","invoicing"),
360
+                'connecting_button'    => __("Connecting...","invoicing"),
361
+                'error_localhost'   => __( "This service will only work with a live domain, not a localhost.","invoicing" ),
362
+                'error'             => __( "Something went wrong, please refresh and try again.","invoicing" ),
363 363
             ),
364 364
             array( 'wpi-addons' )
365 365
         );
366 366
 
367 367
     }
368 368
 
369
-	/**
370
-	 * Redirect users to settings on activation.
371
-	 *
372
-	 * @return void
373
-	 */
374
-	public function activation_redirect() {
369
+    /**
370
+     * Redirect users to settings on activation.
371
+     *
372
+     * @return void
373
+     */
374
+    public function activation_redirect() {
375 375
 
376
-		$redirected = get_option( 'wpinv_redirected_to_settings' );
376
+        $redirected = get_option( 'wpinv_redirected_to_settings' );
377 377
 
378
-		if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) {
379
-			return;
380
-		}
378
+        if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) {
379
+            return;
380
+        }
381 381
 
382
-		// Bail if activating from network, or bulk
383
-		if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
384
-			return;
385
-		}
382
+        // Bail if activating from network, or bulk
383
+        if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
384
+            return;
385
+        }
386 386
 
387
-	    update_option( 'wpinv_redirected_to_settings', 1 );
387
+        update_option( 'wpinv_redirected_to_settings', 1 );
388 388
 
389 389
         wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) );
390 390
         exit;
391 391
 
392
-	}
392
+    }
393 393
 
394 394
     /**
395 395
      * Fires an admin action after verifying that a user can fire them.
@@ -403,539 +403,539 @@  discard block
 block discarded – undo
403 403
 
404 404
     }
405 405
 
406
-	/**
406
+    /**
407 407
      * Duplicate invoice.
408
-	 * 
409
-	 * @param array $args
408
+     * 
409
+     * @param array $args
410 410
      */
411 411
     public function duplicate_invoice( $args ) {
412 412
 
413
-		if ( empty( $args['invoice_id'] ) ) {
414
-			return;
415
-		}
413
+        if ( empty( $args['invoice_id'] ) ) {
414
+            return;
415
+        }
416 416
 
417
-		$invoice = new WPInv_Invoice( (int) $args['invoice_id'] );
417
+        $invoice = new WPInv_Invoice( (int) $args['invoice_id'] );
418 418
 
419
-		if ( ! $invoice->exists() ) {
420
-			return;
421
-		}
419
+        if ( ! $invoice->exists() ) {
420
+            return;
421
+        }
422 422
 
423
-		$new_invoice = getpaid_duplicate_invoice( $invoice );
424
-		$new_invoice->save();
423
+        $new_invoice = getpaid_duplicate_invoice( $invoice );
424
+        $new_invoice->save();
425 425
 
426
-		if ( $new_invoice->exists() ) {
426
+        if ( $new_invoice->exists() ) {
427 427
 
428
-			getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) );
428
+            getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) );
429 429
 
430
-			wp_safe_redirect(
431
-				add_query_arg(
432
-					array(
433
-						'action' => 'edit',
434
-						'post' => $new_invoice->get_id(),
435
-					),
436
-					admin_url( 'post.php' )
437
-				)
438
-			);
439
-			exit;
430
+            wp_safe_redirect(
431
+                add_query_arg(
432
+                    array(
433
+                        'action' => 'edit',
434
+                        'post' => $new_invoice->get_id(),
435
+                    ),
436
+                    admin_url( 'post.php' )
437
+                )
438
+            );
439
+            exit;
440 440
 
441
-		}
441
+        }
442 442
 
443
-		getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) );
443
+        getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) );
444 444
 
445
-	}
445
+    }
446 446
 
447
-	/**
447
+    /**
448 448
      * Sends a payment reminder to a customer.
449
-	 * 
450
-	 * @param array $args
449
+     * 
450
+     * @param array $args
451 451
      */
452 452
     public function duplicate_payment_form( $args ) {
453 453
 
454
-		if ( empty( $args['form_id'] ) ) {
455
-			return;
456
-		}
457
-
458
-		$form = new GetPaid_Payment_Form( (int) $args['form_id'] );
454
+        if ( empty( $args['form_id'] ) ) {
455
+            return;
456
+        }
459 457
 
460
-		if ( ! $form->exists() ) {
461
-			return;
462
-		}
458
+        $form = new GetPaid_Payment_Form( (int) $args['form_id'] );
463 459
 
464
-		$new_form = new GetPaid_Payment_Form();
465
-		$new_form->set_author( $form->get_author( 'edit' ) );
466
-		$new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) );
467
-		$new_form->set_elements( $form->get_elements( 'edit' ) );
468
-		$new_form->set_items( $form->get_items( 'edit' ) );
469
-		$new_form->save();
460
+        if ( ! $form->exists() ) {
461
+            return;
462
+        }
470 463
 
471
-		if ( $new_form->exists() ) {
472
-			$this->show_success( __( 'Form duplicated successfully', 'invoicing' ) );
473
-			$url = get_edit_post_link( $new_form->get_id(), 'edit' );
474
-		} else {
475
-			$this->show_error( __( 'Unable to duplicate form', 'invoicing' ) );
476
-			$url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) );
477
-		}
464
+        $new_form = new GetPaid_Payment_Form();
465
+        $new_form->set_author( $form->get_author( 'edit' ) );
466
+        $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) );
467
+        $new_form->set_elements( $form->get_elements( 'edit' ) );
468
+        $new_form->set_items( $form->get_items( 'edit' ) );
469
+        $new_form->save();
470
+
471
+        if ( $new_form->exists() ) {
472
+            $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) );
473
+            $url = get_edit_post_link( $new_form->get_id(), 'edit' );
474
+        } else {
475
+            $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) );
476
+            $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) );
477
+        }
478 478
 
479
-		wp_redirect( $url );
480
-		exit;
481
-	}
479
+        wp_redirect( $url );
480
+        exit;
481
+    }
482 482
 
483
-	/**
483
+    /**
484 484
      * Sends a payment reminder to a customer.
485
-	 * 
486
-	 * @param array $args
485
+     * 
486
+     * @param array $args
487 487
      */
488 488
     public function send_customer_invoice( $args ) {
489
-		$sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true );
489
+        $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true );
490 490
 
491
-		if ( $sent ) {
492
-			$this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) );
493
-		} else {
494
-			$this->show_error( __( 'Could not send the invoice to the customer', 'invoicing' ) );
495
-		}
491
+        if ( $sent ) {
492
+            $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) );
493
+        } else {
494
+            $this->show_error( __( 'Could not send the invoice to the customer', 'invoicing' ) );
495
+        }
496 496
 
497
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
498
-		exit;
499
-	}
497
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
498
+        exit;
499
+    }
500 500
 
501
-	/**
501
+    /**
502 502
      * Sends a payment reminder to a customer.
503
-	 * 
504
-	 * @param array $args
503
+     * 
504
+     * @param array $args
505 505
      */
506 506
     public function send_customer_payment_reminder( $args ) {
507
-		$sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) );
507
+        $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) );
508 508
 
509
-		if ( $sent ) {
510
-			$this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) );
511
-		} else {
512
-			$this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) );
513
-		}
509
+        if ( $sent ) {
510
+            $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) );
511
+        } else {
512
+            $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) );
513
+        }
514 514
 
515
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
516
-		exit;
517
-	}
515
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) );
516
+        exit;
517
+    }
518 518
 
519
-	/**
519
+    /**
520 520
      * Resets tax rates.
521
-	 * 
521
+     * 
522 522
      */
523 523
     public function admin_reset_tax_rates() {
524 524
 
525
-		update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) );
526
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
527
-		exit;
525
+        update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) );
526
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
527
+        exit;
528 528
 
529
-	}
529
+    }
530 530
 
531
-	/**
531
+    /**
532 532
      * Resets admin pages.
533
-	 * 
533
+     * 
534 534
      */
535 535
     public function admin_create_missing_pages() {
536
-		$installer = new GetPaid_Installer();
537
-		$installer->create_pages();
538
-		$this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) );
539
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
540
-		exit;
541
-	}
542
-
543
-	/**
536
+        $installer = new GetPaid_Installer();
537
+        $installer->create_pages();
538
+        $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) );
539
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
540
+        exit;
541
+    }
542
+
543
+    /**
544 544
      * Creates an missing admin tables.
545
-	 * 
545
+     * 
546 546
      */
547 547
     public function admin_create_missing_tables() {
548
-		global $wpdb;
549
-		$installer = new GetPaid_Installer();
548
+        global $wpdb;
549
+        $installer = new GetPaid_Installer();
550 550
 
551
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) {
552
-			$installer->create_subscriptions_table();
551
+        if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) {
552
+            $installer->create_subscriptions_table();
553 553
 
554
-			if ( $wpdb->last_error !== '' ) {
555
-				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
556
-			}
557
-		}
554
+            if ( $wpdb->last_error !== '' ) {
555
+                $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
556
+            }
557
+        }
558 558
 
559
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) {
560
-			$installer->create_invoices_table();
559
+        if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) {
560
+            $installer->create_invoices_table();
561 561
 
562
-			if ( $wpdb->last_error !== '' ) {
563
-				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
564
-			}
565
-		}
562
+            if ( $wpdb->last_error !== '' ) {
563
+                $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
564
+            }
565
+        }
566 566
 
567
-		if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) {
568
-			$installer->create_invoice_items_table();
567
+        if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) {
568
+            $installer->create_invoice_items_table();
569 569
 
570
-			if ( $wpdb->last_error !== '' ) {
571
-				$this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
572
-			}
573
-		}
570
+            if ( $wpdb->last_error !== '' ) {
571
+                $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error );
572
+            }
573
+        }
574 574
 
575
-		if ( ! $this->has_notices() ) {
576
-			$this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) );
577
-		}
575
+        if ( ! $this->has_notices() ) {
576
+            $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) );
577
+        }
578 578
 
579
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
580
-		exit;
581
-	}
579
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
580
+        exit;
581
+    }
582 582
 
583
-	/**
583
+    /**
584 584
      * Migrates old invoices to the new database tables.
585
-	 * 
585
+     * 
586 586
      */
587 587
     public function admin_migrate_old_invoices() {
588 588
 
589
-		// Migrate the invoices.
590
-		$installer = new GetPaid_Installer();
591
-		$installer->migrate_old_invoices();
589
+        // Migrate the invoices.
590
+        $installer = new GetPaid_Installer();
591
+        $installer->migrate_old_invoices();
592 592
 
593
-		// Show an admin message.
594
-		$this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) );
593
+        // Show an admin message.
594
+        $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) );
595 595
 
596
-		// Redirect the admin.
597
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
598
-		exit;
596
+        // Redirect the admin.
597
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
598
+        exit;
599 599
 
600
-	}
600
+    }
601 601
 
602
-	/**
602
+    /**
603 603
      * Download customers.
604
-	 * 
604
+     * 
605 605
      */
606 606
     public function admin_download_customers() {
607
-		global $wpdb;
607
+        global $wpdb;
608 608
 
609
-		$output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) );
609
+        $output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) );
610 610
 
611
-		header( "Content-Type:text/csv" );
612
-		header( "Content-Disposition:attachment;filename=customers.csv" );
611
+        header( "Content-Type:text/csv" );
612
+        header( "Content-Disposition:attachment;filename=customers.csv" );
613 613
 
614
-		$post_types = '';
614
+        $post_types = '';
615 615
 
616
-		foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) {
617
-			$post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type );
618
-		}
616
+        foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) {
617
+            $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type );
618
+        }
619 619
 
620
-		$post_types = rtrim( $post_types, ' OR' );
620
+        $post_types = rtrim( $post_types, ' OR' );
621 621
 
622
-		$customers = $wpdb->get_col(
623
-			$wpdb->prepare(
624
-				"SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types"
625
-			)
626
-		);
622
+        $customers = $wpdb->get_col(
623
+            $wpdb->prepare(
624
+                "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types"
625
+            )
626
+        );
627 627
 
628
-		$columns = array(
629
-			'name'     => __( 'Name', 'invoicing' ),
630
-			'email'    => __( 'Email', 'invoicing' ),
631
-			'country'  => __( 'Country', 'invoicing' ),
632
-			'state'    => __( 'State', 'invoicing' ),
633
-			'city'     => __( 'City', 'invoicing' ),
634
-			'zip'      => __( 'ZIP', 'invoicing' ),
635
-			'address'  => __( 'Address', 'invoicing' ),
636
-			'phone'    => __( 'Phone', 'invoicing' ),
637
-			'company'  => __( 'Company', 'invoicing' ),
638
-			'company_id'  => __( 'Company ID', 'invoicing' ),
639
-			'invoices' => __( 'Invoices', 'invoicing' ),
640
-			'total_raw' => __( 'Total Spend', 'invoicing' ),
641
-			'signup'   => __( 'Date created', 'invoicing' ),
642
-		);
628
+        $columns = array(
629
+            'name'     => __( 'Name', 'invoicing' ),
630
+            'email'    => __( 'Email', 'invoicing' ),
631
+            'country'  => __( 'Country', 'invoicing' ),
632
+            'state'    => __( 'State', 'invoicing' ),
633
+            'city'     => __( 'City', 'invoicing' ),
634
+            'zip'      => __( 'ZIP', 'invoicing' ),
635
+            'address'  => __( 'Address', 'invoicing' ),
636
+            'phone'    => __( 'Phone', 'invoicing' ),
637
+            'company'  => __( 'Company', 'invoicing' ),
638
+            'company_id'  => __( 'Company ID', 'invoicing' ),
639
+            'invoices' => __( 'Invoices', 'invoicing' ),
640
+            'total_raw' => __( 'Total Spend', 'invoicing' ),
641
+            'signup'   => __( 'Date created', 'invoicing' ),
642
+        );
643 643
 
644
-		// Output the csv column headers.
645
-		fputcsv( $output, array_values( $columns ) );
644
+        // Output the csv column headers.
645
+        fputcsv( $output, array_values( $columns ) );
646 646
 
647
-		// Loop through
648
-		$table = new WPInv_Customers_Table();
649
-		foreach ( $customers as $customer_id ) {
647
+        // Loop through
648
+        $table = new WPInv_Customers_Table();
649
+        foreach ( $customers as $customer_id ) {
650 650
 
651
-			$user = get_user_by( 'id', $customer_id );
652
-			$row  = array();
653
-			if ( empty( $user ) ) {
654
-				continue;
655
-			}
651
+            $user = get_user_by( 'id', $customer_id );
652
+            $row  = array();
653
+            if ( empty( $user ) ) {
654
+                continue;
655
+            }
656 656
 
657
-			foreach ( array_keys( $columns ) as $column ) {
657
+            foreach ( array_keys( $columns ) as $column ) {
658 658
 
659
-				$method = 'column_' . $column;
659
+                $method = 'column_' . $column;
660 660
 
661
-				if ( 'name' == $column ) {
662
-					$value = esc_html( $user->display_name );
663
-				} else if( 'email' == $column ) {
664
-					$value = sanitize_email( $user->user_email );
665
-				} else if ( is_callable( array( $table, $method ) ) ) {
666
-					$value = strip_tags( $table->$method( $user ) );
667
-				}
661
+                if ( 'name' == $column ) {
662
+                    $value = esc_html( $user->display_name );
663
+                } else if( 'email' == $column ) {
664
+                    $value = sanitize_email( $user->user_email );
665
+                } else if ( is_callable( array( $table, $method ) ) ) {
666
+                    $value = strip_tags( $table->$method( $user ) );
667
+                }
668 668
 
669
-				if ( empty( $value ) ) {
670
-					$value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) );
671
-				}
669
+                if ( empty( $value ) ) {
670
+                    $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) );
671
+                }
672 672
 
673
-				$row[] = $value;
673
+                $row[] = $value;
674 674
 
675
-			}
675
+            }
676 676
 
677
-			fputcsv( $output, $row );
678
-		}
677
+            fputcsv( $output, $row );
678
+        }
679 679
 
680
-		fclose( $output );
681
-		exit;
680
+        fclose( $output );
681
+        exit;
682 682
 
683
-	}
683
+    }
684 684
 
685
-	/**
685
+    /**
686 686
      * Installs a plugin.
687
-	 *
688
-	 * @param array $data
687
+     *
688
+     * @param array $data
689 689
      */
690 690
     public function admin_install_plugin( $data ) {
691 691
 
692
-		if ( ! empty( $data['plugins'] ) ) {
693
-			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
694
-			wp_cache_flush();
692
+        if ( ! empty( $data['plugins'] ) ) {
693
+            include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
694
+            wp_cache_flush();
695 695
 
696
-			foreach ( $data['plugins'] as $slug => $file ) {
697
-				$plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' );
698
-				$upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
699
-				$installed  = $upgrader->install( $plugin_zip );
696
+            foreach ( $data['plugins'] as $slug => $file ) {
697
+                $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' );
698
+                $upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
699
+                $installed  = $upgrader->install( $plugin_zip );
700 700
 
701
-				if ( ! is_wp_error( $installed ) && $installed ) {
702
-					activate_plugin( $file, '', false, true );
703
-				} else {
704
-					wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false );
705
-				}
701
+                if ( ! is_wp_error( $installed ) && $installed ) {
702
+                    activate_plugin( $file, '', false, true );
703
+                } else {
704
+                    wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false );
705
+                }
706 706
 
707
-			}
707
+            }
708 708
 
709
-		}
709
+        }
710 710
 
711
-		$redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' );
712
-		wp_safe_redirect( $redirect );
713
-		exit;
711
+        $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' );
712
+        wp_safe_redirect( $redirect );
713
+        exit;
714 714
 
715
-	}
715
+    }
716 716
 
717
-	/**
717
+    /**
718 718
      * Connects a gateway.
719
-	 *
720
-	 * @param array $data
719
+     *
720
+     * @param array $data
721 721
      */
722 722
     public function admin_connect_gateway( $data ) {
723 723
 
724
-		if ( ! empty( $data['plugin'] ) ) {
724
+        if ( ! empty( $data['plugin'] ) ) {
725 725
 
726
-			$gateway     = sanitize_key( $data['plugin'] );
727
-			$connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data );
726
+            $gateway     = sanitize_key( $data['plugin'] );
727
+            $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data );
728 728
 
729
-			if ( ! empty( $connect_url ) ) {
730
-				wp_redirect( $connect_url );
731
-				exit;
732
-			}
729
+            if ( ! empty( $connect_url ) ) {
730
+                wp_redirect( $connect_url );
731
+                exit;
732
+            }
733 733
 
734
-			if ( 'stripe' == $data['plugin'] ) {
735
-				require_once ABSPATH . 'wp-admin/includes/plugin.php';
736
-				include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
737
-				wp_cache_flush();
734
+            if ( 'stripe' == $data['plugin'] ) {
735
+                require_once ABSPATH . 'wp-admin/includes/plugin.php';
736
+                include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
737
+                wp_cache_flush();
738 738
 
739
-				if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) {
740
-					$plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' );
741
-					$upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
742
-					$upgrader->install( $plugin_zip );
743
-				}
739
+                if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) {
740
+                    $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' );
741
+                    $upgrader   = new Plugin_Upgrader( new Automatic_Upgrader_Skin() );
742
+                    $upgrader->install( $plugin_zip );
743
+                }
744 744
 
745
-				activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true );
746
-			}
745
+                activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true );
746
+            }
747 747
 
748
-			$connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data );
749
-			if ( ! empty( $connect_url ) ) {
750
-				wp_redirect( $connect_url );
751
-				exit;
752
-			}
748
+            $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data );
749
+            if ( ! empty( $connect_url ) ) {
750
+                wp_redirect( $connect_url );
751
+                exit;
752
+            }
753 753
 
754
-		}
754
+        }
755 755
 
756
-		$redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' );
757
-		wp_safe_redirect( $redirect );
758
-		exit;
756
+        $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' );
757
+        wp_safe_redirect( $redirect );
758
+        exit;
759 759
 
760
-	}
760
+    }
761 761
 
762
-	/**
762
+    /**
763 763
      * Recalculates discounts.
764
-	 * 
764
+     * 
765 765
      */
766 766
     public function admin_recalculate_discounts() {
767
-		global $wpdb;
767
+        global $wpdb;
768 768
 
769
-		// Fetch all invoices that have discount codes.
770
-		$table    = $wpdb->prefix . 'getpaid_invoices';
771
-		$invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" );
769
+        // Fetch all invoices that have discount codes.
770
+        $table    = $wpdb->prefix . 'getpaid_invoices';
771
+        $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" );
772 772
 
773
-		foreach ( $invoices as $invoice ) {
773
+        foreach ( $invoices as $invoice ) {
774 774
 
775
-			$invoice = new WPInv_Invoice( $invoice );
775
+            $invoice = new WPInv_Invoice( $invoice );
776 776
 
777
-			if ( ! $invoice->exists() ) {
778
-				continue;
779
-			}
777
+            if ( ! $invoice->exists() ) {
778
+                continue;
779
+            }
780 780
 
781
-			// Abort if the discount does not exist or does not apply here.
782
-			$discount = new WPInv_Discount( $invoice->get_discount_code() );
783
-			if ( ! $discount->exists() ) {
784
-				continue;
785
-			}
781
+            // Abort if the discount does not exist or does not apply here.
782
+            $discount = new WPInv_Discount( $invoice->get_discount_code() );
783
+            if ( ! $discount->exists() ) {
784
+                continue;
785
+            }
786 786
 
787
-			$invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) );
788
-			$invoice->recalculate_total();
787
+            $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) );
788
+            $invoice->recalculate_total();
789 789
 
790
-			if ( $invoice->get_total_discount() > 0 ) {
791
-				$invoice->save();
792
-			}
790
+            if ( $invoice->get_total_discount() > 0 ) {
791
+                $invoice->save();
792
+            }
793 793
 
794
-		}
794
+        }
795 795
 
796
-		// Show an admin message.
797
-		$this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) );
796
+        // Show an admin message.
797
+        $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) );
798 798
 
799
-		// Redirect the admin.
800
-		wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
801
-		exit;
799
+        // Redirect the admin.
800
+        wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) );
801
+        exit;
802 802
 
803
-	}
803
+    }
804 804
 
805 805
     /**
806
-	 * Returns an array of admin notices.
807
-	 *
808
-	 * @since       1.0.19
806
+     * Returns an array of admin notices.
807
+     *
808
+     * @since       1.0.19
809 809
      * @return array
810
-	 */
811
-	public function get_notices() {
812
-		$notices = get_option( 'wpinv_admin_notices' );
810
+     */
811
+    public function get_notices() {
812
+        $notices = get_option( 'wpinv_admin_notices' );
813 813
         return is_array( $notices ) ? $notices : array();
814
-	}
814
+    }
815 815
 
816
-	/**
817
-	 * Checks if we have any admin notices.
818
-	 *
819
-	 * @since       2.0.4
816
+    /**
817
+     * Checks if we have any admin notices.
818
+     *
819
+     * @since       2.0.4
820 820
      * @return array
821
-	 */
822
-	public function has_notices() {
823
-		return count( $this->get_notices() ) > 0;
824
-	}
825
-
826
-	/**
827
-	 * Clears all admin notices
828
-	 *
829
-	 * @access      public
830
-	 * @since       1.0.19
831
-	 */
832
-	public function clear_notices() {
833
-		delete_option( 'wpinv_admin_notices' );
834
-	}
835
-
836
-	/**
837
-	 * Saves a new admin notice
838
-	 *
839
-	 * @access      public
840
-	 * @since       1.0.19
841
-	 */
842
-	public function save_notice( $type, $message ) {
843
-		$notices = $this->get_notices();
844
-
845
-		if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) {
846
-			$notices[ $type ] = array();
847
-		}
848
-
849
-		$notices[ $type ][] = $message;
850
-
851
-		update_option( 'wpinv_admin_notices', $notices );
852
-	}
853
-
854
-	/**
855
-	 * Displays a success notice
856
-	 *
857
-	 * @param       string $msg The message to qeue.
858
-	 * @access      public
859
-	 * @since       1.0.19
860
-	 */
861
-	public function show_success( $msg ) {
862
-		$this->save_notice( 'success', $msg );
863
-	}
864
-
865
-	/**
866
-	 * Displays a error notice
867
-	 *
868
-	 * @access      public
869
-	 * @param       string $msg The message to qeue.
870
-	 * @since       1.0.19
871
-	 */
872
-	public function show_error( $msg ) {
873
-		$this->save_notice( 'error', $msg );
874
-	}
875
-
876
-	/**
877
-	 * Displays a warning notice
878
-	 *
879
-	 * @access      public
880
-	 * @param       string $msg The message to qeue.
881
-	 * @since       1.0.19
882
-	 */
883
-	public function show_warning( $msg ) {
884
-		$this->save_notice( 'warning', $msg );
885
-	}
886
-
887
-	/**
888
-	 * Displays a info notice
889
-	 *
890
-	 * @access      public
891
-	 * @param       string $msg The message to qeue.
892
-	 * @since       1.0.19
893
-	 */
894
-	public function show_info( $msg ) {
895
-		$this->save_notice( 'info', $msg );
896
-	}
897
-
898
-	/**
899
-	 * Show notices
900
-	 *
901
-	 * @access      public
902
-	 * @since       1.0.19
903
-	 */
904
-	public function show_notices() {
821
+     */
822
+    public function has_notices() {
823
+        return count( $this->get_notices() ) > 0;
824
+    }
825
+
826
+    /**
827
+     * Clears all admin notices
828
+     *
829
+     * @access      public
830
+     * @since       1.0.19
831
+     */
832
+    public function clear_notices() {
833
+        delete_option( 'wpinv_admin_notices' );
834
+    }
835
+
836
+    /**
837
+     * Saves a new admin notice
838
+     *
839
+     * @access      public
840
+     * @since       1.0.19
841
+     */
842
+    public function save_notice( $type, $message ) {
843
+        $notices = $this->get_notices();
844
+
845
+        if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) {
846
+            $notices[ $type ] = array();
847
+        }
848
+
849
+        $notices[ $type ][] = $message;
850
+
851
+        update_option( 'wpinv_admin_notices', $notices );
852
+    }
853
+
854
+    /**
855
+     * Displays a success notice
856
+     *
857
+     * @param       string $msg The message to qeue.
858
+     * @access      public
859
+     * @since       1.0.19
860
+     */
861
+    public function show_success( $msg ) {
862
+        $this->save_notice( 'success', $msg );
863
+    }
864
+
865
+    /**
866
+     * Displays a error notice
867
+     *
868
+     * @access      public
869
+     * @param       string $msg The message to qeue.
870
+     * @since       1.0.19
871
+     */
872
+    public function show_error( $msg ) {
873
+        $this->save_notice( 'error', $msg );
874
+    }
875
+
876
+    /**
877
+     * Displays a warning notice
878
+     *
879
+     * @access      public
880
+     * @param       string $msg The message to qeue.
881
+     * @since       1.0.19
882
+     */
883
+    public function show_warning( $msg ) {
884
+        $this->save_notice( 'warning', $msg );
885
+    }
886
+
887
+    /**
888
+     * Displays a info notice
889
+     *
890
+     * @access      public
891
+     * @param       string $msg The message to qeue.
892
+     * @since       1.0.19
893
+     */
894
+    public function show_info( $msg ) {
895
+        $this->save_notice( 'info', $msg );
896
+    }
897
+
898
+    /**
899
+     * Show notices
900
+     *
901
+     * @access      public
902
+     * @since       1.0.19
903
+     */
904
+    public function show_notices() {
905 905
 
906 906
         $notices = $this->get_notices();
907 907
         $this->clear_notices();
908 908
 
909
-		foreach ( $notices as $type => $messages ) {
909
+        foreach ( $notices as $type => $messages ) {
910 910
 
911
-			if ( ! is_array( $messages ) ) {
912
-				continue;
913
-			}
911
+            if ( ! is_array( $messages ) ) {
912
+                continue;
913
+            }
914 914
 
915 915
             $type  = sanitize_key( $type );
916
-			foreach ( $messages as $message ) {
916
+            foreach ( $messages as $message ) {
917 917
                 $message = wp_kses_post( $message );
918
-				echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>";
918
+                echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>";
919 919
             }
920 920
 
921 921
         }
922 922
 
923
-		foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) {
924
-
925
-			if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) {
926
-				$url     = wp_nonce_url(
927
-					add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ),
928
-					'getpaid-nonce',
929
-					'getpaid-nonce'
930
-				);
931
-				$message  = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' );
932
-				$message2 = __( 'Generate Pages', 'invoicing' );
933
-				echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>";
934
-				break;
935
-			}
923
+        foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) {
924
+
925
+            if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) {
926
+                $url     = wp_nonce_url(
927
+                    add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ),
928
+                    'getpaid-nonce',
929
+                    'getpaid-nonce'
930
+                );
931
+                $message  = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' );
932
+                $message2 = __( 'Generate Pages', 'invoicing' );
933
+                echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>";
934
+                break;
935
+            }
936 936
 
937
-		}
937
+        }
938 938
 
939
-	}
939
+    }
940 940
 
941 941
 }
Please login to merge, or discard this patch.
ayecode/wp-ayecode-ui/includes/components/class-aui-component-helper.php 1 patch
Indentation   +392 added lines, -392 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit; // Exit if accessed directly
4
+    exit; // Exit if accessed directly
5 5
 }
6 6
 
7 7
 /**
@@ -11,395 +11,395 @@  discard block
 block discarded – undo
11 11
  */
12 12
 class AUI_Component_Helper {
13 13
 
14
-	/**
15
-	 * A component helper for generating a input name.
16
-	 *
17
-	 * @param $text
18
-	 * @param $multiple bool If the name is set to be multiple but no brackets found then we add some.
19
-	 *
20
-	 * @return string
21
-	 */
22
-	public static function name( $text, $multiple = false ) {
23
-		$output = '';
24
-
25
-		if ( $text ) {
26
-			$is_multiple = strpos( $text, '[' ) === false && $multiple ? '[]' : '';
27
-			$output      = ' name="' . esc_attr( $text ) . $is_multiple . '" ';
28
-		}
29
-
30
-		return $output;
31
-	}
32
-
33
-	/**
34
-	 * A component helper for generating a item id.
35
-	 *
36
-	 * @param $text string The text to be used as the value.
37
-	 *
38
-	 * @return string The sanitized item.
39
-	 */
40
-	public static function id( $text ) {
41
-		$output = '';
42
-
43
-		if ( $text ) {
44
-			$output = ' id="' . sanitize_html_class( $text ) . '" ';
45
-		}
46
-
47
-		return $output;
48
-	}
49
-
50
-	/**
51
-	 * A component helper for generating a item title.
52
-	 *
53
-	 * @param $text string The text to be used as the value.
54
-	 *
55
-	 * @return string The sanitized item.
56
-	 */
57
-	public static function title( $text ) {
58
-		$output = '';
59
-
60
-		if ( $text ) {
61
-			$output = ' title="' . esc_attr( $text ) . '" ';
62
-		}
63
-
64
-		return $output;
65
-	}
66
-
67
-	/**
68
-	 * A component helper for generating a item value.
69
-	 *
70
-	 * @param $text string The text to be used as the value.
71
-	 *
72
-	 * @return string The sanitized item.
73
-	 */
74
-	public static function value( $text ) {
75
-		$output = '';
76
-
77
-		if ( $text !== null && $text !== false ) {
78
-			$output = ' value="' . esc_attr( wp_unslash( $text ) ) . '" ';
79
-		}
80
-
81
-		return $output;
82
-	}
83
-
84
-	/**
85
-	 * A component helper for generating a item class attribute.
86
-	 *
87
-	 * @param $text string The text to be used as the value.
88
-	 *
89
-	 * @return string The sanitized item.
90
-	 */
91
-	public static function class_attr( $text ) {
92
-		$output = '';
93
-
94
-		if ( $text ) {
95
-			$classes = self::esc_classes( $text );
96
-			if ( ! empty( $classes ) ) {
97
-				$output = ' class="' . $classes . '" ';
98
-			}
99
-		}
100
-
101
-		return $output;
102
-	}
103
-
104
-	/**
105
-	 * Escape a string of classes.
106
-	 *
107
-	 * @param $text
108
-	 *
109
-	 * @return string
110
-	 */
111
-	public static function esc_classes( $text ) {
112
-		$output = '';
113
-
114
-		if ( $text ) {
115
-			$classes = explode( " ", $text );
116
-			$classes = array_map( "trim", $classes );
117
-			$classes = array_map( "sanitize_html_class", $classes );
118
-			if ( ! empty( $classes ) ) {
119
-				$output = implode( " ", $classes );
120
-			}
121
-		}
122
-
123
-		return $output;
124
-
125
-	}
126
-
127
-	/**
128
-	 * @param $args
129
-	 *
130
-	 * @return string
131
-	 */
132
-	public static function data_attributes( $args ) {
133
-		$output = '';
134
-
135
-		if ( ! empty( $args ) ) {
136
-
137
-			foreach ( $args as $key => $val ) {
138
-				if ( substr( $key, 0, 5 ) === "data-" ) {
139
-					$output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
140
-				}
141
-			}
142
-		}
143
-
144
-		return $output;
145
-	}
146
-
147
-	/**
148
-	 * @param $args
149
-	 *
150
-	 * @return string
151
-	 */
152
-	public static function aria_attributes( $args ) {
153
-		$output = '';
154
-
155
-		if ( ! empty( $args ) ) {
156
-
157
-			foreach ( $args as $key => $val ) {
158
-				if ( substr( $key, 0, 5 ) === "aria-" ) {
159
-					$output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
160
-				}
161
-			}
162
-		}
163
-
164
-		return $output;
165
-	}
166
-
167
-	/**
168
-	 * Build a font awesome icon from a class.
169
-	 *
170
-	 * @param $class
171
-	 * @param bool $space_after
172
-	 * @param array $extra_attributes An array of extra attributes.
173
-	 *
174
-	 * @return string
175
-	 */
176
-	public static function icon( $class, $space_after = false, $extra_attributes = array() ) {
177
-		$output = '';
178
-
179
-		if ( $class ) {
180
-			$classes = self::esc_classes( $class );
181
-			if ( ! empty( $classes ) ) {
182
-				$output = '<i class="' . $classes . '" ';
183
-				// extra attributes
184
-				if ( ! empty( $extra_attributes ) ) {
185
-					$output .= AUI_Component_Helper::extra_attributes( $extra_attributes );
186
-				}
187
-				$output .= '></i>';
188
-				if ( $space_after ) {
189
-					$output .= " ";
190
-				}
191
-			}
192
-		}
193
-
194
-		return $output;
195
-	}
196
-
197
-	/**
198
-	 * @param $args
199
-	 *
200
-	 * @return string
201
-	 */
202
-	public static function extra_attributes( $args ) {
203
-		$output = '';
204
-
205
-		if ( ! empty( $args ) ) {
206
-
207
-			if ( is_array( $args ) ) {
208
-				foreach ( $args as $key => $val ) {
209
-					$output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
210
-				}
211
-			} else {
212
-				$output .= ' ' . $args . ' ';
213
-			}
214
-
215
-		}
216
-
217
-		return $output;
218
-	}
219
-
220
-	/**
221
-	 * @param $args
222
-	 *
223
-	 * @return string
224
-	 */
225
-	public static function help_text( $text ) {
226
-		$output = '';
227
-
228
-		if ( $text ) {
229
-			$output .= '<small class="form-text text-muted">' . wp_kses_post( $text ) . '</small>';
230
-		}
231
-
232
-
233
-		return $output;
234
-	}
235
-
236
-	/**
237
-	 * Replace element require context with JS.
238
-	 *
239
-	 * @param $input
240
-	 *
241
-	 * @return string|void
242
-	 */
243
-	public static function element_require( $input ) {
244
-
245
-		$input = str_replace( "'", '"', $input );// we only want double quotes
246
-
247
-		$output = esc_attr( str_replace( array( "[%", "%]", "%:checked]" ), array(
248
-			"jQuery(form).find('[data-argument=\"",
249
-			"\"]').find('input,select,textarea').val()",
250
-			"\"]').find('input:checked').val()",
251
-		), $input ) );
252
-
253
-		if ( $output ) {
254
-			$output = ' data-element-require="' . $output . '" ';
255
-		}
256
-
257
-		return $output;
258
-	}
259
-
260
-	/**
261
-	 * Navigates through an array, object, or scalar, and removes slashes from the values.
262
-	 *
263
-	 * @since 0.1.41
264
-	 *
265
-	 * @param mixed $value The value to be stripped.
266
-	 * @param array $input Input Field.
267
-	 *
268
-	 * @return mixed Stripped value.
269
-	 */
270
-	public static function sanitize_html_field( $value, $input = array() ) {
271
-		$original = $value;
272
-
273
-		if ( is_array( $value ) ) {
274
-			foreach ( $value as $index => $item ) {
275
-				$value[ $index ] = self::_sanitize_html_field( $value, $input );
276
-			}
277
-		} elseif ( is_object( $value ) ) {
278
-			$object_vars = get_object_vars( $value );
279
-
280
-			foreach ( $object_vars as $property_name => $property_value ) {
281
-				$value->$property_name = self::_sanitize_html_field( $property_value, $input );
282
-			}
283
-		} else {
284
-			$value = self::_sanitize_html_field( $value, $input );
285
-		}
286
-
287
-		/**
288
-		 * Filters content and keeps only allowable HTML elements.
289
-		 *
290
-		 * @since 0.1.41
291
-		 *
292
-		 * @param string|array $value Content to filter through kses.
293
-		 * @param string|array $value Original content without filter.
294
-		 * @param array $input Input Field.
295
-		 */
296
-		return apply_filters( 'ayecode_ui_sanitize_html_field', $value, $original, $input );
297
-	}
298
-
299
-	/**
300
-	 * Filters content and keeps only allowable HTML elements.
301
-	 *
302
-	 * This function makes sure that only the allowed HTML element names, attribute
303
-	 * names and attribute values plus only sane HTML entities will occur in
304
-	 * $string. You have to remove any slashes from PHP's magic quotes before you
305
-	 * call this function.
306
-	 *
307
-	 * The default allowed protocols are 'http', 'https', 'ftp', 'mailto', 'news',
308
-	 * 'irc', 'gopher', 'nntp', 'feed', 'telnet, 'mms', 'rtsp' and 'svn'. This
309
-	 * covers all common link protocols, except for 'javascript' which should not
310
-	 * be allowed for untrusted users.
311
-	 *
312
-	 * @since 0.1.41
313
-	 *
314
-	 * @param string|array $value Content to filter through kses.
315
-	 * @param array $input Input Field.
316
-	 *
317
-	 * @return string Filtered content with only allowed HTML elements.
318
-	 */
319
-	public static function _sanitize_html_field( $value, $input = array() ) {
320
-		if ( $value === '' ) {
321
-			return $value;
322
-		}
323
-
324
-		$allowed_html = self::kses_allowed_html( 'post', $input );
325
-
326
-		if ( ! is_array( $allowed_html ) ) {
327
-			$allowed_html = wp_kses_allowed_html( 'post' );
328
-		}
329
-
330
-		$filtered = trim( wp_unslash( $value ) );
331
-		$filtered = wp_kses( $filtered, $allowed_html );
332
-		$filtered = balanceTags( $filtered ); // Balances tags
333
-
334
-		return $filtered;
335
-	}
336
-
337
-	/**
338
-	 * Returns an array of allowed HTML tags and attributes for a given context.
339
-	 *
340
-	 * @since 0.1.41
341
-	 *
342
-	 * @param string|array $context The context for which to retrieve tags. Allowed values are 'post',
343
-	 *                              'strip', 'data', 'entities', or the name of a field filter such as
344
-	 *                              'pre_user_description'.
345
-	 * @param array $input Input.
346
-	 *
347
-	 * @return array Array of allowed HTML tags and their allowed attributes.
348
-	 */
349
-	public static function kses_allowed_html( $context = 'post', $input = array() ) {
350
-		$allowed_html = wp_kses_allowed_html( $context );
351
-
352
-		if ( is_array( $allowed_html ) ) {
353
-			// <iframe>
354
-			if ( ! isset( $allowed_html['iframe'] ) && $context == 'post' ) {
355
-				$allowed_html['iframe'] = array(
356
-					'class'           => true,
357
-					'id'              => true,
358
-					'src'             => true,
359
-					'width'           => true,
360
-					'height'          => true,
361
-					'frameborder'     => true,
362
-					'marginwidth'     => true,
363
-					'marginheight'    => true,
364
-					'scrolling'       => true,
365
-					'style'           => true,
366
-					'title'           => true,
367
-					'allow'           => true,
368
-					'allowfullscreen' => true,
369
-					'data-*'          => true,
370
-				);
371
-			}
372
-		}
373
-
374
-		/**
375
-		 * Filters the allowed html tags.
376
-		 *
377
-		 * @since 0.1.41
378
-		 *
379
-		 * @param array[]|string $allowed_html Allowed html tags.
380
-		 * @param @param string|array $context The context for which to retrieve tags.
381
-		 * @param array $input Input field.
382
-		 */
383
-		return apply_filters( 'ayecode_ui_kses_allowed_html', $allowed_html, $context, $input );
384
-	}
385
-
386
-	public static function get_column_class( $label_number = 2, $type = 'label' ) {
387
-
388
-		$class = '';
389
-
390
-		// set default if empty
391
-		if( $label_number === '' ){
392
-			$label_number = 2;
393
-		}
394
-
395
-		if ( $label_number && $label_number < 12 && $label_number > 0 ) {
396
-			if ( $type == 'label' ) {
397
-				$class = 'col-sm-' . absint( $label_number );
398
-			} elseif ( $type == 'input' ) {
399
-				$class = 'col-sm-' . ( 12 - absint( $label_number ) );
400
-			}
401
-		}
402
-
403
-		return $class;
404
-	}
14
+    /**
15
+     * A component helper for generating a input name.
16
+     *
17
+     * @param $text
18
+     * @param $multiple bool If the name is set to be multiple but no brackets found then we add some.
19
+     *
20
+     * @return string
21
+     */
22
+    public static function name( $text, $multiple = false ) {
23
+        $output = '';
24
+
25
+        if ( $text ) {
26
+            $is_multiple = strpos( $text, '[' ) === false && $multiple ? '[]' : '';
27
+            $output      = ' name="' . esc_attr( $text ) . $is_multiple . '" ';
28
+        }
29
+
30
+        return $output;
31
+    }
32
+
33
+    /**
34
+     * A component helper for generating a item id.
35
+     *
36
+     * @param $text string The text to be used as the value.
37
+     *
38
+     * @return string The sanitized item.
39
+     */
40
+    public static function id( $text ) {
41
+        $output = '';
42
+
43
+        if ( $text ) {
44
+            $output = ' id="' . sanitize_html_class( $text ) . '" ';
45
+        }
46
+
47
+        return $output;
48
+    }
49
+
50
+    /**
51
+     * A component helper for generating a item title.
52
+     *
53
+     * @param $text string The text to be used as the value.
54
+     *
55
+     * @return string The sanitized item.
56
+     */
57
+    public static function title( $text ) {
58
+        $output = '';
59
+
60
+        if ( $text ) {
61
+            $output = ' title="' . esc_attr( $text ) . '" ';
62
+        }
63
+
64
+        return $output;
65
+    }
66
+
67
+    /**
68
+     * A component helper for generating a item value.
69
+     *
70
+     * @param $text string The text to be used as the value.
71
+     *
72
+     * @return string The sanitized item.
73
+     */
74
+    public static function value( $text ) {
75
+        $output = '';
76
+
77
+        if ( $text !== null && $text !== false ) {
78
+            $output = ' value="' . esc_attr( wp_unslash( $text ) ) . '" ';
79
+        }
80
+
81
+        return $output;
82
+    }
83
+
84
+    /**
85
+     * A component helper for generating a item class attribute.
86
+     *
87
+     * @param $text string The text to be used as the value.
88
+     *
89
+     * @return string The sanitized item.
90
+     */
91
+    public static function class_attr( $text ) {
92
+        $output = '';
93
+
94
+        if ( $text ) {
95
+            $classes = self::esc_classes( $text );
96
+            if ( ! empty( $classes ) ) {
97
+                $output = ' class="' . $classes . '" ';
98
+            }
99
+        }
100
+
101
+        return $output;
102
+    }
103
+
104
+    /**
105
+     * Escape a string of classes.
106
+     *
107
+     * @param $text
108
+     *
109
+     * @return string
110
+     */
111
+    public static function esc_classes( $text ) {
112
+        $output = '';
113
+
114
+        if ( $text ) {
115
+            $classes = explode( " ", $text );
116
+            $classes = array_map( "trim", $classes );
117
+            $classes = array_map( "sanitize_html_class", $classes );
118
+            if ( ! empty( $classes ) ) {
119
+                $output = implode( " ", $classes );
120
+            }
121
+        }
122
+
123
+        return $output;
124
+
125
+    }
126
+
127
+    /**
128
+     * @param $args
129
+     *
130
+     * @return string
131
+     */
132
+    public static function data_attributes( $args ) {
133
+        $output = '';
134
+
135
+        if ( ! empty( $args ) ) {
136
+
137
+            foreach ( $args as $key => $val ) {
138
+                if ( substr( $key, 0, 5 ) === "data-" ) {
139
+                    $output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
140
+                }
141
+            }
142
+        }
143
+
144
+        return $output;
145
+    }
146
+
147
+    /**
148
+     * @param $args
149
+     *
150
+     * @return string
151
+     */
152
+    public static function aria_attributes( $args ) {
153
+        $output = '';
154
+
155
+        if ( ! empty( $args ) ) {
156
+
157
+            foreach ( $args as $key => $val ) {
158
+                if ( substr( $key, 0, 5 ) === "aria-" ) {
159
+                    $output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
160
+                }
161
+            }
162
+        }
163
+
164
+        return $output;
165
+    }
166
+
167
+    /**
168
+     * Build a font awesome icon from a class.
169
+     *
170
+     * @param $class
171
+     * @param bool $space_after
172
+     * @param array $extra_attributes An array of extra attributes.
173
+     *
174
+     * @return string
175
+     */
176
+    public static function icon( $class, $space_after = false, $extra_attributes = array() ) {
177
+        $output = '';
178
+
179
+        if ( $class ) {
180
+            $classes = self::esc_classes( $class );
181
+            if ( ! empty( $classes ) ) {
182
+                $output = '<i class="' . $classes . '" ';
183
+                // extra attributes
184
+                if ( ! empty( $extra_attributes ) ) {
185
+                    $output .= AUI_Component_Helper::extra_attributes( $extra_attributes );
186
+                }
187
+                $output .= '></i>';
188
+                if ( $space_after ) {
189
+                    $output .= " ";
190
+                }
191
+            }
192
+        }
193
+
194
+        return $output;
195
+    }
196
+
197
+    /**
198
+     * @param $args
199
+     *
200
+     * @return string
201
+     */
202
+    public static function extra_attributes( $args ) {
203
+        $output = '';
204
+
205
+        if ( ! empty( $args ) ) {
206
+
207
+            if ( is_array( $args ) ) {
208
+                foreach ( $args as $key => $val ) {
209
+                    $output .= ' ' . sanitize_html_class( $key ) . '="' . esc_attr( $val ) . '" ';
210
+                }
211
+            } else {
212
+                $output .= ' ' . $args . ' ';
213
+            }
214
+
215
+        }
216
+
217
+        return $output;
218
+    }
219
+
220
+    /**
221
+     * @param $args
222
+     *
223
+     * @return string
224
+     */
225
+    public static function help_text( $text ) {
226
+        $output = '';
227
+
228
+        if ( $text ) {
229
+            $output .= '<small class="form-text text-muted">' . wp_kses_post( $text ) . '</small>';
230
+        }
231
+
232
+
233
+        return $output;
234
+    }
235
+
236
+    /**
237
+     * Replace element require context with JS.
238
+     *
239
+     * @param $input
240
+     *
241
+     * @return string|void
242
+     */
243
+    public static function element_require( $input ) {
244
+
245
+        $input = str_replace( "'", '"', $input );// we only want double quotes
246
+
247
+        $output = esc_attr( str_replace( array( "[%", "%]", "%:checked]" ), array(
248
+            "jQuery(form).find('[data-argument=\"",
249
+            "\"]').find('input,select,textarea').val()",
250
+            "\"]').find('input:checked').val()",
251
+        ), $input ) );
252
+
253
+        if ( $output ) {
254
+            $output = ' data-element-require="' . $output . '" ';
255
+        }
256
+
257
+        return $output;
258
+    }
259
+
260
+    /**
261
+     * Navigates through an array, object, or scalar, and removes slashes from the values.
262
+     *
263
+     * @since 0.1.41
264
+     *
265
+     * @param mixed $value The value to be stripped.
266
+     * @param array $input Input Field.
267
+     *
268
+     * @return mixed Stripped value.
269
+     */
270
+    public static function sanitize_html_field( $value, $input = array() ) {
271
+        $original = $value;
272
+
273
+        if ( is_array( $value ) ) {
274
+            foreach ( $value as $index => $item ) {
275
+                $value[ $index ] = self::_sanitize_html_field( $value, $input );
276
+            }
277
+        } elseif ( is_object( $value ) ) {
278
+            $object_vars = get_object_vars( $value );
279
+
280
+            foreach ( $object_vars as $property_name => $property_value ) {
281
+                $value->$property_name = self::_sanitize_html_field( $property_value, $input );
282
+            }
283
+        } else {
284
+            $value = self::_sanitize_html_field( $value, $input );
285
+        }
286
+
287
+        /**
288
+         * Filters content and keeps only allowable HTML elements.
289
+         *
290
+         * @since 0.1.41
291
+         *
292
+         * @param string|array $value Content to filter through kses.
293
+         * @param string|array $value Original content without filter.
294
+         * @param array $input Input Field.
295
+         */
296
+        return apply_filters( 'ayecode_ui_sanitize_html_field', $value, $original, $input );
297
+    }
298
+
299
+    /**
300
+     * Filters content and keeps only allowable HTML elements.
301
+     *
302
+     * This function makes sure that only the allowed HTML element names, attribute
303
+     * names and attribute values plus only sane HTML entities will occur in
304
+     * $string. You have to remove any slashes from PHP's magic quotes before you
305
+     * call this function.
306
+     *
307
+     * The default allowed protocols are 'http', 'https', 'ftp', 'mailto', 'news',
308
+     * 'irc', 'gopher', 'nntp', 'feed', 'telnet, 'mms', 'rtsp' and 'svn'. This
309
+     * covers all common link protocols, except for 'javascript' which should not
310
+     * be allowed for untrusted users.
311
+     *
312
+     * @since 0.1.41
313
+     *
314
+     * @param string|array $value Content to filter through kses.
315
+     * @param array $input Input Field.
316
+     *
317
+     * @return string Filtered content with only allowed HTML elements.
318
+     */
319
+    public static function _sanitize_html_field( $value, $input = array() ) {
320
+        if ( $value === '' ) {
321
+            return $value;
322
+        }
323
+
324
+        $allowed_html = self::kses_allowed_html( 'post', $input );
325
+
326
+        if ( ! is_array( $allowed_html ) ) {
327
+            $allowed_html = wp_kses_allowed_html( 'post' );
328
+        }
329
+
330
+        $filtered = trim( wp_unslash( $value ) );
331
+        $filtered = wp_kses( $filtered, $allowed_html );
332
+        $filtered = balanceTags( $filtered ); // Balances tags
333
+
334
+        return $filtered;
335
+    }
336
+
337
+    /**
338
+     * Returns an array of allowed HTML tags and attributes for a given context.
339
+     *
340
+     * @since 0.1.41
341
+     *
342
+     * @param string|array $context The context for which to retrieve tags. Allowed values are 'post',
343
+     *                              'strip', 'data', 'entities', or the name of a field filter such as
344
+     *                              'pre_user_description'.
345
+     * @param array $input Input.
346
+     *
347
+     * @return array Array of allowed HTML tags and their allowed attributes.
348
+     */
349
+    public static function kses_allowed_html( $context = 'post', $input = array() ) {
350
+        $allowed_html = wp_kses_allowed_html( $context );
351
+
352
+        if ( is_array( $allowed_html ) ) {
353
+            // <iframe>
354
+            if ( ! isset( $allowed_html['iframe'] ) && $context == 'post' ) {
355
+                $allowed_html['iframe'] = array(
356
+                    'class'           => true,
357
+                    'id'              => true,
358
+                    'src'             => true,
359
+                    'width'           => true,
360
+                    'height'          => true,
361
+                    'frameborder'     => true,
362
+                    'marginwidth'     => true,
363
+                    'marginheight'    => true,
364
+                    'scrolling'       => true,
365
+                    'style'           => true,
366
+                    'title'           => true,
367
+                    'allow'           => true,
368
+                    'allowfullscreen' => true,
369
+                    'data-*'          => true,
370
+                );
371
+            }
372
+        }
373
+
374
+        /**
375
+         * Filters the allowed html tags.
376
+         *
377
+         * @since 0.1.41
378
+         *
379
+         * @param array[]|string $allowed_html Allowed html tags.
380
+         * @param @param string|array $context The context for which to retrieve tags.
381
+         * @param array $input Input field.
382
+         */
383
+        return apply_filters( 'ayecode_ui_kses_allowed_html', $allowed_html, $context, $input );
384
+    }
385
+
386
+    public static function get_column_class( $label_number = 2, $type = 'label' ) {
387
+
388
+        $class = '';
389
+
390
+        // set default if empty
391
+        if( $label_number === '' ){
392
+            $label_number = 2;
393
+        }
394
+
395
+        if ( $label_number && $label_number < 12 && $label_number > 0 ) {
396
+            if ( $type == 'label' ) {
397
+                $class = 'col-sm-' . absint( $label_number );
398
+            } elseif ( $type == 'input' ) {
399
+                $class = 'col-sm-' . ( 12 - absint( $label_number ) );
400
+            }
401
+        }
402
+
403
+        return $class;
404
+    }
405 405
 }
406 406
\ No newline at end of file
Please login to merge, or discard this patch.
ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php 1 patch
Indentation   +1155 added lines, -1155 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit; // Exit if accessed directly
4
+    exit; // Exit if accessed directly
5 5
 }
6 6
 
7 7
 /**
@@ -11,1179 +11,1179 @@  discard block
 block discarded – undo
11 11
  */
12 12
 class AUI_Component_Input {
13 13
 
14
-	/**
15
-	 * Build the component.
16
-	 *
17
-	 * @param array $args
18
-	 *
19
-	 * @return string The rendered component.
20
-	 */
21
-	public static function input( $args = array() ) {
22
-		$defaults = array(
23
-			'type'                     => 'text',
24
-			'name'                     => '',
25
-			'class'                    => '',
26
-			'wrap_class'               => '',
27
-			'id'                       => '',
28
-			'placeholder'              => '',
29
-			'title'                    => '',
30
-			'value'                    => '',
31
-			'required'                 => false,
32
-			'label'                    => '',
33
-			'label_after'              => false,
34
-			'label_class'              => '',
35
-			'label_col'                => '2',
36
-			'label_type'               => '',
37
-			'label_force_left'         => false, // used to force checkbox label left when using horizontal
38
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
39
-			'help_text'                => '',
40
-			'validation_text'          => '',
41
-			'validation_pattern'       => '',
42
-			'no_wrap'                  => false,
43
-			'input_group_right'        => '',
44
-			'input_group_left'         => '',
45
-			'input_group_right_inside' => false,
46
-			// forces the input group inside the input
47
-			'input_group_left_inside'  => false,
48
-			// forces the input group inside the input
49
-			'step'                     => '',
50
-			'switch'                   => false,
51
-			// to show checkbox as a switch
52
-			'checked'                  => false,
53
-			// set a checkbox or radio as selected
54
-			'password_toggle'          => true,
55
-			// toggle view/hide password
56
-			'element_require'          => '',
57
-			// [%element_id%] == "1"
58
-			'extra_attributes'         => array(),
59
-			// an array of extra attributes
60
-			'wrap_attributes'          => array()
61
-		);
62
-
63
-		/**
64
-		 * Parse incoming $args into an array and merge it with $defaults
65
-		 */
66
-		$args   = wp_parse_args( $args, $defaults );
67
-		$output = '';
68
-		if ( ! empty( $args['type'] ) ) {
69
-			// hidden label option needs to be empty
70
-			$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
71
-
72
-			$type = sanitize_html_class( $args['type'] );
73
-
74
-			$help_text   = '';
75
-			$label       = '';
76
-			$label_after = $args['label_after'];
77
-			$label_args  = array(
78
-				'title'      => $args['label'],
79
-				'for'        => $args['id'],
80
-				'class'      => $args['label_class'] . " ",
81
-				'label_type' => $args['label_type'],
82
-				'label_col'  => $args['label_col']
83
-			);
84
-
85
-			// floating labels need label after
86
-			if ( $args['label_type'] == 'floating' && $type != 'checkbox' ) {
87
-				$label_after         = true;
88
-				$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
89
-			}
90
-
91
-			// Some special sauce for files
92
-			if ( $type == 'file' ) {
93
-				$label_after = true; // if type file we need the label after
94
-				$args['class'] .= ' custom-file-input ';
95
-			} elseif ( $type == 'checkbox' ) {
96
-				$label_after = true; // if type file we need the label after
97
-				$args['class'] .= ' custom-control-input ';
98
-			} elseif ( $type == 'datepicker' || $type == 'timepicker' ) {
99
-				$type = 'text';
100
-				//$args['class'] .= ' aui-flatpickr bg-initial ';
101
-				$args['class'] .= ' bg-initial ';
102
-
103
-				$args['extra_attributes']['data-aui-init'] = 'flatpickr';
104
-				// enqueue the script
105
-				$aui_settings = AyeCode_UI_Settings::instance();
106
-				$aui_settings->enqueue_flatpickr();
107
-			} elseif ( $type == 'iconpicker' ) {
108
-				$type = 'text';
109
-				//$args['class'] .= ' aui-flatpickr bg-initial ';
14
+    /**
15
+     * Build the component.
16
+     *
17
+     * @param array $args
18
+     *
19
+     * @return string The rendered component.
20
+     */
21
+    public static function input( $args = array() ) {
22
+        $defaults = array(
23
+            'type'                     => 'text',
24
+            'name'                     => '',
25
+            'class'                    => '',
26
+            'wrap_class'               => '',
27
+            'id'                       => '',
28
+            'placeholder'              => '',
29
+            'title'                    => '',
30
+            'value'                    => '',
31
+            'required'                 => false,
32
+            'label'                    => '',
33
+            'label_after'              => false,
34
+            'label_class'              => '',
35
+            'label_col'                => '2',
36
+            'label_type'               => '',
37
+            'label_force_left'         => false, // used to force checkbox label left when using horizontal
38
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
39
+            'help_text'                => '',
40
+            'validation_text'          => '',
41
+            'validation_pattern'       => '',
42
+            'no_wrap'                  => false,
43
+            'input_group_right'        => '',
44
+            'input_group_left'         => '',
45
+            'input_group_right_inside' => false,
46
+            // forces the input group inside the input
47
+            'input_group_left_inside'  => false,
48
+            // forces the input group inside the input
49
+            'step'                     => '',
50
+            'switch'                   => false,
51
+            // to show checkbox as a switch
52
+            'checked'                  => false,
53
+            // set a checkbox or radio as selected
54
+            'password_toggle'          => true,
55
+            // toggle view/hide password
56
+            'element_require'          => '',
57
+            // [%element_id%] == "1"
58
+            'extra_attributes'         => array(),
59
+            // an array of extra attributes
60
+            'wrap_attributes'          => array()
61
+        );
62
+
63
+        /**
64
+         * Parse incoming $args into an array and merge it with $defaults
65
+         */
66
+        $args   = wp_parse_args( $args, $defaults );
67
+        $output = '';
68
+        if ( ! empty( $args['type'] ) ) {
69
+            // hidden label option needs to be empty
70
+            $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
71
+
72
+            $type = sanitize_html_class( $args['type'] );
73
+
74
+            $help_text   = '';
75
+            $label       = '';
76
+            $label_after = $args['label_after'];
77
+            $label_args  = array(
78
+                'title'      => $args['label'],
79
+                'for'        => $args['id'],
80
+                'class'      => $args['label_class'] . " ",
81
+                'label_type' => $args['label_type'],
82
+                'label_col'  => $args['label_col']
83
+            );
84
+
85
+            // floating labels need label after
86
+            if ( $args['label_type'] == 'floating' && $type != 'checkbox' ) {
87
+                $label_after         = true;
88
+                $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
89
+            }
90
+
91
+            // Some special sauce for files
92
+            if ( $type == 'file' ) {
93
+                $label_after = true; // if type file we need the label after
94
+                $args['class'] .= ' custom-file-input ';
95
+            } elseif ( $type == 'checkbox' ) {
96
+                $label_after = true; // if type file we need the label after
97
+                $args['class'] .= ' custom-control-input ';
98
+            } elseif ( $type == 'datepicker' || $type == 'timepicker' ) {
99
+                $type = 'text';
100
+                //$args['class'] .= ' aui-flatpickr bg-initial ';
101
+                $args['class'] .= ' bg-initial ';
102
+
103
+                $args['extra_attributes']['data-aui-init'] = 'flatpickr';
104
+                // enqueue the script
105
+                $aui_settings = AyeCode_UI_Settings::instance();
106
+                $aui_settings->enqueue_flatpickr();
107
+            } elseif ( $type == 'iconpicker' ) {
108
+                $type = 'text';
109
+                //$args['class'] .= ' aui-flatpickr bg-initial ';
110 110
 //				$args['class'] .= ' bg-initial ';
111 111
 
112
-				$args['extra_attributes']['data-aui-init'] = 'iconpicker';
113
-				$args['extra_attributes']['data-placement'] = 'bottomRight';
112
+                $args['extra_attributes']['data-aui-init'] = 'iconpicker';
113
+                $args['extra_attributes']['data-placement'] = 'bottomRight';
114 114
 
115
-				$args['input_group_right'] = '<span class="input-group-addon input-group-text c-pointer"></span>';
115
+                $args['input_group_right'] = '<span class="input-group-addon input-group-text c-pointer"></span>';
116 116
 //				$args['input_group_right_inside'] = true;
117
-				// enqueue the script
118
-				$aui_settings = AyeCode_UI_Settings::instance();
119
-				$aui_settings->enqueue_iconpicker();
120
-			}
121
-
122
-			if ( $type == 'checkbox' && !empty($args['name'] ) && strpos($args['name'], '[') === false ) {
123
-				$output .= '<input type="hidden" name="' . esc_attr( $args['name'] ) . '" value="0" />';
124
-			}
125
-
126
-
127
-			// open/type
128
-			$output .= '<input type="' . $type . '" ';
129
-
130
-			// name
131
-			if ( ! empty( $args['name'] ) ) {
132
-				$output .= ' name="' . esc_attr( $args['name'] ) . '" ';
133
-			}
134
-
135
-			// id
136
-			if ( ! empty( $args['id'] ) ) {
137
-				$output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
138
-			}
139
-
140
-			// placeholder
141
-			if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
142
-				$output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
143
-			}
144
-
145
-			// title
146
-			if ( ! empty( $args['title'] ) ) {
147
-				$output .= ' title="' . esc_attr( $args['title'] ) . '" ';
148
-			}
149
-
150
-			// value
151
-			if ( ! empty( $args['value'] ) ) {
152
-				$output .= AUI_Component_Helper::value( $args['value'] );
153
-			}
154
-
155
-			// checked, for radio and checkboxes
156
-			if ( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ) {
157
-				$output .= ' checked ';
158
-			}
159
-
160
-			// validation text
161
-			if ( ! empty( $args['validation_text'] ) ) {
162
-				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
163
-				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
164
-			}
165
-
166
-			// validation_pattern
167
-			if ( ! empty( $args['validation_pattern'] ) ) {
168
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
169
-			}
170
-
171
-			// step (for numbers)
172
-			if ( ! empty( $args['step'] ) ) {
173
-				$output .= ' step="' . $args['step'] . '" ';
174
-			}
175
-
176
-			// required
177
-			if ( ! empty( $args['required'] ) ) {
178
-				$output .= ' required ';
179
-			}
180
-
181
-			// class
182
-			$class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
183
-			$output .= ' class="form-control ' . $class . '" ';
184
-
185
-			// data-attributes
186
-			$output .= AUI_Component_Helper::data_attributes( $args );
187
-
188
-			// extra attributes
189
-			if ( ! empty( $args['extra_attributes'] ) ) {
190
-				$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
191
-			}
192
-
193
-			// close
194
-			$output .= ' >';
195
-
196
-			// help text
197
-			if ( ! empty( $args['help_text'] ) ) {
198
-				$help_text = AUI_Component_Helper::help_text( $args['help_text'] );
199
-			}
200
-
201
-			// label
202
-			if ( ! empty( $args['label'] ) ) {
203
-				$label_base_class = '';
204
-				if ( $type == 'file' ) {
205
-					$label_base_class = ' custom-file-label';
206
-				} elseif ( $type == 'checkbox' ) {
207
-					if ( ! empty( $args['label_force_left'] ) ) {
208
-						$label_args['title'] = wp_kses_post( $args['help_text'] );
209
-						$help_text = '';
210
-						//$label_args['class'] .= ' d-inline ';
211
-						$args['wrap_class'] .= ' align-items-center ';
212
-					}else{
213
-
214
-					}
215
-
216
-					$label_base_class = ' custom-control-label';
217
-				}
218
-				$label_args['class'] .= $label_base_class;
219
-				$temp_label_args = $label_args;
220
-				if(! empty( $args['label_force_left'] )){$temp_label_args['class'] = $label_base_class." text-muted";}
221
-				$label = self::label( $temp_label_args, $type );
222
-			}
223
-
224
-
225
-
226
-
227
-			// set help text in the correct position
228
-			if ( $label_after ) {
229
-				$output .= $label . $help_text;
230
-			}
231
-
232
-			// some input types need a separate wrap
233
-			if ( $type == 'file' ) {
234
-				$output = self::wrap( array(
235
-					'content' => $output,
236
-					'class'   => 'form-group custom-file'
237
-				) );
238
-			} elseif ( $type == 'checkbox' ) {
239
-
240
-				$label_args['title'] = $args['label'];
241
-				$label_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'label' );
242
-				$label = !empty( $args['label_force_left'] ) ? self::label( $label_args, 'cb' ) : '<div class="' . $label_col . ' col-form-label"></div>';
243
-				$switch_size_class = $args['switch'] && !is_bool( $args['switch'] ) ? ' custom-switch-'.esc_attr( $args['switch'] ) : '';
244
-				$wrap_class = $args['switch'] ? 'custom-switch'.$switch_size_class : 'custom-checkbox';
245
-				if ( ! empty( $args['label_force_left'] ) ) {
246
-					$wrap_class .= ' d-flex align-content-center';
247
-					$label = str_replace("custom-control-label","", self::label( $label_args, 'cb' ) );
248
-				}
249
-				$output     = self::wrap( array(
250
-					'content' => $output,
251
-					'class'   => 'custom-control ' . $wrap_class
252
-				) );
253
-
254
-				if ( $args['label_type'] == 'horizontal' ) {
255
-					$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
256
-					$output    = $label . '<div class="' . $input_col . '">' . $output . '</div>';
257
-				}
258
-			} elseif ( $type == 'password' && $args['password_toggle'] && ! $args['input_group_right'] ) {
259
-
260
-
261
-				// allow password field to toggle view
262
-				$args['input_group_right'] = '<span class="input-group-text c-pointer px-3" 
117
+                // enqueue the script
118
+                $aui_settings = AyeCode_UI_Settings::instance();
119
+                $aui_settings->enqueue_iconpicker();
120
+            }
121
+
122
+            if ( $type == 'checkbox' && !empty($args['name'] ) && strpos($args['name'], '[') === false ) {
123
+                $output .= '<input type="hidden" name="' . esc_attr( $args['name'] ) . '" value="0" />';
124
+            }
125
+
126
+
127
+            // open/type
128
+            $output .= '<input type="' . $type . '" ';
129
+
130
+            // name
131
+            if ( ! empty( $args['name'] ) ) {
132
+                $output .= ' name="' . esc_attr( $args['name'] ) . '" ';
133
+            }
134
+
135
+            // id
136
+            if ( ! empty( $args['id'] ) ) {
137
+                $output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
138
+            }
139
+
140
+            // placeholder
141
+            if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
142
+                $output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
143
+            }
144
+
145
+            // title
146
+            if ( ! empty( $args['title'] ) ) {
147
+                $output .= ' title="' . esc_attr( $args['title'] ) . '" ';
148
+            }
149
+
150
+            // value
151
+            if ( ! empty( $args['value'] ) ) {
152
+                $output .= AUI_Component_Helper::value( $args['value'] );
153
+            }
154
+
155
+            // checked, for radio and checkboxes
156
+            if ( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ) {
157
+                $output .= ' checked ';
158
+            }
159
+
160
+            // validation text
161
+            if ( ! empty( $args['validation_text'] ) ) {
162
+                $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
163
+                $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
164
+            }
165
+
166
+            // validation_pattern
167
+            if ( ! empty( $args['validation_pattern'] ) ) {
168
+                $output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
169
+            }
170
+
171
+            // step (for numbers)
172
+            if ( ! empty( $args['step'] ) ) {
173
+                $output .= ' step="' . $args['step'] . '" ';
174
+            }
175
+
176
+            // required
177
+            if ( ! empty( $args['required'] ) ) {
178
+                $output .= ' required ';
179
+            }
180
+
181
+            // class
182
+            $class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
183
+            $output .= ' class="form-control ' . $class . '" ';
184
+
185
+            // data-attributes
186
+            $output .= AUI_Component_Helper::data_attributes( $args );
187
+
188
+            // extra attributes
189
+            if ( ! empty( $args['extra_attributes'] ) ) {
190
+                $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
191
+            }
192
+
193
+            // close
194
+            $output .= ' >';
195
+
196
+            // help text
197
+            if ( ! empty( $args['help_text'] ) ) {
198
+                $help_text = AUI_Component_Helper::help_text( $args['help_text'] );
199
+            }
200
+
201
+            // label
202
+            if ( ! empty( $args['label'] ) ) {
203
+                $label_base_class = '';
204
+                if ( $type == 'file' ) {
205
+                    $label_base_class = ' custom-file-label';
206
+                } elseif ( $type == 'checkbox' ) {
207
+                    if ( ! empty( $args['label_force_left'] ) ) {
208
+                        $label_args['title'] = wp_kses_post( $args['help_text'] );
209
+                        $help_text = '';
210
+                        //$label_args['class'] .= ' d-inline ';
211
+                        $args['wrap_class'] .= ' align-items-center ';
212
+                    }else{
213
+
214
+                    }
215
+
216
+                    $label_base_class = ' custom-control-label';
217
+                }
218
+                $label_args['class'] .= $label_base_class;
219
+                $temp_label_args = $label_args;
220
+                if(! empty( $args['label_force_left'] )){$temp_label_args['class'] = $label_base_class." text-muted";}
221
+                $label = self::label( $temp_label_args, $type );
222
+            }
223
+
224
+
225
+
226
+
227
+            // set help text in the correct position
228
+            if ( $label_after ) {
229
+                $output .= $label . $help_text;
230
+            }
231
+
232
+            // some input types need a separate wrap
233
+            if ( $type == 'file' ) {
234
+                $output = self::wrap( array(
235
+                    'content' => $output,
236
+                    'class'   => 'form-group custom-file'
237
+                ) );
238
+            } elseif ( $type == 'checkbox' ) {
239
+
240
+                $label_args['title'] = $args['label'];
241
+                $label_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'label' );
242
+                $label = !empty( $args['label_force_left'] ) ? self::label( $label_args, 'cb' ) : '<div class="' . $label_col . ' col-form-label"></div>';
243
+                $switch_size_class = $args['switch'] && !is_bool( $args['switch'] ) ? ' custom-switch-'.esc_attr( $args['switch'] ) : '';
244
+                $wrap_class = $args['switch'] ? 'custom-switch'.$switch_size_class : 'custom-checkbox';
245
+                if ( ! empty( $args['label_force_left'] ) ) {
246
+                    $wrap_class .= ' d-flex align-content-center';
247
+                    $label = str_replace("custom-control-label","", self::label( $label_args, 'cb' ) );
248
+                }
249
+                $output     = self::wrap( array(
250
+                    'content' => $output,
251
+                    'class'   => 'custom-control ' . $wrap_class
252
+                ) );
253
+
254
+                if ( $args['label_type'] == 'horizontal' ) {
255
+                    $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
256
+                    $output    = $label . '<div class="' . $input_col . '">' . $output . '</div>';
257
+                }
258
+            } elseif ( $type == 'password' && $args['password_toggle'] && ! $args['input_group_right'] ) {
259
+
260
+
261
+                // allow password field to toggle view
262
+                $args['input_group_right'] = '<span class="input-group-text c-pointer px-3" 
263 263
 onclick="var $el = jQuery(this).find(\'i\');$el.toggleClass(\'fa-eye fa-eye-slash\');
264 264
 var $eli = jQuery(this).parent().parent().find(\'input\');
265 265
 if($el.hasClass(\'fa-eye\'))
266 266
 {$eli.attr(\'type\',\'text\');}
267 267
 else{$eli.attr(\'type\',\'password\');}"
268 268
 ><i class="far fa-fw fa-eye-slash"></i></span>';
269
-			}
270
-
271
-			// input group wraps
272
-			if ( $args['input_group_left'] || $args['input_group_right'] ) {
273
-				$w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
274
-				if ( $args['input_group_left'] ) {
275
-					$output = self::wrap( array(
276
-						'content'                 => $output,
277
-						'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
278
-						'input_group_left'        => $args['input_group_left'],
279
-						'input_group_left_inside' => $args['input_group_left_inside']
280
-					) );
281
-				}
282
-				if ( $args['input_group_right'] ) {
283
-					$output = self::wrap( array(
284
-						'content'                  => $output,
285
-						'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
286
-						'input_group_right'        => $args['input_group_right'],
287
-						'input_group_right_inside' => $args['input_group_right_inside']
288
-					) );
289
-				}
290
-
291
-			}
292
-
293
-			if ( ! $label_after ) {
294
-				$output .= $help_text;
295
-			}
296
-
297
-
298
-			if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
299
-				$output = self::wrap( array(
300
-					'content' => $output,
301
-					'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
302
-				) );
303
-			}
304
-
305
-			if ( ! $label_after ) {
306
-				$output = $label . $output;
307
-			}
308
-
309
-			// wrap
310
-			if ( ! $args['no_wrap'] ) {
311
-				$form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
312
-				$wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
313
-				$wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
314
-				$output           = self::wrap( array(
315
-					'content'         => $output,
316
-					'class'           => $wrap_class,
317
-					'element_require' => $args['element_require'],
318
-					'argument_id'     => $args['id'],
319
-					'wrap_attributes' => $args['wrap_attributes'],
320
-				) );
321
-			}
322
-		}
323
-
324
-		return $output;
325
-	}
326
-
327
-	public static function label( $args = array(), $type = '' ) {
328
-		//<label for="exampleInputEmail1">Email address</label>
329
-		$defaults = array(
330
-			'title'      => 'div',
331
-			'for'        => '',
332
-			'class'      => '',
333
-			'label_type' => '', // empty = hidden, top, horizontal
334
-			'label_col'  => '',
335
-		);
336
-
337
-		/**
338
-		 * Parse incoming $args into an array and merge it with $defaults
339
-		 */
340
-		$args   = wp_parse_args( $args, $defaults );
341
-		$output = '';
342
-
343
-		if ( $args['title'] ) {
344
-
345
-			// maybe hide labels //@todo set a global option for visibility class
346
-			if ( $type == 'file' || $type == 'checkbox' || $type == 'radio' || ! empty( $args['label_type'] ) ) {
347
-				$class = $args['class'];
348
-			} else {
349
-				$class = 'sr-only ' . $args['class'];
350
-			}
351
-
352
-			// maybe horizontal
353
-			if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
354
-				$class .= ' ' . AUI_Component_Helper::get_column_class( $args['label_col'], 'label' ) . ' col-form-label';
355
-			}
356
-
357
-			// open
358
-			$output .= '<label ';
359
-
360
-			// for
361
-			if ( ! empty( $args['for'] ) ) {
362
-				$output .= ' for="' . esc_attr( $args['for'] ) . '" ';
363
-			}
364
-
365
-			// class
366
-			$class = $class ? AUI_Component_Helper::esc_classes( $class ) : '';
367
-			$output .= ' class="' . $class . '" ';
368
-
369
-			// close
370
-			$output .= '>';
371
-
372
-
373
-			// title, don't escape fully as can contain html
374
-			if ( ! empty( $args['title'] ) ) {
375
-				$output .= wp_kses_post( $args['title'] );
376
-			}
377
-
378
-			// close wrap
379
-			$output .= '</label>';
380
-
381
-
382
-		}
383
-
384
-
385
-		return $output;
386
-	}
387
-
388
-	/**
389
-	 * Wrap some content in a HTML wrapper.
390
-	 *
391
-	 * @param array $args
392
-	 *
393
-	 * @return string
394
-	 */
395
-	public static function wrap( $args = array() ) {
396
-		$defaults = array(
397
-			'type'                     => 'div',
398
-			'class'                    => 'form-group',
399
-			'content'                  => '',
400
-			'input_group_left'         => '',
401
-			'input_group_right'        => '',
402
-			'input_group_left_inside'  => false,
403
-			'input_group_right_inside' => false,
404
-			'element_require'          => '',
405
-			'argument_id'              => '',
406
-			'wrap_attributes'          => array()
407
-		);
408
-
409
-		/**
410
-		 * Parse incoming $args into an array and merge it with $defaults
411
-		 */
412
-		$args   = wp_parse_args( $args, $defaults );
413
-		$output = '';
414
-		if ( $args['type'] ) {
415
-
416
-			// open
417
-			$output .= '<' . sanitize_html_class( $args['type'] );
418
-
419
-			// element require
420
-			if ( ! empty( $args['element_require'] ) ) {
421
-				$output .= AUI_Component_Helper::element_require( $args['element_require'] );
422
-				$args['class'] .= " aui-conditional-field";
423
-			}
424
-
425
-			// argument_id
426
-			if ( ! empty( $args['argument_id'] ) ) {
427
-				$output .= ' data-argument="' . esc_attr( $args['argument_id'] ) . '"';
428
-			}
429
-
430
-			// class
431
-			$class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
432
-			$output .= ' class="' . $class . '" ';
433
-
434
-			// Attributes
435
-			if ( ! empty( $args['wrap_attributes'] ) ) {
436
-				$output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] );
437
-			}
438
-
439
-			// close wrap
440
-			$output .= ' >';
441
-
442
-
443
-			// Input group left
444
-			if ( ! empty( $args['input_group_left'] ) ) {
445
-				$position_class   = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
446
-				$input_group_left = strpos( $args['input_group_left'], '<' ) !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>';
447
-				$output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>';
448
-			}
449
-
450
-			// content
451
-			$output .= $args['content'];
452
-
453
-			// Input group right
454
-			if ( ! empty( $args['input_group_right'] ) ) {
455
-				$position_class    = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
456
-				$input_group_right = strpos( $args['input_group_right'], '<' ) !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>';
457
-				$output .= '<div class="input-group-append ' . $position_class . '">' . $input_group_right . '</div>';
458
-			}
459
-
460
-
461
-			// close wrap
462
-			$output .= '</' . sanitize_html_class( $args['type'] ) . '>';
463
-
464
-
465
-		} else {
466
-			$output = $args['content'];
467
-		}
468
-
469
-		return $output;
470
-	}
471
-
472
-	/**
473
-	 * Build the component.
474
-	 *
475
-	 * @param array $args
476
-	 *
477
-	 * @return string The rendered component.
478
-	 */
479
-	public static function textarea( $args = array() ) {
480
-		$defaults = array(
481
-			'name'               => '',
482
-			'class'              => '',
483
-			'wrap_class'         => '',
484
-			'id'                 => '',
485
-			'placeholder'        => '',
486
-			'title'              => '',
487
-			'value'              => '',
488
-			'required'           => false,
489
-			'label'              => '',
490
-			'label_after'        => false,
491
-			'label_class'        => '',
492
-			'label_type'         => '',
493
-			'label_col'          => '',
494
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
495
-			'help_text'          => '',
496
-			'validation_text'    => '',
497
-			'validation_pattern' => '',
498
-			'no_wrap'            => false,
499
-			'rows'               => '',
500
-			'wysiwyg'            => false,
501
-			'allow_tags'         => false,
502
-			// Allow HTML tags
503
-			'element_require'    => '',
504
-			// [%element_id%] == "1"
505
-			'extra_attributes'   => array(),
506
-			// an array of extra attributes
507
-			'wrap_attributes'    => array(),
508
-		);
509
-
510
-		/**
511
-		 * Parse incoming $args into an array and merge it with $defaults
512
-		 */
513
-		$args   = wp_parse_args( $args, $defaults );
514
-		$output = '';
515
-
516
-		// hidden label option needs to be empty
517
-		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
518
-
519
-		// floating labels don't work with wysiwyg so set it as top
520
-		if ( $args['label_type'] == 'floating' && ! empty( $args['wysiwyg'] ) ) {
521
-			$args['label_type'] = 'top';
522
-		}
523
-
524
-		$label_after = $args['label_after'];
525
-
526
-		// floating labels need label after
527
-		if ( $args['label_type'] == 'floating' && empty( $args['wysiwyg'] ) ) {
528
-			$label_after         = true;
529
-			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
530
-		}
531
-
532
-		// label
533
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
534
-		} elseif ( ! empty( $args['label'] ) && ! $label_after ) {
535
-			$label_args = array(
536
-				'title'      => $args['label'],
537
-				'for'        => $args['id'],
538
-				'class'      => $args['label_class'] . " ",
539
-				'label_type' => $args['label_type'],
540
-				'label_col'  => $args['label_col']
541
-			);
542
-			$output .= self::label( $label_args );
543
-		}
544
-
545
-		// maybe horizontal label
546
-		if ( $args['label_type'] == 'horizontal' ) {
547
-			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
548
-			$output .= '<div class="' . $input_col . '">';
549
-		}
550
-
551
-		if ( ! empty( $args['wysiwyg'] ) ) {
552
-			ob_start();
553
-			$content   = $args['value'];
554
-			$editor_id = ! empty( $args['id'] ) ? sanitize_html_class( $args['id'] ) : 'wp_editor';
555
-			$settings  = array(
556
-				'textarea_rows' => ! empty( absint( $args['rows'] ) ) ? absint( $args['rows'] ) : 4,
557
-				'quicktags'     => false,
558
-				'media_buttons' => false,
559
-				'editor_class'  => 'form-control',
560
-				'textarea_name' => ! empty( $args['name'] ) ? sanitize_html_class( $args['name'] ) : sanitize_html_class( $args['id'] ),
561
-				'teeny'         => true,
562
-			);
563
-
564
-			// maybe set settings if array
565
-			if ( is_array( $args['wysiwyg'] ) ) {
566
-				$settings = wp_parse_args( $args['wysiwyg'], $settings );
567
-			}
568
-
569
-			wp_editor( $content, $editor_id, $settings );
570
-			$output .= ob_get_clean();
571
-		} else {
572
-
573
-			// open
574
-			$output .= '<textarea ';
575
-
576
-			// name
577
-			if ( ! empty( $args['name'] ) ) {
578
-				$output .= ' name="' . esc_attr( $args['name'] ) . '" ';
579
-			}
580
-
581
-			// id
582
-			if ( ! empty( $args['id'] ) ) {
583
-				$output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
584
-			}
585
-
586
-			// placeholder
587
-			if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
588
-				$output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
589
-			}
590
-
591
-			// title
592
-			if ( ! empty( $args['title'] ) ) {
593
-				$output .= ' title="' . esc_attr( $args['title'] ) . '" ';
594
-			}
595
-
596
-			// validation text
597
-			if ( ! empty( $args['validation_text'] ) ) {
598
-				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
599
-				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
600
-			}
601
-
602
-			// validation_pattern
603
-			if ( ! empty( $args['validation_pattern'] ) ) {
604
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
605
-			}
606
-
607
-			// required
608
-			if ( ! empty( $args['required'] ) ) {
609
-				$output .= ' required ';
610
-			}
611
-
612
-			// rows
613
-			if ( ! empty( $args['rows'] ) ) {
614
-				$output .= ' rows="' . absint( $args['rows'] ) . '" ';
615
-			}
616
-
617
-
618
-			// class
619
-			$class = ! empty( $args['class'] ) ? $args['class'] : '';
620
-			$output .= ' class="form-control ' . $class . '" ';
621
-
622
-			// extra attributes
623
-			if ( ! empty( $args['extra_attributes'] ) ) {
624
-				$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
625
-			}
626
-
627
-			// close tag
628
-			$output .= ' >';
629
-
630
-			// value
631
-			if ( ! empty( $args['value'] ) ) {
632
-				if ( ! empty( $args['allow_tags'] ) ) {
633
-					$output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML.
634
-				} else {
635
-					$output .= sanitize_textarea_field( $args['value'] );
636
-				}
637
-			}
638
-
639
-			// closing tag
640
-			$output .= '</textarea>';
641
-
642
-		}
643
-
644
-		if ( ! empty( $args['label'] ) && $label_after ) {
645
-			$label_args = array(
646
-				'title'      => $args['label'],
647
-				'for'        => $args['id'],
648
-				'class'      => $args['label_class'] . " ",
649
-				'label_type' => $args['label_type'],
650
-				'label_col'  => $args['label_col']
651
-			);
652
-			$output .= self::label( $label_args );
653
-		}
654
-
655
-		// help text
656
-		if ( ! empty( $args['help_text'] ) ) {
657
-			$output .= AUI_Component_Helper::help_text( $args['help_text'] );
658
-		}
659
-
660
-		// maybe horizontal label
661
-		if ( $args['label_type'] == 'horizontal' ) {
662
-			$output .= '</div>';
663
-		}
664
-
665
-
666
-		// wrap
667
-		if ( ! $args['no_wrap'] ) {
668
-			$form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group';
669
-			$wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
670
-			$wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
671
-			$output           = self::wrap( array(
672
-				'content'         => $output,
673
-				'class'           => $wrap_class,
674
-				'element_require' => $args['element_require'],
675
-				'argument_id'     => $args['id'],
676
-				'wrap_attributes' => $args['wrap_attributes'],
677
-			) );
678
-		}
679
-
680
-
681
-		return $output;
682
-	}
683
-
684
-	/**
685
-	 * Build the component.
686
-	 *
687
-	 * @param array $args
688
-	 *
689
-	 * @return string The rendered component.
690
-	 */
691
-	public static function select( $args = array() ) {
692
-		$defaults = array(
693
-			'class'            => '',
694
-			'wrap_class'       => '',
695
-			'id'               => '',
696
-			'title'            => '',
697
-			'value'            => '',
698
-			// can be an array or a string
699
-			'required'         => false,
700
-			'label'            => '',
701
-			'label_after'      => false,
702
-			'label_type'       => '',
703
-			'label_col'        => '',
704
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
705
-			'label_class'      => '',
706
-			'help_text'        => '',
707
-			'placeholder'      => '',
708
-			'options'          => array(),
709
-			// array or string
710
-			'icon'             => '',
711
-			'multiple'         => false,
712
-			'select2'          => false,
713
-			'no_wrap'          => false,
714
-			'input_group_right' => '',
715
-			'input_group_left' => '',
716
-			'input_group_right_inside' => false, // forces the input group inside the input
717
-			'input_group_left_inside' => false, // forces the input group inside the input
718
-			'element_require'  => '',
719
-			// [%element_id%] == "1"
720
-			'extra_attributes' => array(),
721
-			// an array of extra attributes
722
-			'wrap_attributes'  => array(),
723
-		);
724
-
725
-		/**
726
-		 * Parse incoming $args into an array and merge it with $defaults
727
-		 */
728
-		$args   = wp_parse_args( $args, $defaults );
729
-		$output = '';
730
-
731
-		// for now lets hide floating labels
732
-		if ( $args['label_type'] == 'floating' ) {
733
-			$args['label_type'] = 'hidden';
734
-		}
735
-
736
-		// hidden label option needs to be empty
737
-		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
738
-
739
-
740
-		$label_after = $args['label_after'];
741
-
742
-		// floating labels need label after
743
-		if ( $args['label_type'] == 'floating' ) {
744
-			$label_after         = true;
745
-			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
746
-		}
747
-
748
-		// Maybe setup select2
749
-		$is_select2 = false;
750
-		if ( ! empty( $args['select2'] ) ) {
751
-			$args['class'] .= ' aui-select2';
752
-			$is_select2 = true;
753
-		} elseif ( strpos( $args['class'], 'aui-select2' ) !== false ) {
754
-			$is_select2 = true;
755
-		}
756
-
757
-		// select2 tags
758
-		if ( ! empty( $args['select2'] ) && $args['select2'] === 'tags' ) { // triple equals needed here for some reason
759
-			$args['data-tags']             = 'true';
760
-			$args['data-token-separators'] = "[',']";
761
-			$args['multiple']              = true;
762
-		}
763
-
764
-		// select2 placeholder
765
-		if ( $is_select2 && isset( $args['placeholder'] ) && '' != $args['placeholder'] && empty( $args['data-placeholder'] ) ) {
766
-			$args['data-placeholder'] = esc_attr( $args['placeholder'] );
767
-			$args['data-allow-clear'] = isset( $args['data-allow-clear'] ) ? (bool) $args['data-allow-clear'] : true;
768
-		}
769
-
770
-
771
-
772
-		// maybe horizontal label
269
+            }
270
+
271
+            // input group wraps
272
+            if ( $args['input_group_left'] || $args['input_group_right'] ) {
273
+                $w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
274
+                if ( $args['input_group_left'] ) {
275
+                    $output = self::wrap( array(
276
+                        'content'                 => $output,
277
+                        'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
278
+                        'input_group_left'        => $args['input_group_left'],
279
+                        'input_group_left_inside' => $args['input_group_left_inside']
280
+                    ) );
281
+                }
282
+                if ( $args['input_group_right'] ) {
283
+                    $output = self::wrap( array(
284
+                        'content'                  => $output,
285
+                        'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
286
+                        'input_group_right'        => $args['input_group_right'],
287
+                        'input_group_right_inside' => $args['input_group_right_inside']
288
+                    ) );
289
+                }
290
+
291
+            }
292
+
293
+            if ( ! $label_after ) {
294
+                $output .= $help_text;
295
+            }
296
+
297
+
298
+            if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
299
+                $output = self::wrap( array(
300
+                    'content' => $output,
301
+                    'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
302
+                ) );
303
+            }
304
+
305
+            if ( ! $label_after ) {
306
+                $output = $label . $output;
307
+            }
308
+
309
+            // wrap
310
+            if ( ! $args['no_wrap'] ) {
311
+                $form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
312
+                $wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
313
+                $wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
314
+                $output           = self::wrap( array(
315
+                    'content'         => $output,
316
+                    'class'           => $wrap_class,
317
+                    'element_require' => $args['element_require'],
318
+                    'argument_id'     => $args['id'],
319
+                    'wrap_attributes' => $args['wrap_attributes'],
320
+                ) );
321
+            }
322
+        }
323
+
324
+        return $output;
325
+    }
326
+
327
+    public static function label( $args = array(), $type = '' ) {
328
+        //<label for="exampleInputEmail1">Email address</label>
329
+        $defaults = array(
330
+            'title'      => 'div',
331
+            'for'        => '',
332
+            'class'      => '',
333
+            'label_type' => '', // empty = hidden, top, horizontal
334
+            'label_col'  => '',
335
+        );
336
+
337
+        /**
338
+         * Parse incoming $args into an array and merge it with $defaults
339
+         */
340
+        $args   = wp_parse_args( $args, $defaults );
341
+        $output = '';
342
+
343
+        if ( $args['title'] ) {
344
+
345
+            // maybe hide labels //@todo set a global option for visibility class
346
+            if ( $type == 'file' || $type == 'checkbox' || $type == 'radio' || ! empty( $args['label_type'] ) ) {
347
+                $class = $args['class'];
348
+            } else {
349
+                $class = 'sr-only ' . $args['class'];
350
+            }
351
+
352
+            // maybe horizontal
353
+            if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
354
+                $class .= ' ' . AUI_Component_Helper::get_column_class( $args['label_col'], 'label' ) . ' col-form-label';
355
+            }
356
+
357
+            // open
358
+            $output .= '<label ';
359
+
360
+            // for
361
+            if ( ! empty( $args['for'] ) ) {
362
+                $output .= ' for="' . esc_attr( $args['for'] ) . '" ';
363
+            }
364
+
365
+            // class
366
+            $class = $class ? AUI_Component_Helper::esc_classes( $class ) : '';
367
+            $output .= ' class="' . $class . '" ';
368
+
369
+            // close
370
+            $output .= '>';
371
+
372
+
373
+            // title, don't escape fully as can contain html
374
+            if ( ! empty( $args['title'] ) ) {
375
+                $output .= wp_kses_post( $args['title'] );
376
+            }
377
+
378
+            // close wrap
379
+            $output .= '</label>';
380
+
381
+
382
+        }
383
+
384
+
385
+        return $output;
386
+    }
387
+
388
+    /**
389
+     * Wrap some content in a HTML wrapper.
390
+     *
391
+     * @param array $args
392
+     *
393
+     * @return string
394
+     */
395
+    public static function wrap( $args = array() ) {
396
+        $defaults = array(
397
+            'type'                     => 'div',
398
+            'class'                    => 'form-group',
399
+            'content'                  => '',
400
+            'input_group_left'         => '',
401
+            'input_group_right'        => '',
402
+            'input_group_left_inside'  => false,
403
+            'input_group_right_inside' => false,
404
+            'element_require'          => '',
405
+            'argument_id'              => '',
406
+            'wrap_attributes'          => array()
407
+        );
408
+
409
+        /**
410
+         * Parse incoming $args into an array and merge it with $defaults
411
+         */
412
+        $args   = wp_parse_args( $args, $defaults );
413
+        $output = '';
414
+        if ( $args['type'] ) {
415
+
416
+            // open
417
+            $output .= '<' . sanitize_html_class( $args['type'] );
418
+
419
+            // element require
420
+            if ( ! empty( $args['element_require'] ) ) {
421
+                $output .= AUI_Component_Helper::element_require( $args['element_require'] );
422
+                $args['class'] .= " aui-conditional-field";
423
+            }
424
+
425
+            // argument_id
426
+            if ( ! empty( $args['argument_id'] ) ) {
427
+                $output .= ' data-argument="' . esc_attr( $args['argument_id'] ) . '"';
428
+            }
429
+
430
+            // class
431
+            $class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
432
+            $output .= ' class="' . $class . '" ';
433
+
434
+            // Attributes
435
+            if ( ! empty( $args['wrap_attributes'] ) ) {
436
+                $output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] );
437
+            }
438
+
439
+            // close wrap
440
+            $output .= ' >';
441
+
442
+
443
+            // Input group left
444
+            if ( ! empty( $args['input_group_left'] ) ) {
445
+                $position_class   = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
446
+                $input_group_left = strpos( $args['input_group_left'], '<' ) !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>';
447
+                $output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>';
448
+            }
449
+
450
+            // content
451
+            $output .= $args['content'];
452
+
453
+            // Input group right
454
+            if ( ! empty( $args['input_group_right'] ) ) {
455
+                $position_class    = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
456
+                $input_group_right = strpos( $args['input_group_right'], '<' ) !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>';
457
+                $output .= '<div class="input-group-append ' . $position_class . '">' . $input_group_right . '</div>';
458
+            }
459
+
460
+
461
+            // close wrap
462
+            $output .= '</' . sanitize_html_class( $args['type'] ) . '>';
463
+
464
+
465
+        } else {
466
+            $output = $args['content'];
467
+        }
468
+
469
+        return $output;
470
+    }
471
+
472
+    /**
473
+     * Build the component.
474
+     *
475
+     * @param array $args
476
+     *
477
+     * @return string The rendered component.
478
+     */
479
+    public static function textarea( $args = array() ) {
480
+        $defaults = array(
481
+            'name'               => '',
482
+            'class'              => '',
483
+            'wrap_class'         => '',
484
+            'id'                 => '',
485
+            'placeholder'        => '',
486
+            'title'              => '',
487
+            'value'              => '',
488
+            'required'           => false,
489
+            'label'              => '',
490
+            'label_after'        => false,
491
+            'label_class'        => '',
492
+            'label_type'         => '',
493
+            'label_col'          => '',
494
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
495
+            'help_text'          => '',
496
+            'validation_text'    => '',
497
+            'validation_pattern' => '',
498
+            'no_wrap'            => false,
499
+            'rows'               => '',
500
+            'wysiwyg'            => false,
501
+            'allow_tags'         => false,
502
+            // Allow HTML tags
503
+            'element_require'    => '',
504
+            // [%element_id%] == "1"
505
+            'extra_attributes'   => array(),
506
+            // an array of extra attributes
507
+            'wrap_attributes'    => array(),
508
+        );
509
+
510
+        /**
511
+         * Parse incoming $args into an array and merge it with $defaults
512
+         */
513
+        $args   = wp_parse_args( $args, $defaults );
514
+        $output = '';
515
+
516
+        // hidden label option needs to be empty
517
+        $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
518
+
519
+        // floating labels don't work with wysiwyg so set it as top
520
+        if ( $args['label_type'] == 'floating' && ! empty( $args['wysiwyg'] ) ) {
521
+            $args['label_type'] = 'top';
522
+        }
523
+
524
+        $label_after = $args['label_after'];
525
+
526
+        // floating labels need label after
527
+        if ( $args['label_type'] == 'floating' && empty( $args['wysiwyg'] ) ) {
528
+            $label_after         = true;
529
+            $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
530
+        }
531
+
532
+        // label
533
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
534
+        } elseif ( ! empty( $args['label'] ) && ! $label_after ) {
535
+            $label_args = array(
536
+                'title'      => $args['label'],
537
+                'for'        => $args['id'],
538
+                'class'      => $args['label_class'] . " ",
539
+                'label_type' => $args['label_type'],
540
+                'label_col'  => $args['label_col']
541
+            );
542
+            $output .= self::label( $label_args );
543
+        }
544
+
545
+        // maybe horizontal label
546
+        if ( $args['label_type'] == 'horizontal' ) {
547
+            $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
548
+            $output .= '<div class="' . $input_col . '">';
549
+        }
550
+
551
+        if ( ! empty( $args['wysiwyg'] ) ) {
552
+            ob_start();
553
+            $content   = $args['value'];
554
+            $editor_id = ! empty( $args['id'] ) ? sanitize_html_class( $args['id'] ) : 'wp_editor';
555
+            $settings  = array(
556
+                'textarea_rows' => ! empty( absint( $args['rows'] ) ) ? absint( $args['rows'] ) : 4,
557
+                'quicktags'     => false,
558
+                'media_buttons' => false,
559
+                'editor_class'  => 'form-control',
560
+                'textarea_name' => ! empty( $args['name'] ) ? sanitize_html_class( $args['name'] ) : sanitize_html_class( $args['id'] ),
561
+                'teeny'         => true,
562
+            );
563
+
564
+            // maybe set settings if array
565
+            if ( is_array( $args['wysiwyg'] ) ) {
566
+                $settings = wp_parse_args( $args['wysiwyg'], $settings );
567
+            }
568
+
569
+            wp_editor( $content, $editor_id, $settings );
570
+            $output .= ob_get_clean();
571
+        } else {
572
+
573
+            // open
574
+            $output .= '<textarea ';
575
+
576
+            // name
577
+            if ( ! empty( $args['name'] ) ) {
578
+                $output .= ' name="' . esc_attr( $args['name'] ) . '" ';
579
+            }
580
+
581
+            // id
582
+            if ( ! empty( $args['id'] ) ) {
583
+                $output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
584
+            }
585
+
586
+            // placeholder
587
+            if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
588
+                $output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
589
+            }
590
+
591
+            // title
592
+            if ( ! empty( $args['title'] ) ) {
593
+                $output .= ' title="' . esc_attr( $args['title'] ) . '" ';
594
+            }
595
+
596
+            // validation text
597
+            if ( ! empty( $args['validation_text'] ) ) {
598
+                $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
599
+                $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
600
+            }
601
+
602
+            // validation_pattern
603
+            if ( ! empty( $args['validation_pattern'] ) ) {
604
+                $output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
605
+            }
606
+
607
+            // required
608
+            if ( ! empty( $args['required'] ) ) {
609
+                $output .= ' required ';
610
+            }
611
+
612
+            // rows
613
+            if ( ! empty( $args['rows'] ) ) {
614
+                $output .= ' rows="' . absint( $args['rows'] ) . '" ';
615
+            }
616
+
617
+
618
+            // class
619
+            $class = ! empty( $args['class'] ) ? $args['class'] : '';
620
+            $output .= ' class="form-control ' . $class . '" ';
621
+
622
+            // extra attributes
623
+            if ( ! empty( $args['extra_attributes'] ) ) {
624
+                $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
625
+            }
626
+
627
+            // close tag
628
+            $output .= ' >';
629
+
630
+            // value
631
+            if ( ! empty( $args['value'] ) ) {
632
+                if ( ! empty( $args['allow_tags'] ) ) {
633
+                    $output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML.
634
+                } else {
635
+                    $output .= sanitize_textarea_field( $args['value'] );
636
+                }
637
+            }
638
+
639
+            // closing tag
640
+            $output .= '</textarea>';
641
+
642
+        }
643
+
644
+        if ( ! empty( $args['label'] ) && $label_after ) {
645
+            $label_args = array(
646
+                'title'      => $args['label'],
647
+                'for'        => $args['id'],
648
+                'class'      => $args['label_class'] . " ",
649
+                'label_type' => $args['label_type'],
650
+                'label_col'  => $args['label_col']
651
+            );
652
+            $output .= self::label( $label_args );
653
+        }
654
+
655
+        // help text
656
+        if ( ! empty( $args['help_text'] ) ) {
657
+            $output .= AUI_Component_Helper::help_text( $args['help_text'] );
658
+        }
659
+
660
+        // maybe horizontal label
661
+        if ( $args['label_type'] == 'horizontal' ) {
662
+            $output .= '</div>';
663
+        }
664
+
665
+
666
+        // wrap
667
+        if ( ! $args['no_wrap'] ) {
668
+            $form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group';
669
+            $wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
670
+            $wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
671
+            $output           = self::wrap( array(
672
+                'content'         => $output,
673
+                'class'           => $wrap_class,
674
+                'element_require' => $args['element_require'],
675
+                'argument_id'     => $args['id'],
676
+                'wrap_attributes' => $args['wrap_attributes'],
677
+            ) );
678
+        }
679
+
680
+
681
+        return $output;
682
+    }
683
+
684
+    /**
685
+     * Build the component.
686
+     *
687
+     * @param array $args
688
+     *
689
+     * @return string The rendered component.
690
+     */
691
+    public static function select( $args = array() ) {
692
+        $defaults = array(
693
+            'class'            => '',
694
+            'wrap_class'       => '',
695
+            'id'               => '',
696
+            'title'            => '',
697
+            'value'            => '',
698
+            // can be an array or a string
699
+            'required'         => false,
700
+            'label'            => '',
701
+            'label_after'      => false,
702
+            'label_type'       => '',
703
+            'label_col'        => '',
704
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
705
+            'label_class'      => '',
706
+            'help_text'        => '',
707
+            'placeholder'      => '',
708
+            'options'          => array(),
709
+            // array or string
710
+            'icon'             => '',
711
+            'multiple'         => false,
712
+            'select2'          => false,
713
+            'no_wrap'          => false,
714
+            'input_group_right' => '',
715
+            'input_group_left' => '',
716
+            'input_group_right_inside' => false, // forces the input group inside the input
717
+            'input_group_left_inside' => false, // forces the input group inside the input
718
+            'element_require'  => '',
719
+            // [%element_id%] == "1"
720
+            'extra_attributes' => array(),
721
+            // an array of extra attributes
722
+            'wrap_attributes'  => array(),
723
+        );
724
+
725
+        /**
726
+         * Parse incoming $args into an array and merge it with $defaults
727
+         */
728
+        $args   = wp_parse_args( $args, $defaults );
729
+        $output = '';
730
+
731
+        // for now lets hide floating labels
732
+        if ( $args['label_type'] == 'floating' ) {
733
+            $args['label_type'] = 'hidden';
734
+        }
735
+
736
+        // hidden label option needs to be empty
737
+        $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
738
+
739
+
740
+        $label_after = $args['label_after'];
741
+
742
+        // floating labels need label after
743
+        if ( $args['label_type'] == 'floating' ) {
744
+            $label_after         = true;
745
+            $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
746
+        }
747
+
748
+        // Maybe setup select2
749
+        $is_select2 = false;
750
+        if ( ! empty( $args['select2'] ) ) {
751
+            $args['class'] .= ' aui-select2';
752
+            $is_select2 = true;
753
+        } elseif ( strpos( $args['class'], 'aui-select2' ) !== false ) {
754
+            $is_select2 = true;
755
+        }
756
+
757
+        // select2 tags
758
+        if ( ! empty( $args['select2'] ) && $args['select2'] === 'tags' ) { // triple equals needed here for some reason
759
+            $args['data-tags']             = 'true';
760
+            $args['data-token-separators'] = "[',']";
761
+            $args['multiple']              = true;
762
+        }
763
+
764
+        // select2 placeholder
765
+        if ( $is_select2 && isset( $args['placeholder'] ) && '' != $args['placeholder'] && empty( $args['data-placeholder'] ) ) {
766
+            $args['data-placeholder'] = esc_attr( $args['placeholder'] );
767
+            $args['data-allow-clear'] = isset( $args['data-allow-clear'] ) ? (bool) $args['data-allow-clear'] : true;
768
+        }
769
+
770
+
771
+
772
+        // maybe horizontal label
773 773
 //		if ( $args['label_type'] == 'horizontal' ) {
774 774
 //			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
775 775
 //			$output .= '<div class="' . $input_col . '">';
776 776
 //		}
777 777
 
778
-		// Set hidden input to save empty value for multiselect.
779
-		if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) {
780
-			$output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>';
781
-		}
782
-
783
-		// open/type
784
-		$output .= '<select ';
785
-
786
-		// style
787
-		if ( $is_select2 && !($args['input_group_left'] || $args['input_group_right'])) {
788
-			$output .= " style='width:100%;' ";
789
-		}
790
-
791
-		// element require
792
-		if ( ! empty( $args['element_require'] ) ) {
793
-			$output .= AUI_Component_Helper::element_require( $args['element_require'] );
794
-			$args['class'] .= " aui-conditional-field";
795
-		}
796
-
797
-		// class
798
-		$class = ! empty( $args['class'] ) ? $args['class'] : '';
799
-		$output .= AUI_Component_Helper::class_attr( 'custom-select ' . $class );
800
-
801
-		// name
802
-		if ( ! empty( $args['name'] ) ) {
803
-			$output .= AUI_Component_Helper::name( $args['name'], $args['multiple'] );
804
-		}
805
-
806
-		// id
807
-		if ( ! empty( $args['id'] ) ) {
808
-			$output .= AUI_Component_Helper::id( $args['id'] );
809
-		}
810
-
811
-		// title
812
-		if ( ! empty( $args['title'] ) ) {
813
-			$output .= AUI_Component_Helper::title( $args['title'] );
814
-		}
815
-
816
-		// data-attributes
817
-		$output .= AUI_Component_Helper::data_attributes( $args );
818
-
819
-		// aria-attributes
820
-		$output .= AUI_Component_Helper::aria_attributes( $args );
821
-
822
-		// extra attributes
823
-		if ( ! empty( $args['extra_attributes'] ) ) {
824
-			$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
825
-		}
826
-
827
-		// required
828
-		if ( ! empty( $args['required'] ) ) {
829
-			$output .= ' required ';
830
-		}
831
-
832
-		// multiple
833
-		if ( ! empty( $args['multiple'] ) ) {
834
-			$output .= ' multiple ';
835
-		}
836
-
837
-		// close opening tag
838
-		$output .= ' >';
839
-
840
-		// placeholder
841
-		if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] && ! $is_select2 ) {
842
-			$output .= '<option value="" disabled selected hidden>' . esc_attr( $args['placeholder'] ) . '</option>';
843
-		} elseif ( $is_select2 && ! empty( $args['placeholder'] ) ) {
844
-			$output .= "<option></option>"; // select2 needs an empty select to fill the placeholder
845
-		}
846
-
847
-		// Options
848
-		if ( ! empty( $args['options'] ) ) {
849
-
850
-			if ( ! is_array( $args['options'] ) ) {
851
-				$output .= $args['options']; // not the preferred way but an option
852
-			} else {
853
-				foreach ( $args['options'] as $val => $name ) {
854
-					$selected = '';
855
-					if ( is_array( $name ) ) {
856
-						if ( isset( $name['optgroup'] ) && ( $name['optgroup'] == 'start' || $name['optgroup'] == 'end' ) ) {
857
-							$option_label = isset( $name['label'] ) ? $name['label'] : '';
858
-
859
-							$output .= $name['optgroup'] == 'start' ? '<optgroup label="' . esc_attr( $option_label ) . '">' : '</optgroup>';
860
-						} else {
861
-							$option_label = isset( $name['label'] ) ? $name['label'] : '';
862
-							$option_value = isset( $name['value'] ) ? $name['value'] : '';
863
-							$extra_attributes = !empty($name['extra_attributes']) ? AUI_Component_Helper::extra_attributes( $name['extra_attributes'] ) : '';
864
-							if ( ! empty( $args['multiple'] ) && ! empty( $args['value'] ) && is_array( $args['value'] ) ) {
865
-								$selected = in_array( $option_value, stripslashes_deep( $args['value'] ) ) ? "selected" : "";
866
-							} elseif ( ! empty( $args['value'] ) ) {
867
-								$selected = selected( $option_value, stripslashes_deep( $args['value'] ), false );
868
-							}
869
-
870
-							$output .= '<option value="' . esc_attr( $option_value ) . '" ' . $selected . ' '.$extra_attributes .'>' . $option_label . '</option>';
871
-						}
872
-					} else {
873
-						if ( ! empty( $args['value'] ) ) {
874
-							if ( is_array( $args['value'] ) ) {
875
-								$selected = in_array( $val, $args['value'] ) ? 'selected="selected"' : '';
876
-							} elseif ( ! empty( $args['value'] ) ) {
877
-								$selected = selected( $args['value'], $val, false );
878
-							}
879
-						}
880
-						$output .= '<option value="' . esc_attr( $val ) . '" ' . $selected . '>' . esc_attr( $name ) . '</option>';
881
-					}
882
-				}
883
-			}
884
-
885
-		}
886
-
887
-		// closing tag
888
-		$output .= '</select>';
889
-
890
-		$label = '';
891
-		$help_text = '';
892
-		// label
893
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
894
-		} elseif ( ! empty( $args['label'] ) && ! $label_after ) {
895
-			$label_args = array(
896
-				'title'      => $args['label'],
897
-				'for'        => $args['id'],
898
-				'class'      => $args['label_class'] . " ",
899
-				'label_type' => $args['label_type'],
900
-				'label_col'  => $args['label_col']
901
-			);
902
-			$label = self::label( $label_args );
903
-		}
904
-
905
-		// help text
906
-		if ( ! empty( $args['help_text'] ) ) {
907
-			$help_text = AUI_Component_Helper::help_text( $args['help_text'] );
908
-		}
909
-
910
-		// input group wraps
911
-		if ( $args['input_group_left'] || $args['input_group_right'] ) {
912
-			$w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
913
-			if ( $args['input_group_left'] ) {
914
-				$output = self::wrap( array(
915
-					'content'                 => $output,
916
-					'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
917
-					'input_group_left'        => $args['input_group_left'],
918
-					'input_group_left_inside' => $args['input_group_left_inside']
919
-				) );
920
-			}
921
-			if ( $args['input_group_right'] ) {
922
-				$output = self::wrap( array(
923
-					'content'                  => $output,
924
-					'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
925
-					'input_group_right'        => $args['input_group_right'],
926
-					'input_group_right_inside' => $args['input_group_right_inside']
927
-				) );
928
-			}
929
-
930
-		}
931
-
932
-		if ( ! $label_after ) {
933
-			$output .= $help_text;
934
-		}
935
-
936
-
937
-		if ( $args['label_type'] == 'horizontal' ) {
938
-			$output = self::wrap( array(
939
-				'content' => $output,
940
-				'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
941
-			) );
942
-		}
943
-
944
-		if ( ! $label_after ) {
945
-			$output = $label . $output;
946
-		}
947
-
948
-		// maybe horizontal label
778
+        // Set hidden input to save empty value for multiselect.
779
+        if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) {
780
+            $output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>';
781
+        }
782
+
783
+        // open/type
784
+        $output .= '<select ';
785
+
786
+        // style
787
+        if ( $is_select2 && !($args['input_group_left'] || $args['input_group_right'])) {
788
+            $output .= " style='width:100%;' ";
789
+        }
790
+
791
+        // element require
792
+        if ( ! empty( $args['element_require'] ) ) {
793
+            $output .= AUI_Component_Helper::element_require( $args['element_require'] );
794
+            $args['class'] .= " aui-conditional-field";
795
+        }
796
+
797
+        // class
798
+        $class = ! empty( $args['class'] ) ? $args['class'] : '';
799
+        $output .= AUI_Component_Helper::class_attr( 'custom-select ' . $class );
800
+
801
+        // name
802
+        if ( ! empty( $args['name'] ) ) {
803
+            $output .= AUI_Component_Helper::name( $args['name'], $args['multiple'] );
804
+        }
805
+
806
+        // id
807
+        if ( ! empty( $args['id'] ) ) {
808
+            $output .= AUI_Component_Helper::id( $args['id'] );
809
+        }
810
+
811
+        // title
812
+        if ( ! empty( $args['title'] ) ) {
813
+            $output .= AUI_Component_Helper::title( $args['title'] );
814
+        }
815
+
816
+        // data-attributes
817
+        $output .= AUI_Component_Helper::data_attributes( $args );
818
+
819
+        // aria-attributes
820
+        $output .= AUI_Component_Helper::aria_attributes( $args );
821
+
822
+        // extra attributes
823
+        if ( ! empty( $args['extra_attributes'] ) ) {
824
+            $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
825
+        }
826
+
827
+        // required
828
+        if ( ! empty( $args['required'] ) ) {
829
+            $output .= ' required ';
830
+        }
831
+
832
+        // multiple
833
+        if ( ! empty( $args['multiple'] ) ) {
834
+            $output .= ' multiple ';
835
+        }
836
+
837
+        // close opening tag
838
+        $output .= ' >';
839
+
840
+        // placeholder
841
+        if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] && ! $is_select2 ) {
842
+            $output .= '<option value="" disabled selected hidden>' . esc_attr( $args['placeholder'] ) . '</option>';
843
+        } elseif ( $is_select2 && ! empty( $args['placeholder'] ) ) {
844
+            $output .= "<option></option>"; // select2 needs an empty select to fill the placeholder
845
+        }
846
+
847
+        // Options
848
+        if ( ! empty( $args['options'] ) ) {
849
+
850
+            if ( ! is_array( $args['options'] ) ) {
851
+                $output .= $args['options']; // not the preferred way but an option
852
+            } else {
853
+                foreach ( $args['options'] as $val => $name ) {
854
+                    $selected = '';
855
+                    if ( is_array( $name ) ) {
856
+                        if ( isset( $name['optgroup'] ) && ( $name['optgroup'] == 'start' || $name['optgroup'] == 'end' ) ) {
857
+                            $option_label = isset( $name['label'] ) ? $name['label'] : '';
858
+
859
+                            $output .= $name['optgroup'] == 'start' ? '<optgroup label="' . esc_attr( $option_label ) . '">' : '</optgroup>';
860
+                        } else {
861
+                            $option_label = isset( $name['label'] ) ? $name['label'] : '';
862
+                            $option_value = isset( $name['value'] ) ? $name['value'] : '';
863
+                            $extra_attributes = !empty($name['extra_attributes']) ? AUI_Component_Helper::extra_attributes( $name['extra_attributes'] ) : '';
864
+                            if ( ! empty( $args['multiple'] ) && ! empty( $args['value'] ) && is_array( $args['value'] ) ) {
865
+                                $selected = in_array( $option_value, stripslashes_deep( $args['value'] ) ) ? "selected" : "";
866
+                            } elseif ( ! empty( $args['value'] ) ) {
867
+                                $selected = selected( $option_value, stripslashes_deep( $args['value'] ), false );
868
+                            }
869
+
870
+                            $output .= '<option value="' . esc_attr( $option_value ) . '" ' . $selected . ' '.$extra_attributes .'>' . $option_label . '</option>';
871
+                        }
872
+                    } else {
873
+                        if ( ! empty( $args['value'] ) ) {
874
+                            if ( is_array( $args['value'] ) ) {
875
+                                $selected = in_array( $val, $args['value'] ) ? 'selected="selected"' : '';
876
+                            } elseif ( ! empty( $args['value'] ) ) {
877
+                                $selected = selected( $args['value'], $val, false );
878
+                            }
879
+                        }
880
+                        $output .= '<option value="' . esc_attr( $val ) . '" ' . $selected . '>' . esc_attr( $name ) . '</option>';
881
+                    }
882
+                }
883
+            }
884
+
885
+        }
886
+
887
+        // closing tag
888
+        $output .= '</select>';
889
+
890
+        $label = '';
891
+        $help_text = '';
892
+        // label
893
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
894
+        } elseif ( ! empty( $args['label'] ) && ! $label_after ) {
895
+            $label_args = array(
896
+                'title'      => $args['label'],
897
+                'for'        => $args['id'],
898
+                'class'      => $args['label_class'] . " ",
899
+                'label_type' => $args['label_type'],
900
+                'label_col'  => $args['label_col']
901
+            );
902
+            $label = self::label( $label_args );
903
+        }
904
+
905
+        // help text
906
+        if ( ! empty( $args['help_text'] ) ) {
907
+            $help_text = AUI_Component_Helper::help_text( $args['help_text'] );
908
+        }
909
+
910
+        // input group wraps
911
+        if ( $args['input_group_left'] || $args['input_group_right'] ) {
912
+            $w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
913
+            if ( $args['input_group_left'] ) {
914
+                $output = self::wrap( array(
915
+                    'content'                 => $output,
916
+                    'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
917
+                    'input_group_left'        => $args['input_group_left'],
918
+                    'input_group_left_inside' => $args['input_group_left_inside']
919
+                ) );
920
+            }
921
+            if ( $args['input_group_right'] ) {
922
+                $output = self::wrap( array(
923
+                    'content'                  => $output,
924
+                    'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
925
+                    'input_group_right'        => $args['input_group_right'],
926
+                    'input_group_right_inside' => $args['input_group_right_inside']
927
+                ) );
928
+            }
929
+
930
+        }
931
+
932
+        if ( ! $label_after ) {
933
+            $output .= $help_text;
934
+        }
935
+
936
+
937
+        if ( $args['label_type'] == 'horizontal' ) {
938
+            $output = self::wrap( array(
939
+                'content' => $output,
940
+                'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
941
+            ) );
942
+        }
943
+
944
+        if ( ! $label_after ) {
945
+            $output = $label . $output;
946
+        }
947
+
948
+        // maybe horizontal label
949 949
 //		if ( $args['label_type'] == 'horizontal' ) {
950 950
 //			$output .= '</div>';
951 951
 //		}
952 952
 
953 953
 
954
-		// wrap
955
-		if ( ! $args['no_wrap'] ) {
956
-			$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
957
-			$wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
958
-			$output     = self::wrap( array(
959
-				'content'         => $output,
960
-				'class'           => $wrap_class,
961
-				'element_require' => $args['element_require'],
962
-				'argument_id'     => $args['id'],
963
-				'wrap_attributes' => $args['wrap_attributes'],
964
-			) );
965
-		}
966
-
967
-
968
-		return $output;
969
-	}
970
-
971
-	/**
972
-	 * Build the component.
973
-	 *
974
-	 * @param array $args
975
-	 *
976
-	 * @return string The rendered component.
977
-	 */
978
-	public static function radio( $args = array() ) {
979
-		$defaults = array(
980
-			'class'            => '',
981
-			'wrap_class'       => '',
982
-			'id'               => '',
983
-			'title'            => '',
984
-			'horizontal'       => false,
985
-			// sets the lable horizontal
986
-			'value'            => '',
987
-			'label'            => '',
988
-			'label_class'      => '',
989
-			'label_type'       => '',
990
-			'label_col'        => '',
991
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
992
-			'help_text'        => '',
993
-			'inline'           => true,
994
-			'required'         => false,
995
-			'options'          => array(),
996
-			'icon'             => '',
997
-			'no_wrap'          => false,
998
-			'element_require'  => '',
999
-			// [%element_id%] == "1"
1000
-			'extra_attributes' => array(),
1001
-			// an array of extra attributes
1002
-			'wrap_attributes'  => array()
1003
-		);
1004
-
1005
-		/**
1006
-		 * Parse incoming $args into an array and merge it with $defaults
1007
-		 */
1008
-		$args = wp_parse_args( $args, $defaults );
1009
-
1010
-		// for now lets use horizontal for floating
1011
-		if ( $args['label_type'] == 'floating' ) {
1012
-			$args['label_type'] = 'horizontal';
1013
-		}
1014
-
1015
-		$label_args = array(
1016
-			'title'      => $args['label'],
1017
-			'class'      => $args['label_class'] . " pt-0 ",
1018
-			'label_type' => $args['label_type'],
1019
-			'label_col'  => $args['label_col']
1020
-		);
1021
-
1022
-		$output = '';
1023
-
1024
-
1025
-		// label before
1026
-		if ( ! empty( $args['label'] ) ) {
1027
-			$output .= self::label( $label_args, 'radio' );
1028
-		}
1029
-
1030
-		// maybe horizontal label
1031
-		if ( $args['label_type'] == 'horizontal' ) {
1032
-			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
1033
-			$output .= '<div class="' . $input_col . '">';
1034
-		}
1035
-
1036
-		if ( ! empty( $args['options'] ) ) {
1037
-			$count = 0;
1038
-			foreach ( $args['options'] as $value => $label ) {
1039
-				$option_args            = $args;
1040
-				$option_args['value']   = $value;
1041
-				$option_args['label']   = $label;
1042
-				$option_args['checked'] = $value == $args['value'] ? true : false;
1043
-				$output .= self::radio_option( $option_args, $count );
1044
-				$count ++;
1045
-			}
1046
-		}
1047
-
1048
-		// help text
1049
-		$help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : '';
1050
-		$output .= $help_text;
1051
-
1052
-		// maybe horizontal label
1053
-		if ( $args['label_type'] == 'horizontal' ) {
1054
-			$output .= '</div>';
1055
-		}
1056
-
1057
-		// wrap
1058
-		$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1059
-		$wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1060
-		$output     = self::wrap( array(
1061
-			'content'         => $output,
1062
-			'class'           => $wrap_class,
1063
-			'element_require' => $args['element_require'],
1064
-			'argument_id'     => $args['id'],
1065
-			'wrap_attributes' => $args['wrap_attributes'],
1066
-		) );
1067
-
1068
-
1069
-		return $output;
1070
-	}
1071
-
1072
-	/**
1073
-	 * Build the component.
1074
-	 *
1075
-	 * @param array $args
1076
-	 *
1077
-	 * @return string The rendered component.
1078
-	 */
1079
-	public static function radio_option( $args = array(), $count = '' ) {
1080
-		$defaults = array(
1081
-			'class'            => '',
1082
-			'id'               => '',
1083
-			'title'            => '',
1084
-			'value'            => '',
1085
-			'required'         => false,
1086
-			'inline'           => true,
1087
-			'label'            => '',
1088
-			'options'          => array(),
1089
-			'icon'             => '',
1090
-			'no_wrap'          => false,
1091
-			'extra_attributes' => array() // an array of extra attributes
1092
-		);
1093
-
1094
-		/**
1095
-		 * Parse incoming $args into an array and merge it with $defaults
1096
-		 */
1097
-		$args = wp_parse_args( $args, $defaults );
1098
-
1099
-		$output = '';
1100
-
1101
-		// open/type
1102
-		$output .= '<input type="radio"';
1103
-
1104
-		// class
1105
-		$output .= ' class="form-check-input" ';
1106
-
1107
-		// name
1108
-		if ( ! empty( $args['name'] ) ) {
1109
-			$output .= AUI_Component_Helper::name( $args['name'] );
1110
-		}
1111
-
1112
-		// id
1113
-		if ( ! empty( $args['id'] ) ) {
1114
-			$output .= AUI_Component_Helper::id( $args['id'] . $count );
1115
-		}
1116
-
1117
-		// title
1118
-		if ( ! empty( $args['title'] ) ) {
1119
-			$output .= AUI_Component_Helper::title( $args['title'] );
1120
-		}
1121
-
1122
-		// value
1123
-		if ( isset( $args['value'] ) ) {
1124
-			$output .= AUI_Component_Helper::value( $args['value'] );
1125
-		}
1126
-
1127
-		// checked, for radio and checkboxes
1128
-		if ( $args['checked'] ) {
1129
-			$output .= ' checked ';
1130
-		}
1131
-
1132
-		// data-attributes
1133
-		$output .= AUI_Component_Helper::data_attributes( $args );
1134
-
1135
-		// aria-attributes
1136
-		$output .= AUI_Component_Helper::aria_attributes( $args );
1137
-
1138
-		// extra attributes
1139
-		if ( ! empty( $args['extra_attributes'] ) ) {
1140
-			$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
1141
-		}
1142
-
1143
-		// required
1144
-		if ( ! empty( $args['required'] ) ) {
1145
-			$output .= ' required ';
1146
-		}
1147
-
1148
-		// close opening tag
1149
-		$output .= ' >';
1150
-
1151
-		// label
1152
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
1153
-		} elseif ( ! empty( $args['label'] ) ) {
1154
-			$output .= self::label( array(
1155
-				'title' => $args['label'],
1156
-				'for'   => $args['id'] . $count,
1157
-				'class' => 'form-check-label'
1158
-			), 'radio' );
1159
-		}
1160
-
1161
-		// wrap
1162
-		if ( ! $args['no_wrap'] ) {
1163
-			$wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check';
1164
-
1165
-			// Unique wrap class
1166
-			$uniq_class = 'fwrap';
1167
-			if ( ! empty( $args['name'] ) ) {
1168
-				$uniq_class .= '-' . $args['name'];
1169
-			} else if ( ! empty( $args['id'] ) ) {
1170
-				$uniq_class .= '-' . $args['id'];
1171
-			}
1172
-
1173
-			if ( isset( $args['value'] ) || $args['value'] !== "" ) {
1174
-				$uniq_class .= '-' . $args['value'];
1175
-			} else {
1176
-				$uniq_class .= '-' . $count;
1177
-			}
1178
-			$wrap_class .= ' ' . sanitize_html_class( $uniq_class );
1179
-
1180
-			$output = self::wrap( array(
1181
-				'content' => $output,
1182
-				'class'   => $wrap_class
1183
-			) );
1184
-		}
1185
-
1186
-		return $output;
1187
-	}
954
+        // wrap
955
+        if ( ! $args['no_wrap'] ) {
956
+            $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
957
+            $wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
958
+            $output     = self::wrap( array(
959
+                'content'         => $output,
960
+                'class'           => $wrap_class,
961
+                'element_require' => $args['element_require'],
962
+                'argument_id'     => $args['id'],
963
+                'wrap_attributes' => $args['wrap_attributes'],
964
+            ) );
965
+        }
966
+
967
+
968
+        return $output;
969
+    }
970
+
971
+    /**
972
+     * Build the component.
973
+     *
974
+     * @param array $args
975
+     *
976
+     * @return string The rendered component.
977
+     */
978
+    public static function radio( $args = array() ) {
979
+        $defaults = array(
980
+            'class'            => '',
981
+            'wrap_class'       => '',
982
+            'id'               => '',
983
+            'title'            => '',
984
+            'horizontal'       => false,
985
+            // sets the lable horizontal
986
+            'value'            => '',
987
+            'label'            => '',
988
+            'label_class'      => '',
989
+            'label_type'       => '',
990
+            'label_col'        => '',
991
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
992
+            'help_text'        => '',
993
+            'inline'           => true,
994
+            'required'         => false,
995
+            'options'          => array(),
996
+            'icon'             => '',
997
+            'no_wrap'          => false,
998
+            'element_require'  => '',
999
+            // [%element_id%] == "1"
1000
+            'extra_attributes' => array(),
1001
+            // an array of extra attributes
1002
+            'wrap_attributes'  => array()
1003
+        );
1004
+
1005
+        /**
1006
+         * Parse incoming $args into an array and merge it with $defaults
1007
+         */
1008
+        $args = wp_parse_args( $args, $defaults );
1009
+
1010
+        // for now lets use horizontal for floating
1011
+        if ( $args['label_type'] == 'floating' ) {
1012
+            $args['label_type'] = 'horizontal';
1013
+        }
1014
+
1015
+        $label_args = array(
1016
+            'title'      => $args['label'],
1017
+            'class'      => $args['label_class'] . " pt-0 ",
1018
+            'label_type' => $args['label_type'],
1019
+            'label_col'  => $args['label_col']
1020
+        );
1021
+
1022
+        $output = '';
1023
+
1024
+
1025
+        // label before
1026
+        if ( ! empty( $args['label'] ) ) {
1027
+            $output .= self::label( $label_args, 'radio' );
1028
+        }
1029
+
1030
+        // maybe horizontal label
1031
+        if ( $args['label_type'] == 'horizontal' ) {
1032
+            $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
1033
+            $output .= '<div class="' . $input_col . '">';
1034
+        }
1035
+
1036
+        if ( ! empty( $args['options'] ) ) {
1037
+            $count = 0;
1038
+            foreach ( $args['options'] as $value => $label ) {
1039
+                $option_args            = $args;
1040
+                $option_args['value']   = $value;
1041
+                $option_args['label']   = $label;
1042
+                $option_args['checked'] = $value == $args['value'] ? true : false;
1043
+                $output .= self::radio_option( $option_args, $count );
1044
+                $count ++;
1045
+            }
1046
+        }
1047
+
1048
+        // help text
1049
+        $help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : '';
1050
+        $output .= $help_text;
1051
+
1052
+        // maybe horizontal label
1053
+        if ( $args['label_type'] == 'horizontal' ) {
1054
+            $output .= '</div>';
1055
+        }
1056
+
1057
+        // wrap
1058
+        $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1059
+        $wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1060
+        $output     = self::wrap( array(
1061
+            'content'         => $output,
1062
+            'class'           => $wrap_class,
1063
+            'element_require' => $args['element_require'],
1064
+            'argument_id'     => $args['id'],
1065
+            'wrap_attributes' => $args['wrap_attributes'],
1066
+        ) );
1067
+
1068
+
1069
+        return $output;
1070
+    }
1071
+
1072
+    /**
1073
+     * Build the component.
1074
+     *
1075
+     * @param array $args
1076
+     *
1077
+     * @return string The rendered component.
1078
+     */
1079
+    public static function radio_option( $args = array(), $count = '' ) {
1080
+        $defaults = array(
1081
+            'class'            => '',
1082
+            'id'               => '',
1083
+            'title'            => '',
1084
+            'value'            => '',
1085
+            'required'         => false,
1086
+            'inline'           => true,
1087
+            'label'            => '',
1088
+            'options'          => array(),
1089
+            'icon'             => '',
1090
+            'no_wrap'          => false,
1091
+            'extra_attributes' => array() // an array of extra attributes
1092
+        );
1093
+
1094
+        /**
1095
+         * Parse incoming $args into an array and merge it with $defaults
1096
+         */
1097
+        $args = wp_parse_args( $args, $defaults );
1098
+
1099
+        $output = '';
1100
+
1101
+        // open/type
1102
+        $output .= '<input type="radio"';
1103
+
1104
+        // class
1105
+        $output .= ' class="form-check-input" ';
1106
+
1107
+        // name
1108
+        if ( ! empty( $args['name'] ) ) {
1109
+            $output .= AUI_Component_Helper::name( $args['name'] );
1110
+        }
1111
+
1112
+        // id
1113
+        if ( ! empty( $args['id'] ) ) {
1114
+            $output .= AUI_Component_Helper::id( $args['id'] . $count );
1115
+        }
1116
+
1117
+        // title
1118
+        if ( ! empty( $args['title'] ) ) {
1119
+            $output .= AUI_Component_Helper::title( $args['title'] );
1120
+        }
1121
+
1122
+        // value
1123
+        if ( isset( $args['value'] ) ) {
1124
+            $output .= AUI_Component_Helper::value( $args['value'] );
1125
+        }
1126
+
1127
+        // checked, for radio and checkboxes
1128
+        if ( $args['checked'] ) {
1129
+            $output .= ' checked ';
1130
+        }
1131
+
1132
+        // data-attributes
1133
+        $output .= AUI_Component_Helper::data_attributes( $args );
1134
+
1135
+        // aria-attributes
1136
+        $output .= AUI_Component_Helper::aria_attributes( $args );
1137
+
1138
+        // extra attributes
1139
+        if ( ! empty( $args['extra_attributes'] ) ) {
1140
+            $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
1141
+        }
1142
+
1143
+        // required
1144
+        if ( ! empty( $args['required'] ) ) {
1145
+            $output .= ' required ';
1146
+        }
1147
+
1148
+        // close opening tag
1149
+        $output .= ' >';
1150
+
1151
+        // label
1152
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
1153
+        } elseif ( ! empty( $args['label'] ) ) {
1154
+            $output .= self::label( array(
1155
+                'title' => $args['label'],
1156
+                'for'   => $args['id'] . $count,
1157
+                'class' => 'form-check-label'
1158
+            ), 'radio' );
1159
+        }
1160
+
1161
+        // wrap
1162
+        if ( ! $args['no_wrap'] ) {
1163
+            $wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check';
1164
+
1165
+            // Unique wrap class
1166
+            $uniq_class = 'fwrap';
1167
+            if ( ! empty( $args['name'] ) ) {
1168
+                $uniq_class .= '-' . $args['name'];
1169
+            } else if ( ! empty( $args['id'] ) ) {
1170
+                $uniq_class .= '-' . $args['id'];
1171
+            }
1172
+
1173
+            if ( isset( $args['value'] ) || $args['value'] !== "" ) {
1174
+                $uniq_class .= '-' . $args['value'];
1175
+            } else {
1176
+                $uniq_class .= '-' . $count;
1177
+            }
1178
+            $wrap_class .= ' ' . sanitize_html_class( $uniq_class );
1179
+
1180
+            $output = self::wrap( array(
1181
+                'content' => $output,
1182
+                'class'   => $wrap_class
1183
+            ) );
1184
+        }
1185
+
1186
+        return $output;
1187
+    }
1188 1188
 
1189 1189
 }
1190 1190
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-getpaid-invoice-notification-emails.php 1 patch
Indentation   +451 added lines, -451 removed lines patch added patch discarded remove patch
@@ -12,492 +12,492 @@
 block discarded – undo
12 12
  */
13 13
 class GetPaid_Invoice_Notification_Emails {
14 14
 
15
-	/**
16
-	 * The array of invoice email actions.
17
-	 *
18
-	 * @param array
19
-	 */
20
-	public $invoice_actions;
21
-
22
-	/**
23
-	 * Class constructor
24
-	 *
25
-	 */
26
-	public function __construct() {
27
-
28
-		$this->invoice_actions = apply_filters(
29
-			'getpaid_notification_email_invoice_triggers',
30
-			array(
31
-				'getpaid_new_invoice'                   => array( 'new_invoice', 'user_invoice' ),
32
-				'getpaid_invoice_status_wpi-cancelled'  => 'cancelled_invoice',
33
-				'getpaid_invoice_status_wpi-failed'     => 'failed_invoice',
34
-				'getpaid_invoice_status_wpi-onhold'     => 'onhold_invoice',
35
-				'getpaid_invoice_status_wpi-processing' => 'processing_invoice',
36
-				'getpaid_invoice_status_publish'        => 'completed_invoice',
37
-				'getpaid_invoice_status_wpi-renewal'    => 'completed_invoice',
38
-				'getpaid_invoice_status_wpi-refunded'   => 'refunded_invoice',
39
-				'getpaid_new_customer_note'             => 'user_note',
40
-				'getpaid_daily_maintenance'             => 'overdue',
41
-			)
42
-		);
43
-
44
-		$this->init_hooks();
45
-
46
-	}
47
-
48
-	/**
49
-	 * Registers email hooks.
50
-	 */
51
-	public function init_hooks() {
52
-
53
-		add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 );
54
-		add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 );
55
-
56
-		foreach ( $this->invoice_actions as $hook => $email_type ) {
57
-			$this->init_email_type_hook( $hook, $email_type );
58
-		}
59
-	}
60
-
61
-	/**
62
-	 * Registers an email hook for an invoice action.
63
-	 * 
64
-	 * @param string $hook
65
-	 * @param string|array $email_type
66
-	 */
67
-	public function init_email_type_hook( $hook, $email_type ) {
68
-
69
-		$email_type = wpinv_parse_list( $email_type );
70
-
71
-		foreach ( $email_type as $type ) {
72
-
73
-			$email = new GetPaid_Notification_Email( $type );
74
-
75
-			// Abort if it is not active.
76
-			if ( ! $email->is_active() ) {
77
-				continue;
78
-			}
79
-
80
-			if ( method_exists( $this, $type ) ) {
81
-				add_action( $hook, array( $this, $type ), 100, 2 );
82
-				continue;
83
-			}
84
-
85
-			do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook );
86
-		}
87
-
88
-	}
89
-
90
-	/**
91
-	 * Filters invoice merge tags.
92
-	 *
93
-	 * @param array $merge_tags
94
-	 * @param mixed|WPInv_Invoice|WPInv_Subscription $object
95
-	 */
96
-	public function invoice_merge_tags( $merge_tags, $object ) {
97
-
98
-		if ( is_a( $object, 'WPInv_Invoice' ) ) {
99
-			return array_merge(
100
-				$merge_tags,
101
-				$this->get_invoice_merge_tags( $object )
102
-			);
103
-		}
104
-
105
-		if ( is_a( $object, 'WPInv_Subscription' ) ) {
106
-			return array_merge(
107
-				$merge_tags,
108
-				$this->get_invoice_merge_tags( $object->get_parent_payment() )
109
-			);
110
-		}
111
-
112
-		return $merge_tags;
113
-
114
-	}
115
-
116
-	/**
117
-	 * Generates invoice merge tags.
118
-	 *
119
-	 * @param WPInv_Invoice $invoice
120
-	 * @return array
121
-	 */
122
-	public function get_invoice_merge_tags( $invoice ) {
123
-
124
-		// Abort if it does not exist.
125
-		if ( ! $invoice->get_id() ) {
126
-			return array();
127
-		}
128
-
129
-		$merge_tags = array(
130
-			'{name}'                => sanitize_text_field( $invoice->get_user_full_name() ),
131
-			'{full_name}'           => sanitize_text_field( $invoice->get_user_full_name() ),
132
-			'{first_name}'          => sanitize_text_field( $invoice->get_first_name() ),
133
-			'{last_name}'           => sanitize_text_field( $invoice->get_last_name() ),
134
-			'{email}'               => sanitize_email( $invoice->get_email() ),
135
-			'{invoice_number}'      => sanitize_text_field( $invoice->get_number() ),
136
-			'{invoice_currency}'    => sanitize_text_field( $invoice->get_currency() ),
137
-			'{invoice_total}'       => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ),
138
-			'{invoice_link}'        => esc_url( $invoice->get_view_url() ),
139
-			'{invoice_pay_link}'    => esc_url( $invoice->get_checkout_payment_url() ),
140
-			'{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ),
141
-			'{invoice_date}'        => getpaid_format_date_value( $invoice->get_date_created() ),
142
-			'{invoice_due_date}'    => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ),
143
-			'{invoice_quote}'       => sanitize_text_field( strtolower( $invoice->get_label() ) ),
144
-			'{invoice_label}'       => sanitize_text_field( ucfirst( $invoice->get_label() ) ),
145
-			'{invoice_description}' => wp_kses_post( $invoice->get_description() ),
146
-			'{subscription_name}'   => wp_kses_post( $invoice->get_subscription_name() ),
147
-			'{is_was}'              => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ),
148
-		);
149
-
150
-		$payment_form_data = $invoice->get_meta( 'payment_form_data', true );
151
-
152
-		if ( is_array( $payment_form_data ) ) {
153
-
154
-			foreach ( $payment_form_data as $label => $value ) {
155
-
156
-				$label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) );
157
-				$value = is_array( $value ) ? implode( ', ', $value ) : $value;
158
-
159
-				if ( is_scalar ( $value ) ) {
160
-					$merge_tags[ "{{$label}}" ] = wp_kses_post( $value );
161
-				}
162
-
163
-			}
164
-
165
-		}
166
-
167
-		return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice );
168
-	}
169
-
170
-	/**
171
-	 * Helper function to send an email.
172
-	 *
173
-	 * @param WPInv_Invoice $invoice
174
-	 * @param GetPaid_Notification_Email $email
175
-	 * @param string $type
176
-	 * @param string|array $recipients
177
-	 * @param array $extra_args Extra template args.
178
-	 */
179
-	public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) {
180
-
181
-		do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email );
182
-
183
-		$skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' );
184
-		if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) {
185
-			return;
186
-		}
187
-
188
-		$mailer     = new GetPaid_Notification_Email_Sender();
189
-		$merge_tags = $email->get_merge_tags();
190
-
191
-		$result = $mailer->send(
192
-			apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ),
193
-			$email->add_merge_tags( $email->get_subject(), $merge_tags ),
194
-			$email->get_content( $merge_tags, $extra_args ),
195
-			$email->get_attachments()
196
-		);
197
-
198
-		// Maybe send a copy to the admin.
199
-		if ( $email->include_admin_bcc() ) {
200
-			$mailer->send(
201
-				wpinv_get_admin_email(),
202
-				$email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ),
203
-				$email->get_content( $merge_tags ),
204
-				$email->get_attachments()
205
-			);
206
-		}
207
-
208
-		if ( $result ) {
209
-			$invoice->add_system_note(
210
-				sprintf(
211
-					__( 'Successfully sent %s notification email to %s.', 'invoicing' ),
212
-					sanitize_key( $type ),
213
-					$email->is_admin_email() ? __( 'admin' ) : __( 'the customer' )
214
-				)
215
-			);
216
-		} else {
217
-			$invoice->add_system_note(
218
-				sprintf(
219
-					__( 'Failed sending %s notification email to %s.', 'invoicing' ),
220
-					sanitize_key( $type ),
221
-					$email->is_admin_email() ? __( 'admin' ) : __( 'the customer' )
222
-				)
223
-			);	
224
-		}
225
-
226
-		do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email );
227
-
228
-		return $result;
229
-	}
230
-
231
-	/**
232
-	 * Also send emails to any cc users.
233
-	 *
234
-	 * @param array $recipients
235
-	 * @param GetPaid_Notification_Email $email
236
-	 */
237
-	public function filter_email_recipients( $recipients, $email ) {
238
-
239
-		if ( ! $email->is_admin_email() ) {
240
-			$cc   = $email->object->get_email_cc();
241
-			$cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true );
242
-
243
-			if ( ! empty( $cc ) ) {
244
-				$cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) );
245
-				$recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) );
246
-			}
247
-
248
-			if ( ! empty( $cc_2 ) ) {
249
-				$cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) );
250
-				$recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) );
251
-			}
252
-
253
-		}
254
-
255
-		return $recipients;
256
-
257
-	}
258
-
259
-	/**
260
-	 * Sends a new invoice notification.
261
-	 *
262
-	 * @param WPInv_Invoice $invoice
263
-	 */
264
-	public function new_invoice( $invoice ) {
265
-
266
-		// Only send this email for invoices created via the admin page.
267
-		if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) {
268
-			return;
269
-		}
270
-
271
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
272
-		$recipient = wpinv_get_admin_email();
273
-
274
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
275
-
276
-	}
277
-
278
-	/**
279
-	 * Sends a cancelled invoice notification.
280
-	 *
281
-	 * @param WPInv_Invoice $invoice
282
-	 */
283
-	public function cancelled_invoice( $invoice ) {
284
-
285
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
286
-		$recipient = wpinv_get_admin_email();
287
-
288
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
289
-
290
-	}
291
-
292
-	/**
293
-	 * Sends a failed invoice notification.
294
-	 *
295
-	 * @param WPInv_Invoice $invoice
296
-	 */
297
-	public function failed_invoice( $invoice ) {
298
-
299
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
300
-		$recipient = wpinv_get_admin_email();
301
-
302
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
303
-
304
-	}
305
-
306
-	/**
307
-	 * Sends a notification whenever an invoice is put on hold.
308
-	 *
309
-	 * @param WPInv_Invoice $invoice
310
-	 */
311
-	public function onhold_invoice( $invoice ) {
312
-
313
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
314
-		$recipient = $invoice->get_email();
15
+    /**
16
+     * The array of invoice email actions.
17
+     *
18
+     * @param array
19
+     */
20
+    public $invoice_actions;
21
+
22
+    /**
23
+     * Class constructor
24
+     *
25
+     */
26
+    public function __construct() {
27
+
28
+        $this->invoice_actions = apply_filters(
29
+            'getpaid_notification_email_invoice_triggers',
30
+            array(
31
+                'getpaid_new_invoice'                   => array( 'new_invoice', 'user_invoice' ),
32
+                'getpaid_invoice_status_wpi-cancelled'  => 'cancelled_invoice',
33
+                'getpaid_invoice_status_wpi-failed'     => 'failed_invoice',
34
+                'getpaid_invoice_status_wpi-onhold'     => 'onhold_invoice',
35
+                'getpaid_invoice_status_wpi-processing' => 'processing_invoice',
36
+                'getpaid_invoice_status_publish'        => 'completed_invoice',
37
+                'getpaid_invoice_status_wpi-renewal'    => 'completed_invoice',
38
+                'getpaid_invoice_status_wpi-refunded'   => 'refunded_invoice',
39
+                'getpaid_new_customer_note'             => 'user_note',
40
+                'getpaid_daily_maintenance'             => 'overdue',
41
+            )
42
+        );
43
+
44
+        $this->init_hooks();
45
+
46
+    }
47
+
48
+    /**
49
+     * Registers email hooks.
50
+     */
51
+    public function init_hooks() {
52
+
53
+        add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 );
54
+        add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 );
55
+
56
+        foreach ( $this->invoice_actions as $hook => $email_type ) {
57
+            $this->init_email_type_hook( $hook, $email_type );
58
+        }
59
+    }
60
+
61
+    /**
62
+     * Registers an email hook for an invoice action.
63
+     * 
64
+     * @param string $hook
65
+     * @param string|array $email_type
66
+     */
67
+    public function init_email_type_hook( $hook, $email_type ) {
68
+
69
+        $email_type = wpinv_parse_list( $email_type );
70
+
71
+        foreach ( $email_type as $type ) {
72
+
73
+            $email = new GetPaid_Notification_Email( $type );
74
+
75
+            // Abort if it is not active.
76
+            if ( ! $email->is_active() ) {
77
+                continue;
78
+            }
79
+
80
+            if ( method_exists( $this, $type ) ) {
81
+                add_action( $hook, array( $this, $type ), 100, 2 );
82
+                continue;
83
+            }
84
+
85
+            do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook );
86
+        }
87
+
88
+    }
89
+
90
+    /**
91
+     * Filters invoice merge tags.
92
+     *
93
+     * @param array $merge_tags
94
+     * @param mixed|WPInv_Invoice|WPInv_Subscription $object
95
+     */
96
+    public function invoice_merge_tags( $merge_tags, $object ) {
97
+
98
+        if ( is_a( $object, 'WPInv_Invoice' ) ) {
99
+            return array_merge(
100
+                $merge_tags,
101
+                $this->get_invoice_merge_tags( $object )
102
+            );
103
+        }
104
+
105
+        if ( is_a( $object, 'WPInv_Subscription' ) ) {
106
+            return array_merge(
107
+                $merge_tags,
108
+                $this->get_invoice_merge_tags( $object->get_parent_payment() )
109
+            );
110
+        }
111
+
112
+        return $merge_tags;
113
+
114
+    }
115
+
116
+    /**
117
+     * Generates invoice merge tags.
118
+     *
119
+     * @param WPInv_Invoice $invoice
120
+     * @return array
121
+     */
122
+    public function get_invoice_merge_tags( $invoice ) {
123
+
124
+        // Abort if it does not exist.
125
+        if ( ! $invoice->get_id() ) {
126
+            return array();
127
+        }
128
+
129
+        $merge_tags = array(
130
+            '{name}'                => sanitize_text_field( $invoice->get_user_full_name() ),
131
+            '{full_name}'           => sanitize_text_field( $invoice->get_user_full_name() ),
132
+            '{first_name}'          => sanitize_text_field( $invoice->get_first_name() ),
133
+            '{last_name}'           => sanitize_text_field( $invoice->get_last_name() ),
134
+            '{email}'               => sanitize_email( $invoice->get_email() ),
135
+            '{invoice_number}'      => sanitize_text_field( $invoice->get_number() ),
136
+            '{invoice_currency}'    => sanitize_text_field( $invoice->get_currency() ),
137
+            '{invoice_total}'       => sanitize_text_field( wpinv_price( $invoice->get_total(), $invoice->get_currency() ) ),
138
+            '{invoice_link}'        => esc_url( $invoice->get_view_url() ),
139
+            '{invoice_pay_link}'    => esc_url( $invoice->get_checkout_payment_url() ),
140
+            '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ),
141
+            '{invoice_date}'        => getpaid_format_date_value( $invoice->get_date_created() ),
142
+            '{invoice_due_date}'    => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ),
143
+            '{invoice_quote}'       => sanitize_text_field( strtolower( $invoice->get_label() ) ),
144
+            '{invoice_label}'       => sanitize_text_field( ucfirst( $invoice->get_label() ) ),
145
+            '{invoice_description}' => wp_kses_post( $invoice->get_description() ),
146
+            '{subscription_name}'   => wp_kses_post( $invoice->get_subscription_name() ),
147
+            '{is_was}'              => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ),
148
+        );
149
+
150
+        $payment_form_data = $invoice->get_meta( 'payment_form_data', true );
151
+
152
+        if ( is_array( $payment_form_data ) ) {
153
+
154
+            foreach ( $payment_form_data as $label => $value ) {
155
+
156
+                $label = preg_replace( '/[^a-z0-9]+/', '_', strtolower( $label ) );
157
+                $value = is_array( $value ) ? implode( ', ', $value ) : $value;
158
+
159
+                if ( is_scalar ( $value ) ) {
160
+                    $merge_tags[ "{{$label}}" ] = wp_kses_post( $value );
161
+                }
162
+
163
+            }
164
+
165
+        }
166
+
167
+        return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice );
168
+    }
169
+
170
+    /**
171
+     * Helper function to send an email.
172
+     *
173
+     * @param WPInv_Invoice $invoice
174
+     * @param GetPaid_Notification_Email $email
175
+     * @param string $type
176
+     * @param string|array $recipients
177
+     * @param array $extra_args Extra template args.
178
+     */
179
+    public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) {
180
+
181
+        do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email );
182
+
183
+        $skip = $invoice->is_free() && wpinv_get_option( 'skip_email_free_invoice' );
184
+        if ( apply_filters( 'getpaid_skip_invoice_email', $skip, $type, $invoice ) ) {
185
+            return;
186
+        }
187
+
188
+        $mailer     = new GetPaid_Notification_Email_Sender();
189
+        $merge_tags = $email->get_merge_tags();
190
+
191
+        $result = $mailer->send(
192
+            apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ),
193
+            $email->add_merge_tags( $email->get_subject(), $merge_tags ),
194
+            $email->get_content( $merge_tags, $extra_args ),
195
+            $email->get_attachments()
196
+        );
197
+
198
+        // Maybe send a copy to the admin.
199
+        if ( $email->include_admin_bcc() ) {
200
+            $mailer->send(
201
+                wpinv_get_admin_email(),
202
+                $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ),
203
+                $email->get_content( $merge_tags ),
204
+                $email->get_attachments()
205
+            );
206
+        }
207
+
208
+        if ( $result ) {
209
+            $invoice->add_system_note(
210
+                sprintf(
211
+                    __( 'Successfully sent %s notification email to %s.', 'invoicing' ),
212
+                    sanitize_key( $type ),
213
+                    $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' )
214
+                )
215
+            );
216
+        } else {
217
+            $invoice->add_system_note(
218
+                sprintf(
219
+                    __( 'Failed sending %s notification email to %s.', 'invoicing' ),
220
+                    sanitize_key( $type ),
221
+                    $email->is_admin_email() ? __( 'admin' ) : __( 'the customer' )
222
+                )
223
+            );	
224
+        }
225
+
226
+        do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email );
227
+
228
+        return $result;
229
+    }
230
+
231
+    /**
232
+     * Also send emails to any cc users.
233
+     *
234
+     * @param array $recipients
235
+     * @param GetPaid_Notification_Email $email
236
+     */
237
+    public function filter_email_recipients( $recipients, $email ) {
238
+
239
+        if ( ! $email->is_admin_email() ) {
240
+            $cc   = $email->object->get_email_cc();
241
+            $cc_2 = get_user_meta( $email->object->get_user_id(), '_wpinv_email_cc', true );
242
+
243
+            if ( ! empty( $cc ) ) {
244
+                $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) );
245
+                $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) );
246
+            }
247
+
248
+            if ( ! empty( $cc_2 ) ) {
249
+                $cc_2 = array_map( 'sanitize_email', wpinv_parse_list( $cc_2 ) );
250
+                $recipients = array_filter( array_unique( array_merge( $recipients, $cc_2 ) ) );
251
+            }
252
+
253
+        }
254
+
255
+        return $recipients;
256
+
257
+    }
258
+
259
+    /**
260
+     * Sends a new invoice notification.
261
+     *
262
+     * @param WPInv_Invoice $invoice
263
+     */
264
+    public function new_invoice( $invoice ) {
265
+
266
+        // Only send this email for invoices created via the admin page.
267
+        if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || $this->is_payment_form_invoice( $invoice->get_id() ) ) {
268
+            return;
269
+        }
270
+
271
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
272
+        $recipient = wpinv_get_admin_email();
273
+
274
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
275
+
276
+    }
277
+
278
+    /**
279
+     * Sends a cancelled invoice notification.
280
+     *
281
+     * @param WPInv_Invoice $invoice
282
+     */
283
+    public function cancelled_invoice( $invoice ) {
284
+
285
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
286
+        $recipient = wpinv_get_admin_email();
287
+
288
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
289
+
290
+    }
291
+
292
+    /**
293
+     * Sends a failed invoice notification.
294
+     *
295
+     * @param WPInv_Invoice $invoice
296
+     */
297
+    public function failed_invoice( $invoice ) {
298
+
299
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
300
+        $recipient = wpinv_get_admin_email();
301
+
302
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
303
+
304
+    }
305
+
306
+    /**
307
+     * Sends a notification whenever an invoice is put on hold.
308
+     *
309
+     * @param WPInv_Invoice $invoice
310
+     */
311
+    public function onhold_invoice( $invoice ) {
312
+
313
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
314
+        $recipient = $invoice->get_email();
315 315
 
316
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
316
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
317 317
 
318
-	}
318
+    }
319 319
 
320
-	/**
321
-	 * Sends a notification whenever an invoice is marked as processing payment.
322
-	 *
323
-	 * @param WPInv_Invoice $invoice
324
-	 */
325
-	public function processing_invoice( $invoice ) {
320
+    /**
321
+     * Sends a notification whenever an invoice is marked as processing payment.
322
+     *
323
+     * @param WPInv_Invoice $invoice
324
+     */
325
+    public function processing_invoice( $invoice ) {
326 326
 
327
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
328
-		$recipient = $invoice->get_email();
327
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
328
+        $recipient = $invoice->get_email();
329 329
 
330
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
331
-
332
-	}
333
-
334
-	/**
335
-	 * Sends a notification whenever an invoice is paid.
336
-	 *
337
-	 * @param WPInv_Invoice $invoice
338
-	 */
339
-	public function completed_invoice( $invoice ) {
330
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
331
+
332
+    }
333
+
334
+    /**
335
+     * Sends a notification whenever an invoice is paid.
336
+     *
337
+     * @param WPInv_Invoice $invoice
338
+     */
339
+    public function completed_invoice( $invoice ) {
340 340
 
341
-		// (Maybe) abort if it is a renewal invoice.
342
-		if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) {
343
-			return;
344
-		}
341
+        // (Maybe) abort if it is a renewal invoice.
342
+        if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) {
343
+            return;
344
+        }
345 345
 
346
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
347
-		$recipient = $invoice->get_email();
346
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
347
+        $recipient = $invoice->get_email();
348 348
 
349
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
349
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
350 350
 
351
-	}
351
+    }
352 352
 
353
-	/**
354
-	 * Sends a notification whenever an invoice is refunded.
355
-	 *
356
-	 * @param WPInv_Invoice $invoice
357
-	 */
358
-	public function refunded_invoice( $invoice ) {
353
+    /**
354
+     * Sends a notification whenever an invoice is refunded.
355
+     *
356
+     * @param WPInv_Invoice $invoice
357
+     */
358
+    public function refunded_invoice( $invoice ) {
359 359
 
360
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
361
-		$recipient = $invoice->get_email();
360
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
361
+        $recipient = $invoice->get_email();
362 362
 
363
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
363
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
364 364
 
365
-	}
365
+    }
366 366
 
367
-	/**
368
-	 * Notifies a user about new invoices
369
-	 *
370
-	 * @param WPInv_Invoice $invoice
371
-	 * @param bool $force
372
-	 */
373
-	public function user_invoice( $invoice, $force = false ) {
367
+    /**
368
+     * Notifies a user about new invoices
369
+     *
370
+     * @param WPInv_Invoice $invoice
371
+     * @param bool $force
372
+     */
373
+    public function user_invoice( $invoice, $force = false ) {
374 374
 
375
-		if ( ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) {
376
-			return;
377
-		}
378
-
379
-		// Only send this email for invoices created via the admin page.
380
-		if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) {
381
-			return;
382
-		}
375
+        if ( ! empty( $GLOBALS['wpinv_skip_invoice_notification'] ) ) {
376
+            return;
377
+        }
378
+
379
+        // Only send this email for invoices created via the admin page.
380
+        if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_paid() || ( empty( $force ) && $this->is_payment_form_invoice( $invoice->get_id() ) ) ) {
381
+            return;
382
+        }
383 383
 
384
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
385
-		$recipient = $invoice->get_email();
384
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
385
+        $recipient = $invoice->get_email();
386 386
 
387
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
387
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient );
388 388
 
389
-	}
390
-
391
-	/**
392
-	 * Checks if an invoice is a payment form invoice.
393
-	 *
394
-	 * @param int $invoice
395
-	 * @return bool
396
-	 */
397
-	public function is_payment_form_invoice( $invoice ) {
398
-		$is_payment_form_invoice = empty( $_GET['getpaid-admin-action'] ) && ( 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ) || 'geodirectory' == get_post_meta( $invoice, 'wpinv_created_via', true ) );
399
-		return apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice );
400
-	}
389
+    }
390
+
391
+    /**
392
+     * Checks if an invoice is a payment form invoice.
393
+     *
394
+     * @param int $invoice
395
+     * @return bool
396
+     */
397
+    public function is_payment_form_invoice( $invoice ) {
398
+        $is_payment_form_invoice = empty( $_GET['getpaid-admin-action'] ) && ( 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ) || 'geodirectory' == get_post_meta( $invoice, 'wpinv_created_via', true ) );
399
+        return apply_filters( 'getpaid_invoice_notifications_is_payment_form_invoice', $is_payment_form_invoice, $invoice );
400
+    }
401 401
 
402
-	/**
403
-	 * Notifies admin about new invoice notes
404
-	 *
405
-	 * @param WPInv_Invoice $invoice
406
-	 * @param string $note
407
-	 */
408
-	public function user_note( $invoice, $note ) {
409
-
410
-		$email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
411
-		$recipient = $invoice->get_email();
402
+    /**
403
+     * Notifies admin about new invoice notes
404
+     *
405
+     * @param WPInv_Invoice $invoice
406
+     * @param string $note
407
+     */
408
+    public function user_note( $invoice, $note ) {
409
+
410
+        $email     = new GetPaid_Notification_Email( __FUNCTION__, $invoice );
411
+        $recipient = $invoice->get_email();
412 412
 
413
-		return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) );
414
-
415
-	}
416
-
417
-	/**
418
-	 * (Force) Sends overdue notices.
419
-	 *
420
-	 * @param WPInv_Invoice $invoice
421
-	 */
422
-	public function force_send_overdue_notice( $invoice ) {
423
-		$email = new GetPaid_Notification_Email( 'overdue', $invoice );
424
-		return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() );
425
-	}
426
-
427
-	/**
428
-	 * Sends overdue notices.
429
-	 *
430
-	 * @TODO: Create an invoices query class.
431
-	 */
432
-	public function overdue() {
433
-		global $wpdb;
434
-
435
-		$email = new GetPaid_Notification_Email( __FUNCTION__ );
436
-
437
-		// Fetch reminder days.
438
-		$reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) );
439
-
440
-		// Abort if non is set.
441
-		if ( empty( $reminder_days ) ) {
442
-			return;
443
-		}
444
-
445
-		// Retrieve date query.
446
-		$date_query = $this->get_date_query( $reminder_days );
447
-
448
-		// Invoices table.
449
-		$table = $wpdb->prefix . 'getpaid_invoices';
450
-
451
-		// Fetch invoices.
452
-		$invoices  = $wpdb->get_col(
453
-			"SELECT posts.ID FROM $wpdb->posts as posts
413
+        return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) );
414
+
415
+    }
416
+
417
+    /**
418
+     * (Force) Sends overdue notices.
419
+     *
420
+     * @param WPInv_Invoice $invoice
421
+     */
422
+    public function force_send_overdue_notice( $invoice ) {
423
+        $email = new GetPaid_Notification_Email( 'overdue', $invoice );
424
+        return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() );
425
+    }
426
+
427
+    /**
428
+     * Sends overdue notices.
429
+     *
430
+     * @TODO: Create an invoices query class.
431
+     */
432
+    public function overdue() {
433
+        global $wpdb;
434
+
435
+        $email = new GetPaid_Notification_Email( __FUNCTION__ );
436
+
437
+        // Fetch reminder days.
438
+        $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) );
439
+
440
+        // Abort if non is set.
441
+        if ( empty( $reminder_days ) ) {
442
+            return;
443
+        }
444
+
445
+        // Retrieve date query.
446
+        $date_query = $this->get_date_query( $reminder_days );
447
+
448
+        // Invoices table.
449
+        $table = $wpdb->prefix . 'getpaid_invoices';
450
+
451
+        // Fetch invoices.
452
+        $invoices  = $wpdb->get_col(
453
+            "SELECT posts.ID FROM $wpdb->posts as posts
454 454
 			LEFT JOIN $table as invoices ON invoices.post_id = posts.ID
455 455
 			WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query");
456 456
 
457
-		foreach ( $invoices as $invoice ) {
457
+        foreach ( $invoices as $invoice ) {
458 458
 
459
-			// Only send this email for invoices created via the admin page.
460
-			if ( ! $this->is_payment_form_invoice( $invoice ) ) {
461
-				$invoice       = new WPInv_Invoice( $invoice );
462
-				$email->object = $invoice;
459
+            // Only send this email for invoices created via the admin page.
460
+            if ( ! $this->is_payment_form_invoice( $invoice ) ) {
461
+                $invoice       = new WPInv_Invoice( $invoice );
462
+                $email->object = $invoice;
463 463
 
464
-				if ( $invoice->needs_payment() ) {
465
-					$this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() );
466
-				}
464
+                if ( $invoice->needs_payment() ) {
465
+                    $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() );
466
+                }
467 467
 
468
-			}
468
+            }
469 469
 
470
-		}
470
+        }
471 471
 
472
-	}
472
+    }
473 473
 
474
-	/**
475
-	 * Calculates the date query for an invoices query
476
-	 *
477
-	 * @param array $reminder_days
478
-	 * @return string
479
-	 */
480
-	public function get_date_query( $reminder_days ) {
474
+    /**
475
+     * Calculates the date query for an invoices query
476
+     *
477
+     * @param array $reminder_days
478
+     * @return string
479
+     */
480
+    public function get_date_query( $reminder_days ) {
481 481
 
482
-		$date_query = array(
483
-			'relation'  => 'OR'
484
-		);
482
+        $date_query = array(
483
+            'relation'  => 'OR'
484
+        );
485 485
 
486
-		foreach ( $reminder_days as $days ) {
487
-			$date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) );
486
+        foreach ( $reminder_days as $days ) {
487
+            $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) );
488 488
 
489
-			$date_query[] = array(
490
-				'year'  => $date['year'],
491
-				'month' => $date['month'],
492
-				'day'   => $date['day'],
493
-			);
489
+            $date_query[] = array(
490
+                'year'  => $date['year'],
491
+                'month' => $date['month'],
492
+                'day'   => $date['day'],
493
+            );
494 494
 
495
-		}
495
+        }
496 496
 
497
-		$date_query = new WP_Date_Query( $date_query, 'invoices.due_date' );
497
+        $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' );
498 498
 
499
-		return $date_query->get_sql();
499
+        return $date_query->get_sql();
500 500
 
501
-	}
501
+    }
502 502
 
503 503
 }
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,40 +7,40 @@
 block discarded – undo
7 7
  * Bail if we are not in WP.
8 8
  */
9 9
 if ( ! defined( 'ABSPATH' ) ) {
10
-	exit;
10
+    exit;
11 11
 }
12 12
 
13 13
 /**
14 14
  * Set the version only if its the current newest while loading.
15 15
  */
16 16
 add_action('after_setup_theme', function () {
17
-	global $ayecode_ui_version,$ayecode_ui_file_key;
18
-	$this_version = "0.1.64";
19
-	if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
-		$ayecode_ui_version = $this_version ;
21
-		$ayecode_ui_file_key = wp_hash( __FILE__ );
22
-	}
17
+    global $ayecode_ui_version,$ayecode_ui_file_key;
18
+    $this_version = "0.1.64";
19
+    if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
+        $ayecode_ui_version = $this_version ;
21
+        $ayecode_ui_file_key = wp_hash( __FILE__ );
22
+    }
23 23
 },0);
24 24
 
25 25
 /**
26 26
  * Load this version of WP Bootstrap Settings only if the file hash is the current one.
27 27
  */
28 28
 add_action('after_setup_theme', function () {
29
-	global $ayecode_ui_file_key;
30
-	if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
-		include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
-		include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
-	}
29
+    global $ayecode_ui_file_key;
30
+    if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
+        include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
+        include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
+    }
34 34
 },1);
35 35
 
36 36
 /**
37 37
  * Add the function that calls the class.
38 38
  */
39 39
 if(!function_exists('aui')){
40
-	function aui(){
41
-		if(!class_exists("AUI",false)){
42
-			return false;
43
-		}
44
-		return AUI::instance();
45
-	}
40
+    function aui(){
41
+        if(!class_exists("AUI",false)){
42
+            return false;
43
+        }
44
+        return AUI::instance();
45
+    }
46 46
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 1 patch
Indentation   +1222 added lines, -1222 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * Bail if we are not in WP.
14 14
  */
15 15
 if ( ! defined( 'ABSPATH' ) ) {
16
-	exit;
16
+    exit;
17 17
 }
18 18
 
19 19
 /**
@@ -21,276 +21,276 @@  discard block
 block discarded – undo
21 21
  */
22 22
 if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
23 23
 
24
-	/**
25
-	 * A Class to be able to change settings for Font Awesome.
26
-	 *
27
-	 * Class AyeCode_UI_Settings
28
-	 * @ver 1.0.0
29
-	 * @todo decide how to implement textdomain
30
-	 */
31
-	class AyeCode_UI_Settings {
32
-
33
-		/**
34
-		 * Class version version.
35
-		 *
36
-		 * @var string
37
-		 */
38
-		public $version = '0.1.64';
39
-
40
-		/**
41
-		 * Class textdomain.
42
-		 *
43
-		 * @var string
44
-		 */
45
-		public $textdomain = 'aui';
46
-
47
-		/**
48
-		 * Latest version of Bootstrap at time of publish published.
49
-		 *
50
-		 * @var string
51
-		 */
52
-		public $latest = "4.5.3";
53
-
54
-		/**
55
-		 * Current version of select2 being used.
56
-		 *
57
-		 * @var string
58
-		 */
59
-		public $select2_version = "4.0.11";
60
-
61
-		/**
62
-		 * The title.
63
-		 *
64
-		 * @var string
65
-		 */
66
-		public $name = 'AyeCode UI';
67
-
68
-		/**
69
-		 * The relative url to the assets.
70
-		 *
71
-		 * @var string
72
-		 */
73
-		public $url = '';
74
-
75
-		/**
76
-		 * Holds the settings values.
77
-		 *
78
-		 * @var array
79
-		 */
80
-		private $settings;
81
-
82
-		/**
83
-		 * AyeCode_UI_Settings instance.
84
-		 *
85
-		 * @access private
86
-		 * @since  1.0.0
87
-		 * @var    AyeCode_UI_Settings There can be only one!
88
-		 */
89
-		private static $instance = null;
90
-
91
-		/**
92
-		 * Main AyeCode_UI_Settings Instance.
93
-		 *
94
-		 * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
-		 *
96
-		 * @since 1.0.0
97
-		 * @static
98
-		 * @return AyeCode_UI_Settings - Main instance.
99
-		 */
100
-		public static function instance() {
101
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
-
103
-				self::$instance = new AyeCode_UI_Settings;
104
-
105
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
-
107
-				if ( is_admin() ) {
108
-					add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
-					add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
-
111
-					// Maybe show example page
112
-					add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
-				}
24
+    /**
25
+     * A Class to be able to change settings for Font Awesome.
26
+     *
27
+     * Class AyeCode_UI_Settings
28
+     * @ver 1.0.0
29
+     * @todo decide how to implement textdomain
30
+     */
31
+    class AyeCode_UI_Settings {
32
+
33
+        /**
34
+         * Class version version.
35
+         *
36
+         * @var string
37
+         */
38
+        public $version = '0.1.64';
39
+
40
+        /**
41
+         * Class textdomain.
42
+         *
43
+         * @var string
44
+         */
45
+        public $textdomain = 'aui';
46
+
47
+        /**
48
+         * Latest version of Bootstrap at time of publish published.
49
+         *
50
+         * @var string
51
+         */
52
+        public $latest = "4.5.3";
53
+
54
+        /**
55
+         * Current version of select2 being used.
56
+         *
57
+         * @var string
58
+         */
59
+        public $select2_version = "4.0.11";
60
+
61
+        /**
62
+         * The title.
63
+         *
64
+         * @var string
65
+         */
66
+        public $name = 'AyeCode UI';
67
+
68
+        /**
69
+         * The relative url to the assets.
70
+         *
71
+         * @var string
72
+         */
73
+        public $url = '';
74
+
75
+        /**
76
+         * Holds the settings values.
77
+         *
78
+         * @var array
79
+         */
80
+        private $settings;
81
+
82
+        /**
83
+         * AyeCode_UI_Settings instance.
84
+         *
85
+         * @access private
86
+         * @since  1.0.0
87
+         * @var    AyeCode_UI_Settings There can be only one!
88
+         */
89
+        private static $instance = null;
90
+
91
+        /**
92
+         * Main AyeCode_UI_Settings Instance.
93
+         *
94
+         * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
+         *
96
+         * @since 1.0.0
97
+         * @static
98
+         * @return AyeCode_UI_Settings - Main instance.
99
+         */
100
+        public static function instance() {
101
+            if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
+
103
+                self::$instance = new AyeCode_UI_Settings;
104
+
105
+                add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
+
107
+                if ( is_admin() ) {
108
+                    add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
+                    add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
+
111
+                    // Maybe show example page
112
+                    add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
+                }
114 114
 
115
-				add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
115
+                add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
116 116
 
117
-				do_action( 'ayecode_ui_settings_loaded' );
118
-			}
117
+                do_action( 'ayecode_ui_settings_loaded' );
118
+            }
119 119
 
120
-			return self::$instance;
121
-		}
120
+            return self::$instance;
121
+        }
122 122
 
123
-		/**
124
-		 * Setup some constants.
125
-		 */
126
-		public function constants(){
127
-			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
-			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
-			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
-			if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
-		}
123
+        /**
124
+         * Setup some constants.
125
+         */
126
+        public function constants(){
127
+            define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
+            define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
+            if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
+            if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
+        }
132 132
 
133
-		/**
134
-		 * Initiate the settings and add the required action hooks.
135
-		 */
136
-		public function init() {
137
-
138
-			// Maybe fix settings
139
-			if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
-				$db_settings = get_option( 'ayecode-ui-settings' );
141
-				if ( ! empty( $db_settings ) ) {
142
-					$db_settings['css_backend'] = 'compatibility';
143
-					$db_settings['js_backend'] = 'core-popper';
144
-					update_option( 'ayecode-ui-settings', $db_settings );
145
-					wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
-				}
147
-			}
133
+        /**
134
+         * Initiate the settings and add the required action hooks.
135
+         */
136
+        public function init() {
137
+
138
+            // Maybe fix settings
139
+            if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
+                $db_settings = get_option( 'ayecode-ui-settings' );
141
+                if ( ! empty( $db_settings ) ) {
142
+                    $db_settings['css_backend'] = 'compatibility';
143
+                    $db_settings['js_backend'] = 'core-popper';
144
+                    update_option( 'ayecode-ui-settings', $db_settings );
145
+                    wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
+                }
147
+            }
148 148
 
149
-			$this->constants();
150
-			$this->settings = $this->get_settings();
151
-			$this->url = $this->get_url();
149
+            $this->constants();
150
+            $this->settings = $this->get_settings();
151
+            $this->url = $this->get_url();
152
+
153
+            /**
154
+             * Maybe load CSS
155
+             *
156
+             * We load super early in case there is a theme version that might change the colors
157
+             */
158
+            if ( $this->settings['css'] ) {
159
+                $priority = $this->is_bs3_compat() ? 100 : 1;
160
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
+            }
162
+            if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
+            }
152 165
 
153
-			/**
154
-			 * Maybe load CSS
155
-			 *
156
-			 * We load super early in case there is a theme version that might change the colors
157
-			 */
158
-			if ( $this->settings['css'] ) {
159
-				$priority = $this->is_bs3_compat() ? 100 : 1;
160
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
-			}
162
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
-			}
165
-
166
-			// maybe load JS
167
-			if ( $this->settings['js'] ) {
168
-				$priority = $this->is_bs3_compat() ? 100 : 1;
169
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
-			}
171
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
-			}
174
-
175
-			// Maybe set the HTML font size
176
-			if ( $this->settings['html_font_size'] ) {
177
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
-			}
179
-
180
-			// Maybe show backend style error
181
-			if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
-				add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
-			}
166
+            // maybe load JS
167
+            if ( $this->settings['js'] ) {
168
+                $priority = $this->is_bs3_compat() ? 100 : 1;
169
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
+            }
171
+            if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
+            }
184 174
 
185
-		}
175
+            // Maybe set the HTML font size
176
+            if ( $this->settings['html_font_size'] ) {
177
+                add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
+            }
186 179
 
187
-		/**
188
-		 * Show admin notice if backend scripts not loaded.
189
-		 */
190
-		public function show_admin_style_notice(){
191
-			$fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
-			$button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
-			$message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
-			echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
-		}
180
+            // Maybe show backend style error
181
+            if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
+                add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
+            }
196 184
 
197
-		/**
198
-		 * Check if we should load the admin scripts or not.
199
-		 *
200
-		 * @return bool
201
-		 */
202
-		public function load_admin_scripts(){
203
-			$result = true;
204
-
205
-			// check if specifically disabled
206
-			if(!empty($this->settings['disable_admin'])){
207
-				$url_parts = explode("\n",$this->settings['disable_admin']);
208
-				foreach($url_parts as $part){
209
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
-						return false; // return early, no point checking further
211
-					}
212
-				}
213
-			}
185
+        }
214 186
 
215
-			return $result;
216
-		}
187
+        /**
188
+         * Show admin notice if backend scripts not loaded.
189
+         */
190
+        public function show_admin_style_notice(){
191
+            $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
+            $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
+            $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
+            echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
+        }
217 196
 
218
-		/**
219
-		 * Add a html font size to the footer.
220
-		 */
221
-		public function html_font_size(){
222
-			$this->settings = $this->get_settings();
223
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
-		}
197
+        /**
198
+         * Check if we should load the admin scripts or not.
199
+         *
200
+         * @return bool
201
+         */
202
+        public function load_admin_scripts(){
203
+            $result = true;
204
+
205
+            // check if specifically disabled
206
+            if(!empty($this->settings['disable_admin'])){
207
+                $url_parts = explode("\n",$this->settings['disable_admin']);
208
+                foreach($url_parts as $part){
209
+                    if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
+                        return false; // return early, no point checking further
211
+                    }
212
+                }
213
+            }
214
+
215
+            return $result;
216
+        }
217
+
218
+        /**
219
+         * Add a html font size to the footer.
220
+         */
221
+        public function html_font_size(){
222
+            $this->settings = $this->get_settings();
223
+            echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
+        }
225 225
 
226
-		/**
227
-		 * Check if the current admin screen should load scripts.
228
-		 * 
229
-		 * @return bool
230
-		 */
231
-		public function is_aui_screen(){
226
+        /**
227
+         * Check if the current admin screen should load scripts.
228
+         * 
229
+         * @return bool
230
+         */
231
+        public function is_aui_screen(){
232 232
 //			echo '###';exit;
233
-			$load = false;
234
-			// check if we should load or not
235
-			if ( is_admin() ) {
236
-				// Only enable on set pages
237
-				$aui_screens = array(
238
-					'page',
239
-					'post',
240
-					'settings_page_ayecode-ui-settings',
241
-					'appearance_page_gutenberg-widgets',
242
-					'widgets',
243
-					'ayecode-ui-settings',
244
-					'site-editor'
245
-				);
246
-				$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
-
248
-				$screen = get_current_screen();
233
+            $load = false;
234
+            // check if we should load or not
235
+            if ( is_admin() ) {
236
+                // Only enable on set pages
237
+                $aui_screens = array(
238
+                    'page',
239
+                    'post',
240
+                    'settings_page_ayecode-ui-settings',
241
+                    'appearance_page_gutenberg-widgets',
242
+                    'widgets',
243
+                    'ayecode-ui-settings',
244
+                    'site-editor'
245
+                );
246
+                $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
+
248
+                $screen = get_current_screen();
249 249
 
250 250
 //				echo '###'.$screen->id;
251 251
 
252
-				// check if we are on a AUI screen
253
-				if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
-					$load = true;
255
-				}
252
+                // check if we are on a AUI screen
253
+                if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
+                    $load = true;
255
+                }
256 256
 
257
-				//load for widget previews in WP 5.8
258
-				if( !empty($_REQUEST['legacy-widget-preview'])){
259
-					$load = true;
260
-				}
261
-			}
257
+                //load for widget previews in WP 5.8
258
+                if( !empty($_REQUEST['legacy-widget-preview'])){
259
+                    $load = true;
260
+                }
261
+            }
262 262
 
263
-			return apply_filters( 'aui_load_on_admin' , $load );
264
-		}
263
+            return apply_filters( 'aui_load_on_admin' , $load );
264
+        }
265 265
 
266
-		/**
267
-		 * Adds the styles.
268
-		 */
269
-		public function enqueue_style() {
266
+        /**
267
+         * Adds the styles.
268
+         */
269
+        public function enqueue_style() {
270 270
 
271 271
 
272
-			if( is_admin() && !$this->is_aui_screen()){
273
-				// don't add wp-admin scripts if not requested to
274
-			}else{
275
-				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
272
+            if( is_admin() && !$this->is_aui_screen()){
273
+                // don't add wp-admin scripts if not requested to
274
+            }else{
275
+                $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
276 276
 
277
-				$rtl = is_rtl() ? '-rtl' : '';
277
+                $rtl = is_rtl() ? '-rtl' : '';
278 278
 
279
-				if($this->settings[$css_setting]){
280
-					$compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
-					$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
-					wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
283
-					wp_enqueue_style( 'ayecode-ui' );
279
+                if($this->settings[$css_setting]){
280
+                    $compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
+                    $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
+                    wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
283
+                    wp_enqueue_style( 'ayecode-ui' );
284 284
 
285
-					// flatpickr
286
-					wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
285
+                    // flatpickr
286
+                    wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
287 287
 
288
-					// fontawesome-iconpicker
289
-					//wp_register_style( 'fontawesome-iconpicker', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
288
+                    // fontawesome-iconpicker
289
+                    //wp_register_style( 'fontawesome-iconpicker', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
290 290
 
291
-					// fix some wp-admin issues
292
-					if(is_admin()){
293
-						$custom_css = "
291
+                    // fix some wp-admin issues
292
+                    if(is_admin()){
293
+                        $custom_css = "
294 294
                 body{
295 295
                     background-color: #f1f1f1;
296 296
                     font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;
@@ -336,35 +336,35 @@  discard block
 block discarded – undo
336 336
 				}
337 337
                 ";
338 338
 
339
-						// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
340
-						$custom_css .= "
339
+                        // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
340
+                        $custom_css .= "
341 341
 						.edit-post-sidebar input[type=color].components-text-control__input{
342 342
 						    padding: 0;
343 343
 						}
344 344
 					";
345
-						wp_add_inline_style( 'ayecode-ui', $custom_css );
346
-					}
345
+                        wp_add_inline_style( 'ayecode-ui', $custom_css );
346
+                    }
347 347
 
348
-					// custom changes
349
-					wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
348
+                    // custom changes
349
+                    wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
350 350
 
351
-				}
352
-			}
351
+                }
352
+            }
353 353
 
354 354
 
355
-		}
355
+        }
356 356
 
357
-		/**
358
-		 * Get inline script used if bootstrap enqueued
359
-		 *
360
-		 * If this remains small then its best to use this than to add another JS file.
361
-		 */
362
-		public function inline_script() {
363
-			// Flatpickr calendar locale
364
-			$flatpickr_locale = self::flatpickr_locale();
365
-
366
-			ob_start();
367
-			?>
357
+        /**
358
+         * Get inline script used if bootstrap enqueued
359
+         *
360
+         * If this remains small then its best to use this than to add another JS file.
361
+         */
362
+        public function inline_script() {
363
+            // Flatpickr calendar locale
364
+            $flatpickr_locale = self::flatpickr_locale();
365
+
366
+            ob_start();
367
+            ?>
368 368
 			<script>
369 369
 				/**
370 370
 				 * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
@@ -1199,29 +1199,29 @@  discard block
 block discarded – undo
1199 1199
 				}
1200 1200
 			</script>
1201 1201
 			<?php
1202
-			$output = ob_get_clean();
1202
+            $output = ob_get_clean();
1203 1203
 
1204 1204
 
1205 1205
 
1206
-			/*
1206
+            /*
1207 1207
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1208 1208
 			 */
1209
-			return str_replace( array(
1210
-				'<script>',
1211
-				'</script>'
1212
-			), '', self::minify_js($output) );
1213
-		}
1209
+            return str_replace( array(
1210
+                '<script>',
1211
+                '</script>'
1212
+            ), '', self::minify_js($output) );
1213
+        }
1214 1214
 
1215 1215
 
1216
-		/**
1217
-		 * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1218
-		 *
1219
-		 * @TODO we may need this when other conflicts arrise.
1220
-		 * @return mixed
1221
-		 */
1222
-		public static function bs3_compat_js() {
1223
-			ob_start();
1224
-			?>
1216
+        /**
1217
+         * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1218
+         *
1219
+         * @TODO we may need this when other conflicts arrise.
1220
+         * @return mixed
1221
+         */
1222
+        public static function bs3_compat_js() {
1223
+            ob_start();
1224
+            ?>
1225 1225
 			<script>
1226 1226
 				<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1227 1227
 				/* With Avada builder */
@@ -1229,20 +1229,20 @@  discard block
 block discarded – undo
1229 1229
 				<?php } ?>
1230 1230
 			</script>
1231 1231
 			<?php
1232
-			return str_replace( array(
1233
-				'<script>',
1234
-				'</script>'
1235
-			), '', ob_get_clean());
1236
-		}
1232
+            return str_replace( array(
1233
+                '<script>',
1234
+                '</script>'
1235
+            ), '', ob_get_clean());
1236
+        }
1237 1237
 
1238
-		/**
1239
-		 * Get inline script used if bootstrap file browser enqueued.
1240
-		 *
1241
-		 * If this remains small then its best to use this than to add another JS file.
1242
-		 */
1243
-		public function inline_script_file_browser(){
1244
-			ob_start();
1245
-			?>
1238
+        /**
1239
+         * Get inline script used if bootstrap file browser enqueued.
1240
+         *
1241
+         * If this remains small then its best to use this than to add another JS file.
1242
+         */
1243
+        public function inline_script_file_browser(){
1244
+            ob_start();
1245
+            ?>
1246 1246
 			<script>
1247 1247
 				// run on doc ready
1248 1248
 				jQuery(document).ready(function () {
@@ -1250,203 +1250,203 @@  discard block
 block discarded – undo
1250 1250
 				});
1251 1251
 			</script>
1252 1252
 			<?php
1253
-			$output = ob_get_clean();
1253
+            $output = ob_get_clean();
1254 1254
 
1255
-			/*
1255
+            /*
1256 1256
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1257 1257
 			 */
1258
-			return str_replace( array(
1259
-				'<script>',
1260
-				'</script>'
1261
-			), '', $output );
1262
-		}
1258
+            return str_replace( array(
1259
+                '<script>',
1260
+                '</script>'
1261
+            ), '', $output );
1262
+        }
1263 1263
 
1264
-		/**
1265
-		 * Adds the Font Awesome JS.
1266
-		 */
1267
-		public function enqueue_scripts() {
1264
+        /**
1265
+         * Adds the Font Awesome JS.
1266
+         */
1267
+        public function enqueue_scripts() {
1268 1268
 
1269
-			if( is_admin() && !$this->is_aui_screen()){
1270
-				// don't add wp-admin scripts if not requested to
1271
-			}else {
1269
+            if( is_admin() && !$this->is_aui_screen()){
1270
+                // don't add wp-admin scripts if not requested to
1271
+            }else {
1272 1272
 
1273
-				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1273
+                $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1274 1274
 
1275
-				// select2
1276
-				wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1275
+                // select2
1276
+                wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1277 1277
 
1278
-				// flatpickr
1279
-				wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest );
1278
+                // flatpickr
1279
+                wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest );
1280 1280
 
1281
-				// flatpickr
1282
-				wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->latest );
1281
+                // flatpickr
1282
+                wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->latest );
1283 1283
 				
1284
-				// Bootstrap file browser
1285
-				wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1286
-				wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1287
-
1288
-				$load_inline = false;
1289
-
1290
-				if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1291
-					// Bootstrap bundle
1292
-					$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1293
-					wp_register_script( 'bootstrap-js-bundle', $url, array(
1294
-						'select2',
1295
-						'jquery'
1296
-					), $this->latest, $this->is_bs3_compat() );
1297
-					// if in admin then add to footer for compatibility.
1298
-					is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1299
-					$script = $this->inline_script();
1300
-					wp_add_inline_script( 'bootstrap-js-bundle', $script );
1301
-				} elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1302
-					$url = $this->url . 'assets/js/popper.min.js';
1303
-					wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest );
1304
-					wp_enqueue_script( 'bootstrap-js-popper' );
1305
-					$load_inline = true;
1306
-				} else {
1307
-					$load_inline = true;
1308
-				}
1284
+                // Bootstrap file browser
1285
+                wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1286
+                wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1287
+
1288
+                $load_inline = false;
1289
+
1290
+                if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1291
+                    // Bootstrap bundle
1292
+                    $url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1293
+                    wp_register_script( 'bootstrap-js-bundle', $url, array(
1294
+                        'select2',
1295
+                        'jquery'
1296
+                    ), $this->latest, $this->is_bs3_compat() );
1297
+                    // if in admin then add to footer for compatibility.
1298
+                    is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1299
+                    $script = $this->inline_script();
1300
+                    wp_add_inline_script( 'bootstrap-js-bundle', $script );
1301
+                } elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1302
+                    $url = $this->url . 'assets/js/popper.min.js';
1303
+                    wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest );
1304
+                    wp_enqueue_script( 'bootstrap-js-popper' );
1305
+                    $load_inline = true;
1306
+                } else {
1307
+                    $load_inline = true;
1308
+                }
1309 1309
 
1310
-				// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1311
-				if ( $load_inline ) {
1312
-					wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1313
-					wp_enqueue_script( 'bootstrap-dummy' );
1314
-					$script = $this->inline_script();
1315
-					wp_add_inline_script( 'bootstrap-dummy', $script );
1316
-				}
1317
-			}
1310
+                // Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1311
+                if ( $load_inline ) {
1312
+                    wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1313
+                    wp_enqueue_script( 'bootstrap-dummy' );
1314
+                    $script = $this->inline_script();
1315
+                    wp_add_inline_script( 'bootstrap-dummy', $script );
1316
+                }
1317
+            }
1318 1318
 
1319
-		}
1319
+        }
1320 1320
 
1321
-		/**
1322
-		 * Enqueue flatpickr if called.
1323
-		 */
1324
-		public function enqueue_flatpickr(){
1325
-			wp_enqueue_style( 'flatpickr' );
1326
-			wp_enqueue_script( 'flatpickr' );
1327
-		}
1321
+        /**
1322
+         * Enqueue flatpickr if called.
1323
+         */
1324
+        public function enqueue_flatpickr(){
1325
+            wp_enqueue_style( 'flatpickr' );
1326
+            wp_enqueue_script( 'flatpickr' );
1327
+        }
1328 1328
 
1329
-		/**
1330
-		 * Enqueue iconpicker if called.
1331
-		 */
1332
-		public function enqueue_iconpicker(){
1333
-			wp_enqueue_style( 'iconpicker' );
1334
-			wp_enqueue_script( 'iconpicker' );
1335
-		}
1329
+        /**
1330
+         * Enqueue iconpicker if called.
1331
+         */
1332
+        public function enqueue_iconpicker(){
1333
+            wp_enqueue_style( 'iconpicker' );
1334
+            wp_enqueue_script( 'iconpicker' );
1335
+        }
1336 1336
 
1337
-		/**
1338
-		 * Get the url path to the current folder.
1339
-		 *
1340
-		 * @return string
1341
-		 */
1342
-		public function get_url() {
1337
+        /**
1338
+         * Get the url path to the current folder.
1339
+         *
1340
+         * @return string
1341
+         */
1342
+        public function get_url() {
1343 1343
 
1344
-			$url = '';
1345
-			// check if we are inside a plugin
1346
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1344
+            $url = '';
1345
+            // check if we are inside a plugin
1346
+            $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1347 1347
 
1348
-			// add check in-case user has changed wp-content dir name.
1349
-			$wp_content_folder_name = basename(WP_CONTENT_DIR);
1350
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1351
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
1348
+            // add check in-case user has changed wp-content dir name.
1349
+            $wp_content_folder_name = basename(WP_CONTENT_DIR);
1350
+            $dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1351
+            $url_parts = explode("/$wp_content_folder_name/",plugins_url());
1352 1352
 
1353
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1354
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1355
-			}
1353
+            if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1354
+                $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1355
+            }
1356 1356
 
1357
-			return $url;
1358
-		}
1357
+            return $url;
1358
+        }
1359 1359
 
1360
-		/**
1361
-		 * Register the database settings with WordPress.
1362
-		 */
1363
-		public function register_settings() {
1364
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1365
-		}
1360
+        /**
1361
+         * Register the database settings with WordPress.
1362
+         */
1363
+        public function register_settings() {
1364
+            register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1365
+        }
1366 1366
 
1367
-		/**
1368
-		 * Add the WordPress settings menu item.
1369
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1370
-		 */
1371
-		public function menu_item() {
1372
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1373
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1374
-				$this,
1375
-				'settings_page'
1376
-			) );
1377
-		}
1367
+        /**
1368
+         * Add the WordPress settings menu item.
1369
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1370
+         */
1371
+        public function menu_item() {
1372
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1373
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1374
+                $this,
1375
+                'settings_page'
1376
+            ) );
1377
+        }
1378 1378
 
1379
-		/**
1380
-		 * Get a list of themes and their default JS settings.
1381
-		 *
1382
-		 * @return array
1383
-		 */
1384
-		public function theme_js_settings(){
1385
-			return array(
1386
-				'ayetheme' => 'popper',
1387
-				'listimia' => 'required',
1388
-				'listimia_backend' => 'core-popper',
1389
-				//'avada'    => 'required', // removed as we now add compatibility
1390
-			);
1391
-		}
1379
+        /**
1380
+         * Get a list of themes and their default JS settings.
1381
+         *
1382
+         * @return array
1383
+         */
1384
+        public function theme_js_settings(){
1385
+            return array(
1386
+                'ayetheme' => 'popper',
1387
+                'listimia' => 'required',
1388
+                'listimia_backend' => 'core-popper',
1389
+                //'avada'    => 'required', // removed as we now add compatibility
1390
+            );
1391
+        }
1392 1392
 
1393
-		/**
1394
-		 * Get the current Font Awesome output settings.
1395
-		 *
1396
-		 * @return array The array of settings.
1397
-		 */
1398
-		public function get_settings() {
1399
-
1400
-			$db_settings = get_option( 'ayecode-ui-settings' );
1401
-			$js_default = 'core-popper';
1402
-			$js_default_backend = $js_default;
1403
-
1404
-			// maybe set defaults (if no settings set)
1405
-			if(empty($db_settings)){
1406
-				$active_theme = strtolower( get_template() ); // active parent theme.
1407
-				$theme_js_settings = self::theme_js_settings();
1408
-				if(isset($theme_js_settings[$active_theme])){
1409
-					$js_default = $theme_js_settings[$active_theme];
1410
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1411
-				}
1412
-			}
1413
-
1414
-			$defaults = array(
1415
-				'css'       => 'compatibility', // core, compatibility
1416
-				'js'        => $js_default, // js to load, core-popper, popper
1417
-				'html_font_size'        => '16', // js to load, core-popper, popper
1418
-				'css_backend'       => 'compatibility', // core, compatibility
1419
-				'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1420
-				'disable_admin'     =>  '', // URL snippets to disable loading on admin
1421
-			);
1422
-
1423
-			$settings = wp_parse_args( $db_settings, $defaults );
1424
-
1425
-			/**
1426
-			 * Filter the Bootstrap settings.
1427
-			 *
1428
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1429
-			 */
1430
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1431
-		}
1393
+        /**
1394
+         * Get the current Font Awesome output settings.
1395
+         *
1396
+         * @return array The array of settings.
1397
+         */
1398
+        public function get_settings() {
1399
+
1400
+            $db_settings = get_option( 'ayecode-ui-settings' );
1401
+            $js_default = 'core-popper';
1402
+            $js_default_backend = $js_default;
1403
+
1404
+            // maybe set defaults (if no settings set)
1405
+            if(empty($db_settings)){
1406
+                $active_theme = strtolower( get_template() ); // active parent theme.
1407
+                $theme_js_settings = self::theme_js_settings();
1408
+                if(isset($theme_js_settings[$active_theme])){
1409
+                    $js_default = $theme_js_settings[$active_theme];
1410
+                    $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1411
+                }
1412
+            }
1413
+
1414
+            $defaults = array(
1415
+                'css'       => 'compatibility', // core, compatibility
1416
+                'js'        => $js_default, // js to load, core-popper, popper
1417
+                'html_font_size'        => '16', // js to load, core-popper, popper
1418
+                'css_backend'       => 'compatibility', // core, compatibility
1419
+                'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1420
+                'disable_admin'     =>  '', // URL snippets to disable loading on admin
1421
+            );
1422
+
1423
+            $settings = wp_parse_args( $db_settings, $defaults );
1424
+
1425
+            /**
1426
+             * Filter the Bootstrap settings.
1427
+             *
1428
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1429
+             */
1430
+            return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1431
+        }
1432 1432
 
1433 1433
 
1434
-		/**
1435
-		 * The settings page html output.
1436
-		 */
1437
-		public function settings_page() {
1438
-			if ( ! current_user_can( 'manage_options' ) ) {
1439
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1440
-			}
1441
-			?>
1434
+        /**
1435
+         * The settings page html output.
1436
+         */
1437
+        public function settings_page() {
1438
+            if ( ! current_user_can( 'manage_options' ) ) {
1439
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1440
+            }
1441
+            ?>
1442 1442
 			<div class="wrap">
1443 1443
 				<h1><?php echo $this->name; ?></h1>
1444 1444
 				<p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p>
1445 1445
 				<form method="post" action="options.php">
1446 1446
 					<?php
1447
-					settings_fields( 'ayecode-ui-settings' );
1448
-					do_settings_sections( 'ayecode-ui-settings' );
1449
-					?>
1447
+                    settings_fields( 'ayecode-ui-settings' );
1448
+                    do_settings_sections( 'ayecode-ui-settings' );
1449
+                    ?>
1450 1450
 
1451 1451
 					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
1452 1452
 					<table class="form-table wpbs-table-settings">
@@ -1526,60 +1526,60 @@  discard block
 block discarded – undo
1526 1526
 					</table>
1527 1527
 
1528 1528
 					<?php
1529
-					submit_button();
1530
-					?>
1529
+                    submit_button();
1530
+                    ?>
1531 1531
 				</form>
1532 1532
 
1533 1533
 				<div id="wpbs-version"><?php echo $this->version; ?></div>
1534 1534
 			</div>
1535 1535
 
1536 1536
 			<?php
1537
-		}
1537
+        }
1538 1538
 
1539
-		public function customizer_settings($wp_customize){
1540
-			$wp_customize->add_section('aui_settings', array(
1541
-				'title'    => __('AyeCode UI','aui'),
1542
-				'priority' => 120,
1543
-			));
1544
-
1545
-			//  =============================
1546
-			//  = Color Picker              =
1547
-			//  =============================
1548
-			$wp_customize->add_setting('aui_options[color_primary]', array(
1549
-				'default'           => AUI_PRIMARY_COLOR,
1550
-				'sanitize_callback' => 'sanitize_hex_color',
1551
-				'capability'        => 'edit_theme_options',
1552
-				'type'              => 'option',
1553
-				'transport'         => 'refresh',
1554
-			));
1555
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1556
-				'label'    => __('Primary Color','aui'),
1557
-				'section'  => 'aui_settings',
1558
-				'settings' => 'aui_options[color_primary]',
1559
-			)));
1560
-
1561
-			$wp_customize->add_setting('aui_options[color_secondary]', array(
1562
-				'default'           => '#6c757d',
1563
-				'sanitize_callback' => 'sanitize_hex_color',
1564
-				'capability'        => 'edit_theme_options',
1565
-				'type'              => 'option',
1566
-				'transport'         => 'refresh',
1567
-			));
1568
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1569
-				'label'    => __('Secondary Color','aui'),
1570
-				'section'  => 'aui_settings',
1571
-				'settings' => 'aui_options[color_secondary]',
1572
-			)));
1573
-		}
1539
+        public function customizer_settings($wp_customize){
1540
+            $wp_customize->add_section('aui_settings', array(
1541
+                'title'    => __('AyeCode UI','aui'),
1542
+                'priority' => 120,
1543
+            ));
1544
+
1545
+            //  =============================
1546
+            //  = Color Picker              =
1547
+            //  =============================
1548
+            $wp_customize->add_setting('aui_options[color_primary]', array(
1549
+                'default'           => AUI_PRIMARY_COLOR,
1550
+                'sanitize_callback' => 'sanitize_hex_color',
1551
+                'capability'        => 'edit_theme_options',
1552
+                'type'              => 'option',
1553
+                'transport'         => 'refresh',
1554
+            ));
1555
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1556
+                'label'    => __('Primary Color','aui'),
1557
+                'section'  => 'aui_settings',
1558
+                'settings' => 'aui_options[color_primary]',
1559
+            )));
1560
+
1561
+            $wp_customize->add_setting('aui_options[color_secondary]', array(
1562
+                'default'           => '#6c757d',
1563
+                'sanitize_callback' => 'sanitize_hex_color',
1564
+                'capability'        => 'edit_theme_options',
1565
+                'type'              => 'option',
1566
+                'transport'         => 'refresh',
1567
+            ));
1568
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1569
+                'label'    => __('Secondary Color','aui'),
1570
+                'section'  => 'aui_settings',
1571
+                'settings' => 'aui_options[color_secondary]',
1572
+            )));
1573
+        }
1574 1574
 
1575
-		/**
1576
-		 * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1577
-		 *
1578
-		 * @return mixed
1579
-		 */
1580
-		public static function bs3_compat_css() {
1581
-			ob_start();
1582
-			?>
1575
+        /**
1576
+         * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1577
+         *
1578
+         * @return mixed
1579
+         */
1580
+        public static function bs3_compat_css() {
1581
+            ob_start();
1582
+            ?>
1583 1583
 			<style>
1584 1584
 			/* Bootstrap 3 compatibility */
1585 1585
 			body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;}
@@ -1605,583 +1605,583 @@  discard block
 block discarded – undo
1605 1605
 			<?php } ?>
1606 1606
 			</style>
1607 1607
 			<?php
1608
-			return str_replace( array(
1609
-				'<style>',
1610
-				'</style>'
1611
-			), '', self::minify_css( ob_get_clean() ) );
1612
-		}
1608
+            return str_replace( array(
1609
+                '<style>',
1610
+                '</style>'
1611
+            ), '', self::minify_css( ob_get_clean() ) );
1612
+        }
1613 1613
 
1614 1614
 
1615
-		public static function custom_css($compatibility = true) {
1616
-			$settings = get_option('aui_options');
1615
+        public static function custom_css($compatibility = true) {
1616
+            $settings = get_option('aui_options');
1617 1617
 
1618
-			ob_start();
1618
+            ob_start();
1619 1619
 
1620
-			$primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1621
-			$secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1622
-				//AUI_PRIMARY_COLOR_ORIGINAL
1623
-			?>
1620
+            $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1621
+            $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1622
+                //AUI_PRIMARY_COLOR_ORIGINAL
1623
+            ?>
1624 1624
 			<style>
1625 1625
 				<?php
1626 1626
 
1627
-					// BS v3 compat
1628
-					if( self::is_bs3_compat() ){
1629
-					    echo self::bs3_compat_css();
1630
-					}
1627
+                    // BS v3 compat
1628
+                    if( self::is_bs3_compat() ){
1629
+                        echo self::bs3_compat_css();
1630
+                    }
1631 1631
 
1632
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1633
-						echo self::css_primary($primary_color,$compatibility);
1634
-					}
1632
+                    if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1633
+                        echo self::css_primary($primary_color,$compatibility);
1634
+                    }
1635 1635
 
1636
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1637
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1638
-					}
1636
+                    if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1637
+                        echo self::css_secondary($settings['color_secondary'],$compatibility);
1638
+                    }
1639 1639
 
1640
-					// Set admin bar z-index lower when modal is open.
1641
-					echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1640
+                    // Set admin bar z-index lower when modal is open.
1641
+                    echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1642 1642
 
1643
-					if(is_admin()){
1644
-						echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1645
-					}
1643
+                    if(is_admin()){
1644
+                        echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1645
+                    }
1646 1646
                 ?>
1647 1647
 			</style>
1648 1648
 			<?php
1649 1649
 
1650 1650
 
1651
-			/*
1651
+            /*
1652 1652
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1653 1653
 			 */
1654
-			return str_replace( array(
1655
-				'<style>',
1656
-				'</style>'
1657
-			), '', self::minify_css( ob_get_clean() ) );
1658
-		}
1654
+            return str_replace( array(
1655
+                '<style>',
1656
+                '</style>'
1657
+            ), '', self::minify_css( ob_get_clean() ) );
1658
+        }
1659 1659
 
1660
-		/**
1661
-		 * Check if we should add booststrap 3 compatibility changes.
1662
-		 *
1663
-		 * @return bool
1664
-		 */
1665
-		public static function is_bs3_compat(){
1666
-			return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1667
-		}
1660
+        /**
1661
+         * Check if we should add booststrap 3 compatibility changes.
1662
+         *
1663
+         * @return bool
1664
+         */
1665
+        public static function is_bs3_compat(){
1666
+            return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1667
+        }
1668 1668
 
1669
-		public static function css_primary($color_code,$compatibility){;
1670
-			$color_code = sanitize_hex_color($color_code);
1671
-			if(!$color_code){return '';}
1672
-			/**
1673
-			 * c = color, b = background color, o = border-color, f = fill
1674
-			 */
1675
-			$selectors = array(
1676
-				'a' => array('c'),
1677
-				'.btn-primary' => array('b','o'),
1678
-				'.btn-primary.disabled' => array('b','o'),
1679
-				'.btn-primary:disabled' => array('b','o'),
1680
-				'.btn-outline-primary' => array('c','o'),
1681
-				'.btn-outline-primary:hover' => array('b','o'),
1682
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1683
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1684
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1685
-				'.btn-link' => array('c'),
1686
-				'.dropdown-item.active' => array('b'),
1687
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1688
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1669
+        public static function css_primary($color_code,$compatibility){;
1670
+            $color_code = sanitize_hex_color($color_code);
1671
+            if(!$color_code){return '';}
1672
+            /**
1673
+             * c = color, b = background color, o = border-color, f = fill
1674
+             */
1675
+            $selectors = array(
1676
+                'a' => array('c'),
1677
+                '.btn-primary' => array('b','o'),
1678
+                '.btn-primary.disabled' => array('b','o'),
1679
+                '.btn-primary:disabled' => array('b','o'),
1680
+                '.btn-outline-primary' => array('c','o'),
1681
+                '.btn-outline-primary:hover' => array('b','o'),
1682
+                '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1683
+                '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1684
+                '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1685
+                '.btn-link' => array('c'),
1686
+                '.dropdown-item.active' => array('b'),
1687
+                '.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1688
+                '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1689 1689
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1690 1690
 //				'.custom-range::-moz-range-thumb' => array('b'),
1691 1691
 //				'.custom-range::-ms-thumb' => array('b'),
1692
-				'.nav-pills .nav-link.active' => array('b'),
1693
-				'.nav-pills .show>.nav-link' => array('b'),
1694
-				'.page-link' => array('c'),
1695
-				'.page-item.active .page-link' => array('b','o'),
1696
-				'.badge-primary' => array('b'),
1697
-				'.alert-primary' => array('b','o'),
1698
-				'.progress-bar' => array('b'),
1699
-				'.list-group-item.active' => array('b','o'),
1700
-				'.bg-primary' => array('b','f'),
1701
-				'.btn-link.btn-primary' => array('c'),
1702
-				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1703
-			);
1704
-
1705
-			$important_selectors = array(
1706
-				'.bg-primary' => array('b','f'),
1707
-				'.border-primary' => array('o'),
1708
-				'.text-primary' => array('c'),
1709
-			);
1710
-
1711
-			$color = array();
1712
-			$color_i = array();
1713
-			$background = array();
1714
-			$background_i = array();
1715
-			$border = array();
1716
-			$border_i = array();
1717
-			$fill = array();
1718
-			$fill_i = array();
1719
-
1720
-			$output = '';
1721
-
1722
-			// build rules into each type
1723
-			foreach($selectors as $selector => $types){
1724
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1725
-				$types = array_combine($types,$types);
1726
-				if(isset($types['c'])){$color[] = $selector;}
1727
-				if(isset($types['b'])){$background[] = $selector;}
1728
-				if(isset($types['o'])){$border[] = $selector;}
1729
-				if(isset($types['f'])){$fill[] = $selector;}
1730
-			}
1731
-
1732
-			// build rules into each type
1733
-			foreach($important_selectors as $selector => $types){
1734
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1735
-				$types = array_combine($types,$types);
1736
-				if(isset($types['c'])){$color_i[] = $selector;}
1737
-				if(isset($types['b'])){$background_i[] = $selector;}
1738
-				if(isset($types['o'])){$border_i[] = $selector;}
1739
-				if(isset($types['f'])){$fill_i[] = $selector;}
1740
-			}
1741
-
1742
-			// add any color rules
1743
-			if(!empty($color)){
1744
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1745
-			}
1746
-			if(!empty($color_i)){
1747
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1748
-			}
1749
-
1750
-			// add any background color rules
1751
-			if(!empty($background)){
1752
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1753
-			}
1754
-			if(!empty($background_i)){
1755
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1756
-			}
1757
-
1758
-			// add any border color rules
1759
-			if(!empty($border)){
1760
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1761
-			}
1762
-			if(!empty($border_i)){
1763
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1764
-			}
1765
-
1766
-			// add any fill color rules
1767
-			if(!empty($fill)){
1768
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1769
-			}
1770
-			if(!empty($fill_i)){
1771
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1772
-			}
1773
-
1774
-
1775
-			$prefix = $compatibility ? ".bsui " : "";
1776
-
1777
-			// darken
1778
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1779
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1780
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1781
-
1782
-			// lighten
1783
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1784
-
1785
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1786
-			$op_25 = $color_code."40"; // 25% opacity
1787
-
1788
-
1789
-			// button states
1790
-			$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1791
-			$output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1792
-			$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1793
-			$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1794
-
1795
-
1796
-			// dropdown's
1797
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1798
-
1799
-
1800
-			// input states
1801
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1802
-
1803
-			// page link
1804
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
-
1806
-			return $output;
1807
-		}
1692
+                '.nav-pills .nav-link.active' => array('b'),
1693
+                '.nav-pills .show>.nav-link' => array('b'),
1694
+                '.page-link' => array('c'),
1695
+                '.page-item.active .page-link' => array('b','o'),
1696
+                '.badge-primary' => array('b'),
1697
+                '.alert-primary' => array('b','o'),
1698
+                '.progress-bar' => array('b'),
1699
+                '.list-group-item.active' => array('b','o'),
1700
+                '.bg-primary' => array('b','f'),
1701
+                '.btn-link.btn-primary' => array('c'),
1702
+                '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1703
+            );
1704
+
1705
+            $important_selectors = array(
1706
+                '.bg-primary' => array('b','f'),
1707
+                '.border-primary' => array('o'),
1708
+                '.text-primary' => array('c'),
1709
+            );
1710
+
1711
+            $color = array();
1712
+            $color_i = array();
1713
+            $background = array();
1714
+            $background_i = array();
1715
+            $border = array();
1716
+            $border_i = array();
1717
+            $fill = array();
1718
+            $fill_i = array();
1719
+
1720
+            $output = '';
1721
+
1722
+            // build rules into each type
1723
+            foreach($selectors as $selector => $types){
1724
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1725
+                $types = array_combine($types,$types);
1726
+                if(isset($types['c'])){$color[] = $selector;}
1727
+                if(isset($types['b'])){$background[] = $selector;}
1728
+                if(isset($types['o'])){$border[] = $selector;}
1729
+                if(isset($types['f'])){$fill[] = $selector;}
1730
+            }
1808 1731
 
1809
-		public static function css_secondary($color_code,$compatibility){;
1810
-			$color_code = sanitize_hex_color($color_code);
1811
-			if(!$color_code){return '';}
1812
-			/**
1813
-			 * c = color, b = background color, o = border-color, f = fill
1814
-			 */
1815
-			$selectors = array(
1816
-				'.btn-secondary' => array('b','o'),
1817
-				'.btn-secondary.disabled' => array('b','o'),
1818
-				'.btn-secondary:disabled' => array('b','o'),
1819
-				'.btn-outline-secondary' => array('c','o'),
1820
-				'.btn-outline-secondary:hover' => array('b','o'),
1821
-				'.btn-outline-secondary.disabled' => array('c'),
1822
-				'.btn-outline-secondary:disabled' => array('c'),
1823
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1824
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1825
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1826
-				'.badge-secondary' => array('b'),
1827
-				'.alert-secondary' => array('b','o'),
1828
-				'.btn-link.btn-secondary' => array('c'),
1829
-			);
1830
-
1831
-			$important_selectors = array(
1832
-				'.bg-secondary' => array('b','f'),
1833
-				'.border-secondary' => array('o'),
1834
-				'.text-secondary' => array('c'),
1835
-			);
1836
-
1837
-			$color = array();
1838
-			$color_i = array();
1839
-			$background = array();
1840
-			$background_i = array();
1841
-			$border = array();
1842
-			$border_i = array();
1843
-			$fill = array();
1844
-			$fill_i = array();
1845
-
1846
-			$output = '';
1847
-
1848
-			// build rules into each type
1849
-			foreach($selectors as $selector => $types){
1850
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1851
-				$types = array_combine($types,$types);
1852
-				if(isset($types['c'])){$color[] = $selector;}
1853
-				if(isset($types['b'])){$background[] = $selector;}
1854
-				if(isset($types['o'])){$border[] = $selector;}
1855
-				if(isset($types['f'])){$fill[] = $selector;}
1856
-			}
1857
-
1858
-			// build rules into each type
1859
-			foreach($important_selectors as $selector => $types){
1860
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1861
-				$types = array_combine($types,$types);
1862
-				if(isset($types['c'])){$color_i[] = $selector;}
1863
-				if(isset($types['b'])){$background_i[] = $selector;}
1864
-				if(isset($types['o'])){$border_i[] = $selector;}
1865
-				if(isset($types['f'])){$fill_i[] = $selector;}
1866
-			}
1867
-
1868
-			// add any color rules
1869
-			if(!empty($color)){
1870
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1871
-			}
1872
-			if(!empty($color_i)){
1873
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1874
-			}
1875
-
1876
-			// add any background color rules
1877
-			if(!empty($background)){
1878
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1879
-			}
1880
-			if(!empty($background_i)){
1881
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1882
-			}
1883
-
1884
-			// add any border color rules
1885
-			if(!empty($border)){
1886
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1887
-			}
1888
-			if(!empty($border_i)){
1889
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1890
-			}
1891
-
1892
-			// add any fill color rules
1893
-			if(!empty($fill)){
1894
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1895
-			}
1896
-			if(!empty($fill_i)){
1897
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1898
-			}
1899
-
1900
-
1901
-			$prefix = $compatibility ? ".bsui " : "";
1902
-
1903
-			// darken
1904
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1905
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1906
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1907
-
1908
-			// lighten
1909
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1910
-
1911
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1912
-			$op_25 = $color_code."40"; // 25% opacity
1913
-
1914
-
1915
-			// button states
1916
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1917
-			$output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1918
-			$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1919
-			$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1920
-
1921
-
1922
-			return $output;
1923
-		}
1732
+            // build rules into each type
1733
+            foreach($important_selectors as $selector => $types){
1734
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1735
+                $types = array_combine($types,$types);
1736
+                if(isset($types['c'])){$color_i[] = $selector;}
1737
+                if(isset($types['b'])){$background_i[] = $selector;}
1738
+                if(isset($types['o'])){$border_i[] = $selector;}
1739
+                if(isset($types['f'])){$fill_i[] = $selector;}
1740
+            }
1924 1741
 
1925
-		/**
1926
-		 * Increases or decreases the brightness of a color by a percentage of the current brightness.
1927
-		 *
1928
-		 * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1929
-		 * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1930
-		 *
1931
-		 * @return  string
1932
-		 */
1933
-		public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1934
-			$hexCode = ltrim($hexCode, '#');
1742
+            // add any color rules
1743
+            if(!empty($color)){
1744
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1745
+            }
1746
+            if(!empty($color_i)){
1747
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1748
+            }
1935 1749
 
1936
-			if (strlen($hexCode) == 3) {
1937
-				$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1938
-			}
1750
+            // add any background color rules
1751
+            if(!empty($background)){
1752
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1753
+            }
1754
+            if(!empty($background_i)){
1755
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1756
+            }
1939 1757
 
1940
-			$hexCode = array_map('hexdec', str_split($hexCode, 2));
1758
+            // add any border color rules
1759
+            if(!empty($border)){
1760
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1761
+            }
1762
+            if(!empty($border_i)){
1763
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1764
+            }
1941 1765
 
1942
-			foreach ($hexCode as & $color) {
1943
-				$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1944
-				$adjustAmount = ceil($adjustableLimit * $adjustPercent);
1766
+            // add any fill color rules
1767
+            if(!empty($fill)){
1768
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1769
+            }
1770
+            if(!empty($fill_i)){
1771
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1772
+            }
1945 1773
 
1946
-				$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1947
-			}
1948 1774
 
1949
-			return '#' . implode($hexCode);
1950
-		}
1775
+            $prefix = $compatibility ? ".bsui " : "";
1951 1776
 
1952
-		/**
1953
-		 * Check if we should display examples.
1954
-		 */
1955
-		public function maybe_show_examples(){
1956
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1957
-				echo "<head>";
1958
-				wp_head();
1959
-				echo "</head>";
1960
-				echo "<body>";
1961
-				echo $this->get_examples();
1962
-				echo "</body>";
1963
-				exit;
1964
-			}
1965
-		}
1777
+            // darken
1778
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1779
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1780
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1966 1781
 
1967
-		/**
1968
-		 * Get developer examples.
1969
-		 *
1970
-		 * @return string
1971
-		 */
1972
-		public function get_examples(){
1973
-			$output = '';
1974
-
1975
-
1976
-			// open form
1977
-			$output .= "<form class='p-5 m-5 border rounded'>";
1978
-
1979
-			// input example
1980
-			$output .= aui()->input(array(
1981
-				'type'  =>  'text',
1982
-				'id'    =>  'text-example',
1983
-				'name'    =>  'text-example',
1984
-				'placeholder'   => 'text placeholder',
1985
-				'title'   => 'Text input example',
1986
-				'value' =>  '',
1987
-				'required'  => false,
1988
-				'help_text' => 'help text',
1989
-				'label' => 'Text input example label'
1990
-			));
1991
-
1992
-			// input example
1993
-			$output .= aui()->input(array(
1994
-				'type'  =>  'url',
1995
-				'id'    =>  'text-example2',
1996
-				'name'    =>  'text-example',
1997
-				'placeholder'   => 'url placeholder',
1998
-				'title'   => 'Text input example',
1999
-				'value' =>  '',
2000
-				'required'  => false,
2001
-				'help_text' => 'help text',
2002
-				'label' => 'Text input example label'
2003
-			));
2004
-
2005
-			// checkbox example
2006
-			$output .= aui()->input(array(
2007
-				'type'  =>  'checkbox',
2008
-				'id'    =>  'checkbox-example',
2009
-				'name'    =>  'checkbox-example',
2010
-				'placeholder'   => 'checkbox-example',
2011
-				'title'   => 'Checkbox example',
2012
-				'value' =>  '1',
2013
-				'checked'   => true,
2014
-				'required'  => false,
2015
-				'help_text' => 'help text',
2016
-				'label' => 'Checkbox checked'
2017
-			));
2018
-
2019
-			// checkbox example
2020
-			$output .= aui()->input(array(
2021
-				'type'  =>  'checkbox',
2022
-				'id'    =>  'checkbox-example2',
2023
-				'name'    =>  'checkbox-example2',
2024
-				'placeholder'   => 'checkbox-example',
2025
-				'title'   => 'Checkbox example',
2026
-				'value' =>  '1',
2027
-				'checked'   => false,
2028
-				'required'  => false,
2029
-				'help_text' => 'help text',
2030
-				'label' => 'Checkbox un-checked'
2031
-			));
2032
-
2033
-			// switch example
2034
-			$output .= aui()->input(array(
2035
-				'type'  =>  'checkbox',
2036
-				'id'    =>  'switch-example',
2037
-				'name'    =>  'switch-example',
2038
-				'placeholder'   => 'checkbox-example',
2039
-				'title'   => 'Switch example',
2040
-				'value' =>  '1',
2041
-				'checked'   => true,
2042
-				'switch'    => true,
2043
-				'required'  => false,
2044
-				'help_text' => 'help text',
2045
-				'label' => 'Switch on'
2046
-			));
2047
-
2048
-			// switch example
2049
-			$output .= aui()->input(array(
2050
-				'type'  =>  'checkbox',
2051
-				'id'    =>  'switch-example2',
2052
-				'name'    =>  'switch-example2',
2053
-				'placeholder'   => 'checkbox-example',
2054
-				'title'   => 'Switch example',
2055
-				'value' =>  '1',
2056
-				'checked'   => false,
2057
-				'switch'    => true,
2058
-				'required'  => false,
2059
-				'help_text' => 'help text',
2060
-				'label' => 'Switch off'
2061
-			));
2062
-
2063
-			// close form
2064
-			$output .= "</form>";
2065
-
2066
-			return $output;
2067
-		}
1782
+            // lighten
1783
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
2068 1784
 
2069
-		/**
2070
-		 * Calendar params.
2071
-		 *
2072
-		 * @since 0.1.44
2073
-		 *
2074
-		 * @return array Calendar params.
2075
-		 */
2076
-		public static function calendar_params() {
2077
-			$params = array(
2078
-				'month_long_1' => __( 'January', 'aui' ),
2079
-				'month_long_2' => __( 'February', 'aui' ),
2080
-				'month_long_3' => __( 'March', 'aui' ),
2081
-				'month_long_4' => __( 'April', 'aui' ),
2082
-				'month_long_5' => __( 'May', 'aui' ),
2083
-				'month_long_6' => __( 'June', 'aui' ),
2084
-				'month_long_7' => __( 'July', 'aui' ),
2085
-				'month_long_8' => __( 'August', 'aui' ),
2086
-				'month_long_9' => __( 'September', 'aui' ),
2087
-				'month_long_10' => __( 'October', 'aui' ),
2088
-				'month_long_11' => __( 'November', 'aui' ),
2089
-				'month_long_12' => __( 'December', 'aui' ),
2090
-				'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2091
-				'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2092
-				'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2093
-				'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2094
-				'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2095
-				'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2096
-				'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2097
-				'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2098
-				'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2099
-				'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2100
-				'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2101
-				'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2102
-				'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2103
-				'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2104
-				'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2105
-				'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2106
-				'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2107
-				'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2108
-				'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2109
-				'day_s2_1' => __( 'Su', 'aui' ),
2110
-				'day_s2_2' => __( 'Mo', 'aui' ),
2111
-				'day_s2_3' => __( 'Tu', 'aui' ),
2112
-				'day_s2_4' => __( 'We', 'aui' ),
2113
-				'day_s2_5' => __( 'Th', 'aui' ),
2114
-				'day_s2_6' => __( 'Fr', 'aui' ),
2115
-				'day_s2_7' => __( 'Sa', 'aui' ),
2116
-				'day_s3_1' => __( 'Sun', 'aui' ),
2117
-				'day_s3_2' => __( 'Mon', 'aui' ),
2118
-				'day_s3_3' => __( 'Tue', 'aui' ),
2119
-				'day_s3_4' => __( 'Wed', 'aui' ),
2120
-				'day_s3_5' => __( 'Thu', 'aui' ),
2121
-				'day_s3_6' => __( 'Fri', 'aui' ),
2122
-				'day_s3_7' => __( 'Sat', 'aui' ),
2123
-				'day_s5_1' => __( 'Sunday', 'aui' ),
2124
-				'day_s5_2' => __( 'Monday', 'aui' ),
2125
-				'day_s5_3' => __( 'Tuesday', 'aui' ),
2126
-				'day_s5_4' => __( 'Wednesday', 'aui' ),
2127
-				'day_s5_5' => __( 'Thursday', 'aui' ),
2128
-				'day_s5_6' => __( 'Friday', 'aui' ),
2129
-				'day_s5_7' => __( 'Saturday', 'aui' ),
2130
-				'am_lower' => __( 'am', 'aui' ),
2131
-				'pm_lower' => __( 'pm', 'aui' ),
2132
-				'am_upper' => __( 'AM', 'aui' ),
2133
-				'pm_upper' => __( 'PM', 'aui' ),
2134
-				'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2135
-				'time_24hr' => false,
2136
-				'year' => __( 'Year', 'aui' ),
2137
-				'hour' => __( 'Hour', 'aui' ),
2138
-				'minute' => __( 'Minute', 'aui' ),
2139
-				'weekAbbreviation' => __( 'Wk', 'aui' ),
2140
-				'rangeSeparator' => __( ' to ', 'aui' ),
2141
-				'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2142
-				'toggleTitle' => __( 'Click to toggle', 'aui' )
2143
-			);
2144
-
2145
-			return apply_filters( 'ayecode_ui_calendar_params', $params );
2146
-		}
1785
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1786
+            $op_25 = $color_code."40"; // 25% opacity
2147 1787
 
2148
-		/**
2149
-		 * Flatpickr calendar localize.
2150
-		 *
2151
-		 * @since 0.1.44
2152
-		 *
2153
-		 * @return string Calendar locale.
2154
-		 */
2155
-		public static function flatpickr_locale() {
2156
-			$params = self::calendar_params();
2157
-
2158
-			if ( is_string( $params ) ) {
2159
-				$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2160
-			} else {
2161
-				foreach ( (array) $params as $key => $value ) {
2162
-					if ( ! is_scalar( $value ) ) {
2163
-						continue;
2164
-					}
2165 1788
 
2166
-					$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2167
-				}
2168
-			}
1789
+            // button states
1790
+            $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1791
+            $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1792
+            $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1793
+            $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1794
+
1795
+
1796
+            // dropdown's
1797
+            $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1798
+
1799
+
1800
+            // input states
1801
+            $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1802
+
1803
+            // page link
1804
+            $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
+
1806
+            return $output;
1807
+        }
1808
+
1809
+        public static function css_secondary($color_code,$compatibility){;
1810
+            $color_code = sanitize_hex_color($color_code);
1811
+            if(!$color_code){return '';}
1812
+            /**
1813
+             * c = color, b = background color, o = border-color, f = fill
1814
+             */
1815
+            $selectors = array(
1816
+                '.btn-secondary' => array('b','o'),
1817
+                '.btn-secondary.disabled' => array('b','o'),
1818
+                '.btn-secondary:disabled' => array('b','o'),
1819
+                '.btn-outline-secondary' => array('c','o'),
1820
+                '.btn-outline-secondary:hover' => array('b','o'),
1821
+                '.btn-outline-secondary.disabled' => array('c'),
1822
+                '.btn-outline-secondary:disabled' => array('c'),
1823
+                '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1824
+                '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1825
+                '.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1826
+                '.badge-secondary' => array('b'),
1827
+                '.alert-secondary' => array('b','o'),
1828
+                '.btn-link.btn-secondary' => array('c'),
1829
+            );
1830
+
1831
+            $important_selectors = array(
1832
+                '.bg-secondary' => array('b','f'),
1833
+                '.border-secondary' => array('o'),
1834
+                '.text-secondary' => array('c'),
1835
+            );
1836
+
1837
+            $color = array();
1838
+            $color_i = array();
1839
+            $background = array();
1840
+            $background_i = array();
1841
+            $border = array();
1842
+            $border_i = array();
1843
+            $fill = array();
1844
+            $fill_i = array();
1845
+
1846
+            $output = '';
1847
+
1848
+            // build rules into each type
1849
+            foreach($selectors as $selector => $types){
1850
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1851
+                $types = array_combine($types,$types);
1852
+                if(isset($types['c'])){$color[] = $selector;}
1853
+                if(isset($types['b'])){$background[] = $selector;}
1854
+                if(isset($types['o'])){$border[] = $selector;}
1855
+                if(isset($types['f'])){$fill[] = $selector;}
1856
+            }
1857
+
1858
+            // build rules into each type
1859
+            foreach($important_selectors as $selector => $types){
1860
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1861
+                $types = array_combine($types,$types);
1862
+                if(isset($types['c'])){$color_i[] = $selector;}
1863
+                if(isset($types['b'])){$background_i[] = $selector;}
1864
+                if(isset($types['o'])){$border_i[] = $selector;}
1865
+                if(isset($types['f'])){$fill_i[] = $selector;}
1866
+            }
1867
+
1868
+            // add any color rules
1869
+            if(!empty($color)){
1870
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1871
+            }
1872
+            if(!empty($color_i)){
1873
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1874
+            }
1875
+
1876
+            // add any background color rules
1877
+            if(!empty($background)){
1878
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1879
+            }
1880
+            if(!empty($background_i)){
1881
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1882
+            }
1883
+
1884
+            // add any border color rules
1885
+            if(!empty($border)){
1886
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1887
+            }
1888
+            if(!empty($border_i)){
1889
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1890
+            }
1891
+
1892
+            // add any fill color rules
1893
+            if(!empty($fill)){
1894
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1895
+            }
1896
+            if(!empty($fill_i)){
1897
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1898
+            }
1899
+
1900
+
1901
+            $prefix = $compatibility ? ".bsui " : "";
1902
+
1903
+            // darken
1904
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1905
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1906
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1907
+
1908
+            // lighten
1909
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1910
+
1911
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1912
+            $op_25 = $color_code."40"; // 25% opacity
2169 1913
 
2170
-			$day_s3 = array();
2171
-			$day_s5 = array();
2172 1914
 
2173
-			for ( $i = 1; $i <= 7; $i ++ ) {
2174
-				$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2175
-				$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2176
-			}
1915
+            // button states
1916
+            $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1917
+            $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1918
+            $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1919
+            $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
2177 1920
 
2178
-			$month_s = array();
2179
-			$month_long = array();
2180 1921
 
2181
-			for ( $i = 1; $i <= 12; $i ++ ) {
2182
-				$month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2183
-				$month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2184
-			}
1922
+            return $output;
1923
+        }
1924
+
1925
+        /**
1926
+         * Increases or decreases the brightness of a color by a percentage of the current brightness.
1927
+         *
1928
+         * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1929
+         * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1930
+         *
1931
+         * @return  string
1932
+         */
1933
+        public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1934
+            $hexCode = ltrim($hexCode, '#');
1935
+
1936
+            if (strlen($hexCode) == 3) {
1937
+                $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1938
+            }
1939
+
1940
+            $hexCode = array_map('hexdec', str_split($hexCode, 2));
1941
+
1942
+            foreach ($hexCode as & $color) {
1943
+                $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1944
+                $adjustAmount = ceil($adjustableLimit * $adjustPercent);
1945
+
1946
+                $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1947
+            }
1948
+
1949
+            return '#' . implode($hexCode);
1950
+        }
1951
+
1952
+        /**
1953
+         * Check if we should display examples.
1954
+         */
1955
+        public function maybe_show_examples(){
1956
+            if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1957
+                echo "<head>";
1958
+                wp_head();
1959
+                echo "</head>";
1960
+                echo "<body>";
1961
+                echo $this->get_examples();
1962
+                echo "</body>";
1963
+                exit;
1964
+            }
1965
+        }
1966
+
1967
+        /**
1968
+         * Get developer examples.
1969
+         *
1970
+         * @return string
1971
+         */
1972
+        public function get_examples(){
1973
+            $output = '';
1974
+
1975
+
1976
+            // open form
1977
+            $output .= "<form class='p-5 m-5 border rounded'>";
1978
+
1979
+            // input example
1980
+            $output .= aui()->input(array(
1981
+                'type'  =>  'text',
1982
+                'id'    =>  'text-example',
1983
+                'name'    =>  'text-example',
1984
+                'placeholder'   => 'text placeholder',
1985
+                'title'   => 'Text input example',
1986
+                'value' =>  '',
1987
+                'required'  => false,
1988
+                'help_text' => 'help text',
1989
+                'label' => 'Text input example label'
1990
+            ));
1991
+
1992
+            // input example
1993
+            $output .= aui()->input(array(
1994
+                'type'  =>  'url',
1995
+                'id'    =>  'text-example2',
1996
+                'name'    =>  'text-example',
1997
+                'placeholder'   => 'url placeholder',
1998
+                'title'   => 'Text input example',
1999
+                'value' =>  '',
2000
+                'required'  => false,
2001
+                'help_text' => 'help text',
2002
+                'label' => 'Text input example label'
2003
+            ));
2004
+
2005
+            // checkbox example
2006
+            $output .= aui()->input(array(
2007
+                'type'  =>  'checkbox',
2008
+                'id'    =>  'checkbox-example',
2009
+                'name'    =>  'checkbox-example',
2010
+                'placeholder'   => 'checkbox-example',
2011
+                'title'   => 'Checkbox example',
2012
+                'value' =>  '1',
2013
+                'checked'   => true,
2014
+                'required'  => false,
2015
+                'help_text' => 'help text',
2016
+                'label' => 'Checkbox checked'
2017
+            ));
2018
+
2019
+            // checkbox example
2020
+            $output .= aui()->input(array(
2021
+                'type'  =>  'checkbox',
2022
+                'id'    =>  'checkbox-example2',
2023
+                'name'    =>  'checkbox-example2',
2024
+                'placeholder'   => 'checkbox-example',
2025
+                'title'   => 'Checkbox example',
2026
+                'value' =>  '1',
2027
+                'checked'   => false,
2028
+                'required'  => false,
2029
+                'help_text' => 'help text',
2030
+                'label' => 'Checkbox un-checked'
2031
+            ));
2032
+
2033
+            // switch example
2034
+            $output .= aui()->input(array(
2035
+                'type'  =>  'checkbox',
2036
+                'id'    =>  'switch-example',
2037
+                'name'    =>  'switch-example',
2038
+                'placeholder'   => 'checkbox-example',
2039
+                'title'   => 'Switch example',
2040
+                'value' =>  '1',
2041
+                'checked'   => true,
2042
+                'switch'    => true,
2043
+                'required'  => false,
2044
+                'help_text' => 'help text',
2045
+                'label' => 'Switch on'
2046
+            ));
2047
+
2048
+            // switch example
2049
+            $output .= aui()->input(array(
2050
+                'type'  =>  'checkbox',
2051
+                'id'    =>  'switch-example2',
2052
+                'name'    =>  'switch-example2',
2053
+                'placeholder'   => 'checkbox-example',
2054
+                'title'   => 'Switch example',
2055
+                'value' =>  '1',
2056
+                'checked'   => false,
2057
+                'switch'    => true,
2058
+                'required'  => false,
2059
+                'help_text' => 'help text',
2060
+                'label' => 'Switch off'
2061
+            ));
2062
+
2063
+            // close form
2064
+            $output .= "</form>";
2065
+
2066
+            return $output;
2067
+        }
2068
+
2069
+        /**
2070
+         * Calendar params.
2071
+         *
2072
+         * @since 0.1.44
2073
+         *
2074
+         * @return array Calendar params.
2075
+         */
2076
+        public static function calendar_params() {
2077
+            $params = array(
2078
+                'month_long_1' => __( 'January', 'aui' ),
2079
+                'month_long_2' => __( 'February', 'aui' ),
2080
+                'month_long_3' => __( 'March', 'aui' ),
2081
+                'month_long_4' => __( 'April', 'aui' ),
2082
+                'month_long_5' => __( 'May', 'aui' ),
2083
+                'month_long_6' => __( 'June', 'aui' ),
2084
+                'month_long_7' => __( 'July', 'aui' ),
2085
+                'month_long_8' => __( 'August', 'aui' ),
2086
+                'month_long_9' => __( 'September', 'aui' ),
2087
+                'month_long_10' => __( 'October', 'aui' ),
2088
+                'month_long_11' => __( 'November', 'aui' ),
2089
+                'month_long_12' => __( 'December', 'aui' ),
2090
+                'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2091
+                'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2092
+                'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2093
+                'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2094
+                'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2095
+                'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2096
+                'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2097
+                'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2098
+                'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2099
+                'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2100
+                'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2101
+                'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2102
+                'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2103
+                'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2104
+                'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2105
+                'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2106
+                'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2107
+                'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2108
+                'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2109
+                'day_s2_1' => __( 'Su', 'aui' ),
2110
+                'day_s2_2' => __( 'Mo', 'aui' ),
2111
+                'day_s2_3' => __( 'Tu', 'aui' ),
2112
+                'day_s2_4' => __( 'We', 'aui' ),
2113
+                'day_s2_5' => __( 'Th', 'aui' ),
2114
+                'day_s2_6' => __( 'Fr', 'aui' ),
2115
+                'day_s2_7' => __( 'Sa', 'aui' ),
2116
+                'day_s3_1' => __( 'Sun', 'aui' ),
2117
+                'day_s3_2' => __( 'Mon', 'aui' ),
2118
+                'day_s3_3' => __( 'Tue', 'aui' ),
2119
+                'day_s3_4' => __( 'Wed', 'aui' ),
2120
+                'day_s3_5' => __( 'Thu', 'aui' ),
2121
+                'day_s3_6' => __( 'Fri', 'aui' ),
2122
+                'day_s3_7' => __( 'Sat', 'aui' ),
2123
+                'day_s5_1' => __( 'Sunday', 'aui' ),
2124
+                'day_s5_2' => __( 'Monday', 'aui' ),
2125
+                'day_s5_3' => __( 'Tuesday', 'aui' ),
2126
+                'day_s5_4' => __( 'Wednesday', 'aui' ),
2127
+                'day_s5_5' => __( 'Thursday', 'aui' ),
2128
+                'day_s5_6' => __( 'Friday', 'aui' ),
2129
+                'day_s5_7' => __( 'Saturday', 'aui' ),
2130
+                'am_lower' => __( 'am', 'aui' ),
2131
+                'pm_lower' => __( 'pm', 'aui' ),
2132
+                'am_upper' => __( 'AM', 'aui' ),
2133
+                'pm_upper' => __( 'PM', 'aui' ),
2134
+                'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2135
+                'time_24hr' => false,
2136
+                'year' => __( 'Year', 'aui' ),
2137
+                'hour' => __( 'Hour', 'aui' ),
2138
+                'minute' => __( 'Minute', 'aui' ),
2139
+                'weekAbbreviation' => __( 'Wk', 'aui' ),
2140
+                'rangeSeparator' => __( ' to ', 'aui' ),
2141
+                'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2142
+                'toggleTitle' => __( 'Click to toggle', 'aui' )
2143
+            );
2144
+
2145
+            return apply_filters( 'ayecode_ui_calendar_params', $params );
2146
+        }
2147
+
2148
+        /**
2149
+         * Flatpickr calendar localize.
2150
+         *
2151
+         * @since 0.1.44
2152
+         *
2153
+         * @return string Calendar locale.
2154
+         */
2155
+        public static function flatpickr_locale() {
2156
+            $params = self::calendar_params();
2157
+
2158
+            if ( is_string( $params ) ) {
2159
+                $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2160
+            } else {
2161
+                foreach ( (array) $params as $key => $value ) {
2162
+                    if ( ! is_scalar( $value ) ) {
2163
+                        continue;
2164
+                    }
2165
+
2166
+                    $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2167
+                }
2168
+            }
2169
+
2170
+            $day_s3 = array();
2171
+            $day_s5 = array();
2172
+
2173
+            for ( $i = 1; $i <= 7; $i ++ ) {
2174
+                $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2175
+                $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2176
+            }
2177
+
2178
+            $month_s = array();
2179
+            $month_long = array();
2180
+
2181
+            for ( $i = 1; $i <= 12; $i ++ ) {
2182
+                $month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2183
+                $month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2184
+            }
2185 2185
 
2186 2186
 ob_start();
2187 2187
 if ( 0 ) { ?><script><?php } ?>
@@ -2223,189 +2223,189 @@  discard block
 block discarded – undo
2223 2223
 }
2224 2224
 <?php if ( 0 ) { ?></script><?php } ?>
2225 2225
 <?php
2226
-			$locale = ob_get_clean();
2226
+            $locale = ob_get_clean();
2227 2227
 
2228
-			return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2229
-		}
2228
+            return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2229
+        }
2230 2230
 
2231
-		/**
2232
-		 * Select2 JS params.
2233
-		 *
2234
-		 * @since 0.1.44
2235
-		 *
2236
-		 * @return array Select2 JS params.
2237
-		 */
2238
-		public static function select2_params() {
2239
-			$params = array(
2240
-				'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2241
-				'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2242
-				'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2243
-				'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2244
-				'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2245
-				'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2246
-				'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2247
-				'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2248
-				'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2249
-				'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2250
-				'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2251
-			);
2252
-
2253
-			return apply_filters( 'ayecode_ui_select2_params', $params );
2254
-		}
2231
+        /**
2232
+         * Select2 JS params.
2233
+         *
2234
+         * @since 0.1.44
2235
+         *
2236
+         * @return array Select2 JS params.
2237
+         */
2238
+        public static function select2_params() {
2239
+            $params = array(
2240
+                'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2241
+                'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2242
+                'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2243
+                'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2244
+                'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2245
+                'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2246
+                'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2247
+                'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2248
+                'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2249
+                'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2250
+                'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2251
+            );
2252
+
2253
+            return apply_filters( 'ayecode_ui_select2_params', $params );
2254
+        }
2255 2255
 
2256
-		/**
2257
-		 * Select2 JS localize.
2258
-		 *
2259
-		 * @since 0.1.44
2260
-		 *
2261
-		 * @return string Select2 JS locale.
2262
-		 */
2263
-		public static function select2_locale() {
2264
-			$params = self::select2_params();
2265
-
2266
-			foreach ( (array) $params as $key => $value ) {
2267
-				if ( ! is_scalar( $value ) ) {
2268
-					continue;
2269
-				}
2256
+        /**
2257
+         * Select2 JS localize.
2258
+         *
2259
+         * @since 0.1.44
2260
+         *
2261
+         * @return string Select2 JS locale.
2262
+         */
2263
+        public static function select2_locale() {
2264
+            $params = self::select2_params();
2265
+
2266
+            foreach ( (array) $params as $key => $value ) {
2267
+                if ( ! is_scalar( $value ) ) {
2268
+                    continue;
2269
+                }
2270 2270
 
2271
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2272
-			}
2271
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2272
+            }
2273 2273
 
2274
-			$locale = json_encode( $params );
2274
+            $locale = json_encode( $params );
2275 2275
 
2276
-			return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2277
-		}
2276
+            return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2277
+        }
2278 2278
 
2279
-		/**
2280
-		 * Time ago JS localize.
2281
-		 *
2282
-		 * @since 0.1.47
2283
-		 *
2284
-		 * @return string Time ago JS locale.
2285
-		 */
2286
-		public static function timeago_locale() {
2287
-			$params = array(
2288
-				'prefix_ago' => '',
2289
-				'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2290
-				'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2291
-				'suffix_after' => '',
2292
-				'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2293
-				'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2294
-				'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2295
-				'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2296
-				'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2297
-				'day' => _x( 'a day', 'time ago', 'aui' ),
2298
-				'days' => _x( '%d days', 'time ago', 'aui' ),
2299
-				'month' => _x( 'about a month', 'time ago', 'aui' ),
2300
-				'months' => _x( '%d months', 'time ago', 'aui' ),
2301
-				'year' => _x( 'about a year', 'time ago', 'aui' ),
2302
-				'years' => _x( '%d years', 'time ago', 'aui' ),
2303
-			);
2304
-
2305
-			$params = apply_filters( 'ayecode_ui_timeago_params', $params );
2306
-
2307
-			foreach ( (array) $params as $key => $value ) {
2308
-				if ( ! is_scalar( $value ) ) {
2309
-					continue;
2310
-				}
2279
+        /**
2280
+         * Time ago JS localize.
2281
+         *
2282
+         * @since 0.1.47
2283
+         *
2284
+         * @return string Time ago JS locale.
2285
+         */
2286
+        public static function timeago_locale() {
2287
+            $params = array(
2288
+                'prefix_ago' => '',
2289
+                'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2290
+                'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2291
+                'suffix_after' => '',
2292
+                'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2293
+                'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2294
+                'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2295
+                'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2296
+                'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2297
+                'day' => _x( 'a day', 'time ago', 'aui' ),
2298
+                'days' => _x( '%d days', 'time ago', 'aui' ),
2299
+                'month' => _x( 'about a month', 'time ago', 'aui' ),
2300
+                'months' => _x( '%d months', 'time ago', 'aui' ),
2301
+                'year' => _x( 'about a year', 'time ago', 'aui' ),
2302
+                'years' => _x( '%d years', 'time ago', 'aui' ),
2303
+            );
2304
+
2305
+            $params = apply_filters( 'ayecode_ui_timeago_params', $params );
2306
+
2307
+            foreach ( (array) $params as $key => $value ) {
2308
+                if ( ! is_scalar( $value ) ) {
2309
+                    continue;
2310
+                }
2311 2311
 
2312
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2313
-			}
2312
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2313
+            }
2314 2314
 
2315
-			$locale = json_encode( $params );
2315
+            $locale = json_encode( $params );
2316 2316
 
2317
-			return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2318
-		}
2317
+            return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2318
+        }
2319 2319
 
2320
-		/**
2321
-		 * JavaScript Minifier
2322
-		 *
2323
-		 * @param $input
2324
-		 *
2325
-		 * @return mixed
2326
-		 */
2327
-		public static function minify_js($input) {
2328
-			if(trim($input) === "") return $input;
2329
-			return preg_replace(
2330
-				array(
2331
-					// Remove comment(s)
2332
-					'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2333
-					// Remove white-space(s) outside the string and regex
2334
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2335
-					// Remove the last semicolon
2336
-					'#;+\}#',
2337
-					// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2338
-					'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2339
-					// --ibid. From `foo['bar']` to `foo.bar`
2340
-					'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2341
-				),
2342
-				array(
2343
-					'$1',
2344
-					'$1$2',
2345
-					'}',
2346
-					'$1$3',
2347
-					'$1.$3'
2348
-				),
2349
-				$input);
2350
-		}
2320
+        /**
2321
+         * JavaScript Minifier
2322
+         *
2323
+         * @param $input
2324
+         *
2325
+         * @return mixed
2326
+         */
2327
+        public static function minify_js($input) {
2328
+            if(trim($input) === "") return $input;
2329
+            return preg_replace(
2330
+                array(
2331
+                    // Remove comment(s)
2332
+                    '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2333
+                    // Remove white-space(s) outside the string and regex
2334
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2335
+                    // Remove the last semicolon
2336
+                    '#;+\}#',
2337
+                    // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2338
+                    '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2339
+                    // --ibid. From `foo['bar']` to `foo.bar`
2340
+                    '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2341
+                ),
2342
+                array(
2343
+                    '$1',
2344
+                    '$1$2',
2345
+                    '}',
2346
+                    '$1$3',
2347
+                    '$1.$3'
2348
+                ),
2349
+                $input);
2350
+        }
2351 2351
 
2352
-		/**
2353
-		 * Minify CSS
2354
-		 *
2355
-		 * @param $input
2356
-		 *
2357
-		 * @return mixed
2358
-		 */
2359
-		public static function minify_css($input) {
2360
-			if(trim($input) === "") return $input;
2361
-			return preg_replace(
2362
-				array(
2363
-					// Remove comment(s)
2364
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2365
-					// Remove unused white-space(s)
2366
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2367
-					// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2368
-					'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2369
-					// Replace `:0 0 0 0` with `:0`
2370
-					'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2371
-					// Replace `background-position:0` with `background-position:0 0`
2372
-					'#(background-position):0(?=[;\}])#si',
2373
-					// Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2374
-					'#(?<=[\s:,\-])0+\.(\d+)#s',
2375
-					// Minify string value
2376
-					'#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2377
-					'#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2378
-					// Minify HEX color code
2379
-					'#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2380
-					// Replace `(border|outline):none` with `(border|outline):0`
2381
-					'#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2382
-					// Remove empty selector(s)
2383
-					'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2384
-				),
2385
-				array(
2386
-					'$1',
2387
-					'$1$2$3$4$5$6$7',
2388
-					'$1',
2389
-					':0',
2390
-					'$1:0 0',
2391
-					'.$1',
2392
-					'$1$3',
2393
-					'$1$2$4$5',
2394
-					'$1$2$3',
2395
-					'$1:0',
2396
-					'$1$2'
2397
-				),
2398
-				$input);
2399
-		}
2352
+        /**
2353
+         * Minify CSS
2354
+         *
2355
+         * @param $input
2356
+         *
2357
+         * @return mixed
2358
+         */
2359
+        public static function minify_css($input) {
2360
+            if(trim($input) === "") return $input;
2361
+            return preg_replace(
2362
+                array(
2363
+                    // Remove comment(s)
2364
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2365
+                    // Remove unused white-space(s)
2366
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2367
+                    // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2368
+                    '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2369
+                    // Replace `:0 0 0 0` with `:0`
2370
+                    '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2371
+                    // Replace `background-position:0` with `background-position:0 0`
2372
+                    '#(background-position):0(?=[;\}])#si',
2373
+                    // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2374
+                    '#(?<=[\s:,\-])0+\.(\d+)#s',
2375
+                    // Minify string value
2376
+                    '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2377
+                    '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2378
+                    // Minify HEX color code
2379
+                    '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2380
+                    // Replace `(border|outline):none` with `(border|outline):0`
2381
+                    '#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2382
+                    // Remove empty selector(s)
2383
+                    '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2384
+                ),
2385
+                array(
2386
+                    '$1',
2387
+                    '$1$2$3$4$5$6$7',
2388
+                    '$1',
2389
+                    ':0',
2390
+                    '$1:0 0',
2391
+                    '.$1',
2392
+                    '$1$3',
2393
+                    '$1$2$4$5',
2394
+                    '$1$2$3',
2395
+                    '$1:0',
2396
+                    '$1$2'
2397
+                ),
2398
+                $input);
2399
+        }
2400 2400
 
2401
-		/**
2402
-		 * Get the conditional fields JavaScript.
2403
-		 *
2404
-		 * @return mixed
2405
-		 */
2406
-		public function conditional_fields_js() {
2407
-			ob_start();
2408
-			?>
2401
+        /**
2402
+         * Get the conditional fields JavaScript.
2403
+         *
2404
+         * @return mixed
2405
+         */
2406
+        public function conditional_fields_js() {
2407
+            ob_start();
2408
+            ?>
2409 2409
 <script>
2410 2410
 /**
2411 2411
  * Conditional Fields
@@ -2909,14 +2909,14 @@  discard block
 block discarded – undo
2909 2909
 <?php do_action( 'aui_conditional_fields_js', $this ); ?>
2910 2910
 </script>
2911 2911
 			<?php
2912
-			$output = ob_get_clean();
2912
+            $output = ob_get_clean();
2913 2913
 
2914
-			return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2915
-		}
2916
-	}
2914
+            return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2915
+        }
2916
+    }
2917 2917
 
2918
-	/**
2919
-	 * Run the class if found.
2920
-	 */
2921
-	AyeCode_UI_Settings::instance();
2918
+    /**
2919
+     * Run the class if found.
2920
+     */
2921
+    AyeCode_UI_Settings::instance();
2922 2922
 }
2923 2923
\ No newline at end of file
Please login to merge, or discard this patch.