@@ -13,261 +13,261 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | class GetPaid_Geolocation { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * Holds the current user's IP Address. |
|
| 18 | - * |
|
| 19 | - * @var string |
|
| 20 | - */ |
|
| 21 | - public static $current_user_ip; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * API endpoints for looking up a user IP address. |
|
| 25 | - * |
|
| 26 | - * For example, in case a user is on localhost. |
|
| 27 | - * |
|
| 28 | - * @var array |
|
| 29 | - */ |
|
| 30 | - protected static $ip_lookup_apis = array( |
|
| 31 | - 'ipify' => 'http://api.ipify.org/', |
|
| 32 | - 'ipecho' => 'http://ipecho.net/plain', |
|
| 33 | - 'ident' => 'http://ident.me', |
|
| 34 | - 'whatismyipaddress' => 'http://bot.whatismyipaddress.com', |
|
| 35 | - ); |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * API endpoints for geolocating an IP address |
|
| 39 | - * |
|
| 40 | - * @var array |
|
| 41 | - */ |
|
| 42 | - protected static $geoip_apis = array( |
|
| 43 | - 'ip-api.com' => 'http://ip-api.com/json/%s', |
|
| 44 | - 'ipinfo.io' => 'https://ipinfo.io/%s/json', |
|
| 45 | - ); |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Get current user IP Address. |
|
| 49 | - * |
|
| 50 | - * @return string |
|
| 51 | - */ |
|
| 52 | - public static function get_ip_address() { |
|
| 53 | - return wpinv_get_ip(); |
|
| 54 | - } |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * Get user IP Address using an external service. |
|
| 58 | - * This can be used as a fallback for users on localhost where |
|
| 59 | - * get_ip_address() will be a local IP and non-geolocatable. |
|
| 60 | - * |
|
| 61 | - * @return string |
|
| 62 | - */ |
|
| 63 | - public static function get_external_ip_address() { |
|
| 64 | - |
|
| 65 | - $transient_name = 'external_ip_address_0.0.0.0'; |
|
| 66 | - |
|
| 67 | - if ( '' !== self::get_ip_address() ) { |
|
| 68 | - $transient_name = 'external_ip_address_' . self::get_ip_address(); |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - // Try retrieving from cache. |
|
| 72 | - $external_ip_address = get_transient( $transient_name ); |
|
| 73 | - |
|
| 74 | - if ( false === $external_ip_address ) { |
|
| 75 | - $external_ip_address = '0.0.0.0'; |
|
| 76 | - $ip_lookup_services = apply_filters( 'getpaid_geolocation_ip_lookup_apis', self::$ip_lookup_apis ); |
|
| 77 | - $ip_lookup_services_keys = array_keys( $ip_lookup_services ); |
|
| 78 | - shuffle( $ip_lookup_services_keys ); |
|
| 79 | - |
|
| 80 | - foreach ( $ip_lookup_services_keys as $service_name ) { |
|
| 81 | - $service_endpoint = $ip_lookup_services[ $service_name ]; |
|
| 82 | - $response = wp_safe_remote_get( $service_endpoint, array( 'timeout' => 2 ) ); |
|
| 83 | - |
|
| 84 | - if ( ! is_wp_error( $response ) && rest_is_ip_address( $response['body'] ) ) { |
|
| 85 | - $external_ip_address = apply_filters( 'getpaid_geolocation_ip_lookup_api_response', wpinv_clean( $response['body'] ), $service_name ); |
|
| 86 | - break; |
|
| 87 | - } |
|
| 16 | + /** |
|
| 17 | + * Holds the current user's IP Address. |
|
| 18 | + * |
|
| 19 | + * @var string |
|
| 20 | + */ |
|
| 21 | + public static $current_user_ip; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * API endpoints for looking up a user IP address. |
|
| 25 | + * |
|
| 26 | + * For example, in case a user is on localhost. |
|
| 27 | + * |
|
| 28 | + * @var array |
|
| 29 | + */ |
|
| 30 | + protected static $ip_lookup_apis = array( |
|
| 31 | + 'ipify' => 'http://api.ipify.org/', |
|
| 32 | + 'ipecho' => 'http://ipecho.net/plain', |
|
| 33 | + 'ident' => 'http://ident.me', |
|
| 34 | + 'whatismyipaddress' => 'http://bot.whatismyipaddress.com', |
|
| 35 | + ); |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * API endpoints for geolocating an IP address |
|
| 39 | + * |
|
| 40 | + * @var array |
|
| 41 | + */ |
|
| 42 | + protected static $geoip_apis = array( |
|
| 43 | + 'ip-api.com' => 'http://ip-api.com/json/%s', |
|
| 44 | + 'ipinfo.io' => 'https://ipinfo.io/%s/json', |
|
| 45 | + ); |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Get current user IP Address. |
|
| 49 | + * |
|
| 50 | + * @return string |
|
| 51 | + */ |
|
| 52 | + public static function get_ip_address() { |
|
| 53 | + return wpinv_get_ip(); |
|
| 54 | + } |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * Get user IP Address using an external service. |
|
| 58 | + * This can be used as a fallback for users on localhost where |
|
| 59 | + * get_ip_address() will be a local IP and non-geolocatable. |
|
| 60 | + * |
|
| 61 | + * @return string |
|
| 62 | + */ |
|
| 63 | + public static function get_external_ip_address() { |
|
| 64 | + |
|
| 65 | + $transient_name = 'external_ip_address_0.0.0.0'; |
|
| 66 | + |
|
| 67 | + if ( '' !== self::get_ip_address() ) { |
|
| 68 | + $transient_name = 'external_ip_address_' . self::get_ip_address(); |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + // Try retrieving from cache. |
|
| 72 | + $external_ip_address = get_transient( $transient_name ); |
|
| 73 | + |
|
| 74 | + if ( false === $external_ip_address ) { |
|
| 75 | + $external_ip_address = '0.0.0.0'; |
|
| 76 | + $ip_lookup_services = apply_filters( 'getpaid_geolocation_ip_lookup_apis', self::$ip_lookup_apis ); |
|
| 77 | + $ip_lookup_services_keys = array_keys( $ip_lookup_services ); |
|
| 78 | + shuffle( $ip_lookup_services_keys ); |
|
| 79 | + |
|
| 80 | + foreach ( $ip_lookup_services_keys as $service_name ) { |
|
| 81 | + $service_endpoint = $ip_lookup_services[ $service_name ]; |
|
| 82 | + $response = wp_safe_remote_get( $service_endpoint, array( 'timeout' => 2 ) ); |
|
| 83 | + |
|
| 84 | + if ( ! is_wp_error( $response ) && rest_is_ip_address( $response['body'] ) ) { |
|
| 85 | + $external_ip_address = apply_filters( 'getpaid_geolocation_ip_lookup_api_response', wpinv_clean( $response['body'] ), $service_name ); |
|
| 86 | + break; |
|
| 87 | + } |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - set_transient( $transient_name, $external_ip_address, WEEK_IN_SECONDS ); |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - return $external_ip_address; |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * Geolocate an IP address. |
|
| 98 | - * |
|
| 99 | - * @param string $ip_address IP Address. |
|
| 100 | - * @param bool $fallback If true, fallbacks to alternative IP detection (can be slower). |
|
| 101 | - * @param bool $api_fallback If true, uses geolocation APIs if the database file doesn't exist (can be slower). |
|
| 102 | - * @return array |
|
| 103 | - */ |
|
| 104 | - public static function geolocate_ip( $ip_address = '', $fallback = false, $api_fallback = true ) { |
|
| 105 | - |
|
| 106 | - if ( empty( $ip_address ) ) { |
|
| 107 | - $ip_address = self::get_ip_address(); |
|
| 108 | - } |
|
| 109 | - |
|
| 110 | - // Update the current user's IP Address. |
|
| 111 | - self::$current_user_ip = $ip_address; |
|
| 112 | - |
|
| 113 | - // Filter to allow custom geolocation of the IP address. |
|
| 114 | - $country_code = apply_filters( 'getpaid_geolocate_ip', false, $ip_address, $fallback, $api_fallback ); |
|
| 115 | - |
|
| 116 | - if ( false !== $country_code ) { |
|
| 117 | - |
|
| 118 | - return array( |
|
| 119 | - 'country' => $country_code, |
|
| 120 | - 'state' => '', |
|
| 121 | - 'city' => '', |
|
| 122 | - 'postcode' => '', |
|
| 123 | - ); |
|
| 124 | - |
|
| 125 | - } |
|
| 126 | - |
|
| 127 | - $country_code = self::get_country_code_from_headers(); |
|
| 128 | - |
|
| 129 | - /** |
|
| 130 | - * Get geolocation filter. |
|
| 131 | - * |
|
| 132 | - * @since 1.0.19 |
|
| 133 | - * @param array $geolocation Geolocation data, including country, state, city, and postcode. |
|
| 134 | - * @param string $ip_address IP Address. |
|
| 135 | - */ |
|
| 136 | - $geolocation = apply_filters( |
|
| 137 | - 'getpaid_get_geolocation', |
|
| 138 | - array( |
|
| 139 | - 'country' => $country_code, |
|
| 140 | - 'state' => '', |
|
| 141 | - 'city' => '', |
|
| 142 | - 'postcode' => '', |
|
| 143 | - ), |
|
| 144 | - $ip_address |
|
| 145 | - ); |
|
| 146 | - |
|
| 147 | - // If we still haven't found a country code, let's consider doing an API lookup. |
|
| 148 | - if ( '' === $geolocation['country'] && $api_fallback ) { |
|
| 149 | - $geolocation['country'] = self::geolocate_via_api( $ip_address ); |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - // It's possible that we're in a local environment, in which case the geolocation needs to be done from the |
|
| 153 | - // external address. |
|
| 154 | - if ( '' === $geolocation['country'] && $fallback ) { |
|
| 155 | - $external_ip_address = self::get_external_ip_address(); |
|
| 156 | - |
|
| 157 | - // Only bother with this if the external IP differs. |
|
| 158 | - if ( '0.0.0.0' !== $external_ip_address && $external_ip_address !== $ip_address ) { |
|
| 159 | - return self::geolocate_ip( $external_ip_address, false, $api_fallback ); |
|
| 160 | - } |
|
| 90 | + set_transient( $transient_name, $external_ip_address, WEEK_IN_SECONDS ); |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + return $external_ip_address; |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * Geolocate an IP address. |
|
| 98 | + * |
|
| 99 | + * @param string $ip_address IP Address. |
|
| 100 | + * @param bool $fallback If true, fallbacks to alternative IP detection (can be slower). |
|
| 101 | + * @param bool $api_fallback If true, uses geolocation APIs if the database file doesn't exist (can be slower). |
|
| 102 | + * @return array |
|
| 103 | + */ |
|
| 104 | + public static function geolocate_ip( $ip_address = '', $fallback = false, $api_fallback = true ) { |
|
| 105 | + |
|
| 106 | + if ( empty( $ip_address ) ) { |
|
| 107 | + $ip_address = self::get_ip_address(); |
|
| 108 | + } |
|
| 109 | + |
|
| 110 | + // Update the current user's IP Address. |
|
| 111 | + self::$current_user_ip = $ip_address; |
|
| 112 | + |
|
| 113 | + // Filter to allow custom geolocation of the IP address. |
|
| 114 | + $country_code = apply_filters( 'getpaid_geolocate_ip', false, $ip_address, $fallback, $api_fallback ); |
|
| 115 | + |
|
| 116 | + if ( false !== $country_code ) { |
|
| 117 | + |
|
| 118 | + return array( |
|
| 119 | + 'country' => $country_code, |
|
| 120 | + 'state' => '', |
|
| 121 | + 'city' => '', |
|
| 122 | + 'postcode' => '', |
|
| 123 | + ); |
|
| 124 | + |
|
| 125 | + } |
|
| 126 | + |
|
| 127 | + $country_code = self::get_country_code_from_headers(); |
|
| 128 | + |
|
| 129 | + /** |
|
| 130 | + * Get geolocation filter. |
|
| 131 | + * |
|
| 132 | + * @since 1.0.19 |
|
| 133 | + * @param array $geolocation Geolocation data, including country, state, city, and postcode. |
|
| 134 | + * @param string $ip_address IP Address. |
|
| 135 | + */ |
|
| 136 | + $geolocation = apply_filters( |
|
| 137 | + 'getpaid_get_geolocation', |
|
| 138 | + array( |
|
| 139 | + 'country' => $country_code, |
|
| 140 | + 'state' => '', |
|
| 141 | + 'city' => '', |
|
| 142 | + 'postcode' => '', |
|
| 143 | + ), |
|
| 144 | + $ip_address |
|
| 145 | + ); |
|
| 146 | + |
|
| 147 | + // If we still haven't found a country code, let's consider doing an API lookup. |
|
| 148 | + if ( '' === $geolocation['country'] && $api_fallback ) { |
|
| 149 | + $geolocation['country'] = self::geolocate_via_api( $ip_address ); |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + // It's possible that we're in a local environment, in which case the geolocation needs to be done from the |
|
| 153 | + // external address. |
|
| 154 | + if ( '' === $geolocation['country'] && $fallback ) { |
|
| 155 | + $external_ip_address = self::get_external_ip_address(); |
|
| 156 | + |
|
| 157 | + // Only bother with this if the external IP differs. |
|
| 158 | + if ( '0.0.0.0' !== $external_ip_address && $external_ip_address !== $ip_address ) { |
|
| 159 | + return self::geolocate_ip( $external_ip_address, false, $api_fallback ); |
|
| 160 | + } |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - return array( |
|
| 164 | - 'country' => $geolocation['country'], |
|
| 165 | - 'state' => $geolocation['state'], |
|
| 166 | - 'city' => $geolocation['city'], |
|
| 167 | - 'postcode' => $geolocation['postcode'], |
|
| 168 | - ); |
|
| 169 | - |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - /** |
|
| 173 | - * Fetches the country code from the request headers, if one is available. |
|
| 174 | - * |
|
| 175 | - * @since 1.0.19 |
|
| 176 | - * @return string The country code pulled from the headers, or empty string if one was not found. |
|
| 177 | - */ |
|
| 178 | - protected static function get_country_code_from_headers() { |
|
| 179 | - $country_code = ''; |
|
| 180 | - |
|
| 181 | - $headers = array( |
|
| 182 | - 'MM_COUNTRY_CODE', |
|
| 183 | - 'GEOIP_COUNTRY_CODE', |
|
| 184 | - 'HTTP_CF_IPCOUNTRY', |
|
| 185 | - 'HTTP_X_COUNTRY_CODE', |
|
| 186 | - ); |
|
| 187 | - |
|
| 188 | - foreach ( $headers as $header ) { |
|
| 189 | - if ( empty( $_SERVER[ $header ] ) ) { |
|
| 190 | - continue; |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - $country_code = strtoupper( sanitize_text_field( wp_unslash( $_SERVER[ $header ] ) ) ); |
|
| 194 | - break; |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - return $country_code; |
|
| 198 | - } |
|
| 199 | - |
|
| 200 | - /** |
|
| 201 | - * Use APIs to Geolocate the user. |
|
| 202 | - * |
|
| 203 | - * Geolocation APIs can be added through the use of the getpaid_geolocation_geoip_apis filter. |
|
| 204 | - * Provide a name=>value pair for service-slug=>endpoint. |
|
| 205 | - * |
|
| 206 | - * If APIs are defined, one will be chosen at random to fulfil the request. After completing, the result |
|
| 207 | - * will be cached in a transient. |
|
| 208 | - * |
|
| 209 | - * @param string $ip_address IP address. |
|
| 210 | - * @return string |
|
| 211 | - */ |
|
| 212 | - protected static function geolocate_via_api( $ip_address ) { |
|
| 213 | - |
|
| 214 | - // Retrieve from cache... |
|
| 215 | - $country_code = get_transient( 'geoip_' . $ip_address ); |
|
| 216 | - |
|
| 217 | - // If missing, retrieve from the API. |
|
| 218 | - if ( false === $country_code ) { |
|
| 219 | - $geoip_services = apply_filters( 'getpaid_geolocation_geoip_apis', self::$geoip_apis ); |
|
| 220 | - |
|
| 221 | - if ( empty( $geoip_services ) ) { |
|
| 222 | - return ''; |
|
| 223 | - } |
|
| 224 | - |
|
| 225 | - $geoip_services_keys = array_keys( $geoip_services ); |
|
| 226 | - |
|
| 227 | - shuffle( $geoip_services_keys ); |
|
| 228 | - |
|
| 229 | - foreach ( $geoip_services_keys as $service_name ) { |
|
| 230 | - |
|
| 231 | - $service_endpoint = $geoip_services[ $service_name ]; |
|
| 232 | - $response = wp_safe_remote_get( sprintf( $service_endpoint, $ip_address ), array( 'timeout' => 2 ) ); |
|
| 233 | - $country_code = sanitize_text_field( strtoupper( self::handle_geolocation_response( $response, $service_name ) ) ); |
|
| 234 | - |
|
| 235 | - if ( ! empty( $country_code ) ) { |
|
| 236 | - break; |
|
| 237 | - } |
|
| 163 | + return array( |
|
| 164 | + 'country' => $geolocation['country'], |
|
| 165 | + 'state' => $geolocation['state'], |
|
| 166 | + 'city' => $geolocation['city'], |
|
| 167 | + 'postcode' => $geolocation['postcode'], |
|
| 168 | + ); |
|
| 169 | + |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + /** |
|
| 173 | + * Fetches the country code from the request headers, if one is available. |
|
| 174 | + * |
|
| 175 | + * @since 1.0.19 |
|
| 176 | + * @return string The country code pulled from the headers, or empty string if one was not found. |
|
| 177 | + */ |
|
| 178 | + protected static function get_country_code_from_headers() { |
|
| 179 | + $country_code = ''; |
|
| 180 | + |
|
| 181 | + $headers = array( |
|
| 182 | + 'MM_COUNTRY_CODE', |
|
| 183 | + 'GEOIP_COUNTRY_CODE', |
|
| 184 | + 'HTTP_CF_IPCOUNTRY', |
|
| 185 | + 'HTTP_X_COUNTRY_CODE', |
|
| 186 | + ); |
|
| 187 | + |
|
| 188 | + foreach ( $headers as $header ) { |
|
| 189 | + if ( empty( $_SERVER[ $header ] ) ) { |
|
| 190 | + continue; |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + $country_code = strtoupper( sanitize_text_field( wp_unslash( $_SERVER[ $header ] ) ) ); |
|
| 194 | + break; |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + return $country_code; |
|
| 198 | + } |
|
| 199 | + |
|
| 200 | + /** |
|
| 201 | + * Use APIs to Geolocate the user. |
|
| 202 | + * |
|
| 203 | + * Geolocation APIs can be added through the use of the getpaid_geolocation_geoip_apis filter. |
|
| 204 | + * Provide a name=>value pair for service-slug=>endpoint. |
|
| 205 | + * |
|
| 206 | + * If APIs are defined, one will be chosen at random to fulfil the request. After completing, the result |
|
| 207 | + * will be cached in a transient. |
|
| 208 | + * |
|
| 209 | + * @param string $ip_address IP address. |
|
| 210 | + * @return string |
|
| 211 | + */ |
|
| 212 | + protected static function geolocate_via_api( $ip_address ) { |
|
| 213 | + |
|
| 214 | + // Retrieve from cache... |
|
| 215 | + $country_code = get_transient( 'geoip_' . $ip_address ); |
|
| 216 | + |
|
| 217 | + // If missing, retrieve from the API. |
|
| 218 | + if ( false === $country_code ) { |
|
| 219 | + $geoip_services = apply_filters( 'getpaid_geolocation_geoip_apis', self::$geoip_apis ); |
|
| 220 | + |
|
| 221 | + if ( empty( $geoip_services ) ) { |
|
| 222 | + return ''; |
|
| 223 | + } |
|
| 224 | + |
|
| 225 | + $geoip_services_keys = array_keys( $geoip_services ); |
|
| 226 | + |
|
| 227 | + shuffle( $geoip_services_keys ); |
|
| 228 | + |
|
| 229 | + foreach ( $geoip_services_keys as $service_name ) { |
|
| 230 | + |
|
| 231 | + $service_endpoint = $geoip_services[ $service_name ]; |
|
| 232 | + $response = wp_safe_remote_get( sprintf( $service_endpoint, $ip_address ), array( 'timeout' => 2 ) ); |
|
| 233 | + $country_code = sanitize_text_field( strtoupper( self::handle_geolocation_response( $response, $service_name ) ) ); |
|
| 234 | + |
|
| 235 | + if ( ! empty( $country_code ) ) { |
|
| 236 | + break; |
|
| 237 | + } |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - set_transient( 'geoip_' . $ip_address, $country_code, WEEK_IN_SECONDS ); |
|
| 241 | - } |
|
| 240 | + set_transient( 'geoip_' . $ip_address, $country_code, WEEK_IN_SECONDS ); |
|
| 241 | + } |
|
| 242 | 242 | |
| 243 | - return $country_code; |
|
| 244 | - } |
|
| 243 | + return $country_code; |
|
| 244 | + } |
|
| 245 | 245 | |
| 246 | - /** |
|
| 247 | - * Handles geolocation response |
|
| 248 | - * |
|
| 249 | - * @param WP_Error|String $geolocation_response |
|
| 250 | - * @param String $geolocation_service |
|
| 251 | - * @return string Country code |
|
| 252 | - */ |
|
| 253 | - protected static function handle_geolocation_response( $geolocation_response, $geolocation_service ) { |
|
| 246 | + /** |
|
| 247 | + * Handles geolocation response |
|
| 248 | + * |
|
| 249 | + * @param WP_Error|String $geolocation_response |
|
| 250 | + * @param String $geolocation_service |
|
| 251 | + * @return string Country code |
|
| 252 | + */ |
|
| 253 | + protected static function handle_geolocation_response( $geolocation_response, $geolocation_service ) { |
|
| 254 | 254 | |
| 255 | - if ( is_wp_error( $geolocation_response ) || empty( $geolocation_response['body'] ) ) { |
|
| 256 | - return ''; |
|
| 257 | - } |
|
| 255 | + if ( is_wp_error( $geolocation_response ) || empty( $geolocation_response['body'] ) ) { |
|
| 256 | + return ''; |
|
| 257 | + } |
|
| 258 | 258 | |
| 259 | - if ( $geolocation_service === 'ipinfo.io' ) { |
|
| 260 | - $data = json_decode( $geolocation_response['body'] ); |
|
| 261 | - return empty( $data ) || empty( $data->country ) ? '' : $data->country; |
|
| 262 | - } |
|
| 259 | + if ( $geolocation_service === 'ipinfo.io' ) { |
|
| 260 | + $data = json_decode( $geolocation_response['body'] ); |
|
| 261 | + return empty( $data ) || empty( $data->country ) ? '' : $data->country; |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - if ( $geolocation_service === 'ip-api.com' ) { |
|
| 265 | - $data = json_decode( $geolocation_response['body'] ); |
|
| 266 | - return empty( $data ) || empty( $data->countryCode ) ? '' : $data->countryCode; |
|
| 267 | - } |
|
| 264 | + if ( $geolocation_service === 'ip-api.com' ) { |
|
| 265 | + $data = json_decode( $geolocation_response['body'] ); |
|
| 266 | + return empty( $data ) || empty( $data->countryCode ) ? '' : $data->countryCode; |
|
| 267 | + } |
|
| 268 | 268 | |
| 269 | - return apply_filters( 'getpaid_geolocation_geoip_response_' . $geolocation_service, '', $geolocation_response['body'] ); |
|
| 269 | + return apply_filters( 'getpaid_geolocation_geoip_response_' . $geolocation_service, '', $geolocation_response['body'] ); |
|
| 270 | 270 | |
| 271 | - } |
|
| 271 | + } |
|
| 272 | 272 | |
| 273 | 273 | } |
@@ -15,30 +15,30 @@ discard block |
||
| 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 |
||
| 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,147 +59,147 @@ discard block |
||
| 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 | - } |
|
| 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 | 98 | } elseif ( is_scalar( $discount ) && $discount = self::get_discount_id_by_code( $discount ) ) { |
| 99 | - $this->set_id( $discount ); |
|
| 100 | - } else { |
|
| 101 | - $this->set_object_read( true ); |
|
| 102 | - } |
|
| 99 | + $this->set_id( $discount ); |
|
| 100 | + } else { |
|
| 101 | + $this->set_object_read( true ); |
|
| 102 | + } |
|
| 103 | 103 | |
| 104 | 104 | // Load the datastore. |
| 105 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 105 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 106 | 106 | |
| 107 | - if ( $this->get_id() > 0 ) { |
|
| 107 | + if ( $this->get_id() > 0 ) { |
|
| 108 | 108 | $this->post = get_post( $this->get_id() ); |
| 109 | 109 | $this->ID = $this->get_id(); |
| 110 | - $this->data_store->read( $this ); |
|
| 110 | + $this->data_store->read( $this ); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * Fetch a discount from the db/cache |
|
| 117 | - * |
|
| 118 | - * |
|
| 119 | - * @static |
|
| 120 | - * @param string $field The field to query against: 'ID', 'discount_code' |
|
| 121 | - * @param string|int $value The field value |
|
| 122 | - * @deprecated |
|
| 123 | - * @since 1.0.15 |
|
| 124 | - * @return array|bool array of discount details on success. False otherwise. |
|
| 125 | - */ |
|
| 126 | - public static function get_data_by( $field, $value ) { |
|
| 127 | - |
|
| 128 | - if ( 'id' == strtolower( $field ) ) { |
|
| 129 | - // Make sure the value is numeric to avoid casting objects, for example, |
|
| 130 | - // to int 1. |
|
| 131 | - if ( ! is_numeric( $value ) ) { |
|
| 132 | - return false; |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * Fetch a discount from the db/cache |
|
| 117 | + * |
|
| 118 | + * |
|
| 119 | + * @static |
|
| 120 | + * @param string $field The field to query against: 'ID', 'discount_code' |
|
| 121 | + * @param string|int $value The field value |
|
| 122 | + * @deprecated |
|
| 123 | + * @since 1.0.15 |
|
| 124 | + * @return array|bool array of discount details on success. False otherwise. |
|
| 125 | + */ |
|
| 126 | + public static function get_data_by( $field, $value ) { |
|
| 127 | + |
|
| 128 | + if ( 'id' == strtolower( $field ) ) { |
|
| 129 | + // Make sure the value is numeric to avoid casting objects, for example, |
|
| 130 | + // to int 1. |
|
| 131 | + if ( ! is_numeric( $value ) ) { |
|
| 132 | + return false; |
|
| 133 | 133 | } |
| 134 | - $value = intval( $value ); |
|
| 135 | - if ( $value < 1 ) { |
|
| 136 | - return false; |
|
| 134 | + $value = intval( $value ); |
|
| 135 | + if ( $value < 1 ) { |
|
| 136 | + return false; |
|
| 137 | 137 | } |
| 138 | - } |
|
| 139 | - |
|
| 140 | - if ( ! $value || ! is_string( $field ) ) { |
|
| 141 | - return false; |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - $field = trim( $field ); |
|
| 145 | - |
|
| 146 | - // prepare query args |
|
| 147 | - switch ( strtolower( $field ) ) { |
|
| 148 | - case 'id': |
|
| 149 | - $discount_id = $value; |
|
| 150 | - $args = array( 'include' => array( $value ) ); |
|
| 151 | - break; |
|
| 152 | - case 'discount_code': |
|
| 153 | - case 'code': |
|
| 154 | - $value = trim( $value ); |
|
| 155 | - $discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' ); |
|
| 156 | - $args = array( |
|
| 157 | - 'meta_key' => '_wpi_discount_code', |
|
| 158 | - 'meta_value' => $value, |
|
| 159 | - ); |
|
| 160 | - break; |
|
| 161 | - case 'name': |
|
| 162 | - $discount_id = 0; |
|
| 163 | - $args = array( 'name' => trim( $value ) ); |
|
| 164 | - break; |
|
| 165 | - default: |
|
| 166 | - $args = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value ); |
|
| 167 | - if ( ! is_array( $args ) ) { |
|
| 168 | - return apply_filters( "wpinv_discount_get_data_by_$field", false, $value ); |
|
| 169 | - } |
|
| 138 | + } |
|
| 139 | + |
|
| 140 | + if ( ! $value || ! is_string( $field ) ) { |
|
| 141 | + return false; |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + $field = trim( $field ); |
|
| 145 | + |
|
| 146 | + // prepare query args |
|
| 147 | + switch ( strtolower( $field ) ) { |
|
| 148 | + case 'id': |
|
| 149 | + $discount_id = $value; |
|
| 150 | + $args = array( 'include' => array( $value ) ); |
|
| 151 | + break; |
|
| 152 | + case 'discount_code': |
|
| 153 | + case 'code': |
|
| 154 | + $value = trim( $value ); |
|
| 155 | + $discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' ); |
|
| 156 | + $args = array( |
|
| 157 | + 'meta_key' => '_wpi_discount_code', |
|
| 158 | + 'meta_value' => $value, |
|
| 159 | + ); |
|
| 160 | + break; |
|
| 161 | + case 'name': |
|
| 162 | + $discount_id = 0; |
|
| 163 | + $args = array( 'name' => trim( $value ) ); |
|
| 164 | + break; |
|
| 165 | + default: |
|
| 166 | + $args = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value ); |
|
| 167 | + if ( ! is_array( $args ) ) { |
|
| 168 | + return apply_filters( "wpinv_discount_get_data_by_$field", false, $value ); |
|
| 169 | + } |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - // Check if there is a cached value. |
|
| 173 | - if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) { |
|
| 174 | - return $discount; |
|
| 175 | - } |
|
| 172 | + // Check if there is a cached value. |
|
| 173 | + if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) { |
|
| 174 | + return $discount; |
|
| 175 | + } |
|
| 176 | 176 | |
| 177 | - $args = array_merge( |
|
| 178 | - $args, |
|
| 179 | - array( |
|
| 180 | - 'post_type' => 'wpi_discount', |
|
| 181 | - 'posts_per_page' => 1, |
|
| 182 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
| 183 | - ) |
|
| 184 | - ); |
|
| 177 | + $args = array_merge( |
|
| 178 | + $args, |
|
| 179 | + array( |
|
| 180 | + 'post_type' => 'wpi_discount', |
|
| 181 | + 'posts_per_page' => 1, |
|
| 182 | + 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
| 183 | + ) |
|
| 184 | + ); |
|
| 185 | 185 | |
| 186 | - $discount = get_posts( $args ); |
|
| 186 | + $discount = get_posts( $args ); |
|
| 187 | 187 | |
| 188 | - if ( empty( $discount ) ) { |
|
| 189 | - return false; |
|
| 190 | - } |
|
| 188 | + if ( empty( $discount ) ) { |
|
| 189 | + return false; |
|
| 190 | + } |
|
| 191 | 191 | |
| 192 | - $discount = $discount[0]; |
|
| 192 | + $discount = $discount[0]; |
|
| 193 | 193 | |
| 194 | - // Prepare the return data. |
|
| 195 | - $return = array( |
|
| 194 | + // Prepare the return data. |
|
| 195 | + $return = array( |
|
| 196 | 196 | 'ID' => $discount->ID, |
| 197 | 197 | 'code' => get_post_meta( $discount->ID, '_wpi_discount_code', true ), |
| 198 | 198 | 'amount' => get_post_meta( $discount->ID, '_wpi_discount_amount', true ), |
| 199 | 199 | 'date_created' => $discount->post_date, |
| 200 | - 'date_modified' => $discount->post_modified, |
|
| 201 | - 'status' => $discount->post_status, |
|
| 202 | - 'start' => get_post_meta( $discount->ID, '_wpi_discount_start', true ), |
|
| 200 | + 'date_modified' => $discount->post_modified, |
|
| 201 | + 'status' => $discount->post_status, |
|
| 202 | + 'start' => get_post_meta( $discount->ID, '_wpi_discount_start', true ), |
|
| 203 | 203 | 'expiration' => get_post_meta( $discount->ID, '_wpi_discount_expiration', true ), |
| 204 | 204 | 'type' => get_post_meta( $discount->ID, '_wpi_discount_type', true ), |
| 205 | 205 | 'description' => $discount->post_excerpt, |
@@ -207,84 +207,84 @@ discard block |
||
| 207 | 207 | 'is_single_use' => get_post_meta( $discount->ID, '_wpi_discount_is_single_use', true ), |
| 208 | 208 | 'items' => get_post_meta( $discount->ID, '_wpi_discount_items', true ), |
| 209 | 209 | 'excluded_items' => get_post_meta( $discount->ID, '_wpi_discount_excluded_items', true ), |
| 210 | - 'required_items' => get_post_meta( $discount->ID, '_wpi_discount_required_items', true ), |
|
| 210 | + 'required_items' => get_post_meta( $discount->ID, '_wpi_discount_required_items', true ), |
|
| 211 | 211 | 'max_uses' => get_post_meta( $discount->ID, '_wpi_discount_max_uses', true ), |
| 212 | 212 | 'is_recurring' => get_post_meta( $discount->ID, '_wpi_discount_is_recurring', true ), |
| 213 | 213 | 'min_total' => get_post_meta( $discount->ID, '_wpi_discount_min_total', true ), |
| 214 | 214 | 'max_total' => get_post_meta( $discount->ID, '_wpi_discount_max_total', true ), |
| 215 | 215 | ); |
| 216 | 216 | |
| 217 | - $return = apply_filters( 'wpinv_discount_properties', $return ); |
|
| 218 | - |
|
| 219 | - // Update the cache with our data |
|
| 220 | - wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' ); |
|
| 221 | - wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' ); |
|
| 222 | - |
|
| 223 | - return $return; |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * Given a discount code, it returns a discount id. |
|
| 228 | - * |
|
| 229 | - * |
|
| 230 | - * @static |
|
| 231 | - * @param string $discount_code |
|
| 232 | - * @since 1.0.15 |
|
| 233 | - * @return int |
|
| 234 | - */ |
|
| 235 | - public static function get_discount_id_by_code( $discount_code ) { |
|
| 236 | - |
|
| 237 | - // Trim the code. |
|
| 238 | - $discount_code = trim( $discount_code ); |
|
| 239 | - |
|
| 240 | - // Ensure a value has been passed. |
|
| 241 | - if ( empty( $discount_code ) ) { |
|
| 242 | - return 0; |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - // Maybe retrieve from the cache. |
|
| 246 | - $discount_id = wp_cache_get( $discount_code, 'getpaid_discount_codes' ); |
|
| 247 | - if ( ! empty( $discount_id ) ) { |
|
| 248 | - return $discount_id; |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - // Fetch the first discount codes. |
|
| 252 | - $discounts = get_posts( |
|
| 253 | - array( |
|
| 254 | - 'meta_key' => '_wpi_discount_code', |
|
| 255 | - 'meta_value' => $discount_code, |
|
| 256 | - 'post_type' => 'wpi_discount', |
|
| 257 | - 'posts_per_page' => 1, |
|
| 258 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
| 259 | - 'fields' => 'ids', |
|
| 260 | - ) |
|
| 261 | - ); |
|
| 262 | - |
|
| 263 | - if ( empty( $discounts ) ) { |
|
| 264 | - return 0; |
|
| 265 | - } |
|
| 266 | - |
|
| 267 | - $discount_id = $discounts[0]; |
|
| 268 | - |
|
| 269 | - // Update the cache with our data |
|
| 270 | - wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' ); |
|
| 271 | - |
|
| 272 | - return $discount_id; |
|
| 273 | - } |
|
| 274 | - |
|
| 275 | - /** |
|
| 276 | - * Magic method for checking the existence of a certain custom field. |
|
| 277 | - * |
|
| 278 | - * @since 1.0.15 |
|
| 279 | - * @access public |
|
| 280 | - * |
|
| 281 | - * @return bool Whether the given discount field is set. |
|
| 282 | - */ |
|
| 283 | - public function __isset( $key ) { |
|
| 284 | - return isset( $this->data[ $key ] ) || method_exists( $this, "get_$key" ); |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - /* |
|
| 217 | + $return = apply_filters( 'wpinv_discount_properties', $return ); |
|
| 218 | + |
|
| 219 | + // Update the cache with our data |
|
| 220 | + wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' ); |
|
| 221 | + wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' ); |
|
| 222 | + |
|
| 223 | + return $return; |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * Given a discount code, it returns a discount id. |
|
| 228 | + * |
|
| 229 | + * |
|
| 230 | + * @static |
|
| 231 | + * @param string $discount_code |
|
| 232 | + * @since 1.0.15 |
|
| 233 | + * @return int |
|
| 234 | + */ |
|
| 235 | + public static function get_discount_id_by_code( $discount_code ) { |
|
| 236 | + |
|
| 237 | + // Trim the code. |
|
| 238 | + $discount_code = trim( $discount_code ); |
|
| 239 | + |
|
| 240 | + // Ensure a value has been passed. |
|
| 241 | + if ( empty( $discount_code ) ) { |
|
| 242 | + return 0; |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + // Maybe retrieve from the cache. |
|
| 246 | + $discount_id = wp_cache_get( $discount_code, 'getpaid_discount_codes' ); |
|
| 247 | + if ( ! empty( $discount_id ) ) { |
|
| 248 | + return $discount_id; |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + // Fetch the first discount codes. |
|
| 252 | + $discounts = get_posts( |
|
| 253 | + array( |
|
| 254 | + 'meta_key' => '_wpi_discount_code', |
|
| 255 | + 'meta_value' => $discount_code, |
|
| 256 | + 'post_type' => 'wpi_discount', |
|
| 257 | + 'posts_per_page' => 1, |
|
| 258 | + 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
| 259 | + 'fields' => 'ids', |
|
| 260 | + ) |
|
| 261 | + ); |
|
| 262 | + |
|
| 263 | + if ( empty( $discounts ) ) { |
|
| 264 | + return 0; |
|
| 265 | + } |
|
| 266 | + |
|
| 267 | + $discount_id = $discounts[0]; |
|
| 268 | + |
|
| 269 | + // Update the cache with our data |
|
| 270 | + wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' ); |
|
| 271 | + |
|
| 272 | + return $discount_id; |
|
| 273 | + } |
|
| 274 | + |
|
| 275 | + /** |
|
| 276 | + * Magic method for checking the existence of a certain custom field. |
|
| 277 | + * |
|
| 278 | + * @since 1.0.15 |
|
| 279 | + * @access public |
|
| 280 | + * |
|
| 281 | + * @return bool Whether the given discount field is set. |
|
| 282 | + */ |
|
| 283 | + public function __isset( $key ) { |
|
| 284 | + return isset( $this->data[ $key ] ) || method_exists( $this, "get_$key" ); |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + /* |
|
| 288 | 288 | |-------------------------------------------------------------------------- |
| 289 | 289 | | CRUD methods |
| 290 | 290 | |-------------------------------------------------------------------------- |
@@ -299,441 +299,441 @@ discard block |
||
| 299 | 299 | |-------------------------------------------------------------------------- |
| 300 | 300 | */ |
| 301 | 301 | |
| 302 | - /** |
|
| 303 | - * Get discount status. |
|
| 304 | - * |
|
| 305 | - * @since 1.0.19 |
|
| 306 | - * @param string $context View or edit context. |
|
| 307 | - * @return string |
|
| 308 | - */ |
|
| 309 | - public function get_status( $context = 'view' ) { |
|
| 310 | - return $this->get_prop( 'status', $context ); |
|
| 302 | + /** |
|
| 303 | + * Get discount status. |
|
| 304 | + * |
|
| 305 | + * @since 1.0.19 |
|
| 306 | + * @param string $context View or edit context. |
|
| 307 | + * @return string |
|
| 308 | + */ |
|
| 309 | + public function get_status( $context = 'view' ) { |
|
| 310 | + return $this->get_prop( 'status', $context ); |
|
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | /** |
| 314 | - * Get plugin version when the discount was created. |
|
| 315 | - * |
|
| 316 | - * @since 1.0.19 |
|
| 317 | - * @param string $context View or edit context. |
|
| 318 | - * @return string |
|
| 319 | - */ |
|
| 320 | - public function get_version( $context = 'view' ) { |
|
| 321 | - return $this->get_prop( 'version', $context ); |
|
| 314 | + * Get plugin version when the discount was created. |
|
| 315 | + * |
|
| 316 | + * @since 1.0.19 |
|
| 317 | + * @param string $context View or edit context. |
|
| 318 | + * @return string |
|
| 319 | + */ |
|
| 320 | + public function get_version( $context = 'view' ) { |
|
| 321 | + return $this->get_prop( 'version', $context ); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | /** |
| 325 | - * Get date when the discount was created. |
|
| 326 | - * |
|
| 327 | - * @since 1.0.19 |
|
| 328 | - * @param string $context View or edit context. |
|
| 329 | - * @return string |
|
| 330 | - */ |
|
| 331 | - public function get_date_created( $context = 'view' ) { |
|
| 332 | - return $this->get_prop( 'date_created', $context ); |
|
| 325 | + * Get date when the discount was created. |
|
| 326 | + * |
|
| 327 | + * @since 1.0.19 |
|
| 328 | + * @param string $context View or edit context. |
|
| 329 | + * @return string |
|
| 330 | + */ |
|
| 331 | + public function get_date_created( $context = 'view' ) { |
|
| 332 | + return $this->get_prop( 'date_created', $context ); |
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | 335 | /** |
| 336 | - * Get GMT date when the discount was created. |
|
| 337 | - * |
|
| 338 | - * @since 1.0.19 |
|
| 339 | - * @param string $context View or edit context. |
|
| 340 | - * @return string |
|
| 341 | - */ |
|
| 342 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 336 | + * Get GMT date when the discount was created. |
|
| 337 | + * |
|
| 338 | + * @since 1.0.19 |
|
| 339 | + * @param string $context View or edit context. |
|
| 340 | + * @return string |
|
| 341 | + */ |
|
| 342 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 343 | 343 | $date = $this->get_date_created( $context ); |
| 344 | 344 | |
| 345 | 345 | if ( $date ) { |
| 346 | 346 | $date = get_gmt_from_date( $date ); |
| 347 | 347 | } |
| 348 | - return $date; |
|
| 348 | + return $date; |
|
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | /** |
| 352 | - * Get date when the discount was last modified. |
|
| 353 | - * |
|
| 354 | - * @since 1.0.19 |
|
| 355 | - * @param string $context View or edit context. |
|
| 356 | - * @return string |
|
| 357 | - */ |
|
| 358 | - public function get_date_modified( $context = 'view' ) { |
|
| 359 | - return $this->get_prop( 'date_modified', $context ); |
|
| 352 | + * Get date when the discount was last modified. |
|
| 353 | + * |
|
| 354 | + * @since 1.0.19 |
|
| 355 | + * @param string $context View or edit context. |
|
| 356 | + * @return string |
|
| 357 | + */ |
|
| 358 | + public function get_date_modified( $context = 'view' ) { |
|
| 359 | + return $this->get_prop( 'date_modified', $context ); |
|
| 360 | 360 | } |
| 361 | 361 | |
| 362 | 362 | /** |
| 363 | - * Get GMT date when the discount was last modified. |
|
| 364 | - * |
|
| 365 | - * @since 1.0.19 |
|
| 366 | - * @param string $context View or edit context. |
|
| 367 | - * @return string |
|
| 368 | - */ |
|
| 369 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
| 363 | + * Get GMT date when the discount was last modified. |
|
| 364 | + * |
|
| 365 | + * @since 1.0.19 |
|
| 366 | + * @param string $context View or edit context. |
|
| 367 | + * @return string |
|
| 368 | + */ |
|
| 369 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
| 370 | 370 | $date = $this->get_date_modified( $context ); |
| 371 | 371 | |
| 372 | 372 | if ( $date ) { |
| 373 | 373 | $date = get_gmt_from_date( $date ); |
| 374 | 374 | } |
| 375 | - return $date; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - /** |
|
| 379 | - * Get the discount name. |
|
| 380 | - * |
|
| 381 | - * @since 1.0.19 |
|
| 382 | - * @param string $context View or edit context. |
|
| 383 | - * @return string |
|
| 384 | - */ |
|
| 385 | - public function get_name( $context = 'view' ) { |
|
| 386 | - return $this->get_prop( 'name', $context ); |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - /** |
|
| 390 | - * Alias of self::get_name(). |
|
| 391 | - * |
|
| 392 | - * @since 1.0.19 |
|
| 393 | - * @param string $context View or edit context. |
|
| 394 | - * @return string |
|
| 395 | - */ |
|
| 396 | - public function get_title( $context = 'view' ) { |
|
| 397 | - return $this->get_name( $context ); |
|
| 398 | - } |
|
| 399 | - |
|
| 400 | - /** |
|
| 401 | - * Get the discount description. |
|
| 402 | - * |
|
| 403 | - * @since 1.0.19 |
|
| 404 | - * @param string $context View or edit context. |
|
| 405 | - * @return string |
|
| 406 | - */ |
|
| 407 | - public function get_description( $context = 'view' ) { |
|
| 408 | - return $this->get_prop( 'description', $context ); |
|
| 409 | - } |
|
| 410 | - |
|
| 411 | - /** |
|
| 412 | - * Alias of self::get_description(). |
|
| 413 | - * |
|
| 414 | - * @since 1.0.19 |
|
| 415 | - * @param string $context View or edit context. |
|
| 416 | - * @return string |
|
| 417 | - */ |
|
| 418 | - public function get_excerpt( $context = 'view' ) { |
|
| 419 | - return $this->get_description( $context ); |
|
| 420 | - } |
|
| 421 | - |
|
| 422 | - /** |
|
| 423 | - * Alias of self::get_description(). |
|
| 424 | - * |
|
| 425 | - * @since 1.0.19 |
|
| 426 | - * @param string $context View or edit context. |
|
| 427 | - * @return string |
|
| 428 | - */ |
|
| 429 | - public function get_summary( $context = 'view' ) { |
|
| 430 | - return $this->get_description( $context ); |
|
| 431 | - } |
|
| 432 | - |
|
| 433 | - /** |
|
| 434 | - * Get the owner of the discount. |
|
| 435 | - * |
|
| 436 | - * @since 1.0.19 |
|
| 437 | - * @param string $context View or edit context. |
|
| 438 | - * @return string |
|
| 439 | - */ |
|
| 440 | - public function get_author( $context = 'view' ) { |
|
| 441 | - return (int) $this->get_prop( 'author', $context ); |
|
| 442 | - } |
|
| 443 | - |
|
| 444 | - /** |
|
| 445 | - * Get the discount code. |
|
| 446 | - * |
|
| 447 | - * @since 1.0.19 |
|
| 448 | - * @param string $context View or edit context. |
|
| 449 | - * @return string |
|
| 450 | - */ |
|
| 451 | - public function get_code( $context = 'view' ) { |
|
| 452 | - return $this->get_prop( 'code', $context ); |
|
| 453 | - } |
|
| 454 | - |
|
| 455 | - /** |
|
| 456 | - * Alias for self::get_code(). |
|
| 457 | - * |
|
| 458 | - * @since 1.0.19 |
|
| 459 | - * @param string $context View or edit context. |
|
| 460 | - * @return string |
|
| 461 | - */ |
|
| 462 | - public function get_coupon_code( $context = 'view' ) { |
|
| 463 | - return $this->get_code( $context ); |
|
| 464 | - } |
|
| 465 | - |
|
| 466 | - /** |
|
| 467 | - * Alias for self::get_code(). |
|
| 468 | - * |
|
| 469 | - * @since 1.0.19 |
|
| 470 | - * @param string $context View or edit context. |
|
| 471 | - * @return string |
|
| 472 | - */ |
|
| 473 | - public function get_discount_code( $context = 'view' ) { |
|
| 474 | - return $this->get_code( $context ); |
|
| 475 | - } |
|
| 476 | - |
|
| 477 | - /** |
|
| 478 | - * Get the discount's amount. |
|
| 479 | - * |
|
| 480 | - * @since 1.0.19 |
|
| 481 | - * @param string $context View or edit context. |
|
| 482 | - * @return float |
|
| 483 | - */ |
|
| 484 | - public function get_amount( $context = 'view' ) { |
|
| 485 | - return $context == 'view' ? floatval( $this->get_prop( 'amount', $context ) ) : $this->get_prop( 'amount', $context ); |
|
| 486 | - } |
|
| 487 | - |
|
| 488 | - /** |
|
| 489 | - * Get the discount's formated amount/rate. |
|
| 490 | - * |
|
| 491 | - * @since 1.0.19 |
|
| 492 | - * @return string |
|
| 493 | - */ |
|
| 494 | - public function get_formatted_amount() { |
|
| 495 | - |
|
| 496 | - if ( $this->is_type( 'flat' ) ) { |
|
| 497 | - $rate = wpinv_price( $this->get_amount() ); |
|
| 498 | - } else { |
|
| 499 | - $rate = $this->get_amount() . '%'; |
|
| 500 | - } |
|
| 501 | - |
|
| 502 | - return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() ); |
|
| 503 | - } |
|
| 504 | - |
|
| 505 | - /** |
|
| 506 | - * Get the discount's start date. |
|
| 507 | - * |
|
| 508 | - * @since 1.0.19 |
|
| 509 | - * @param string $context View or edit context. |
|
| 510 | - * @return string |
|
| 511 | - */ |
|
| 512 | - public function get_start( $context = 'view' ) { |
|
| 513 | - return $this->get_prop( 'start', $context ); |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - /** |
|
| 517 | - * Alias for self::get_start(). |
|
| 518 | - * |
|
| 519 | - * @since 1.0.19 |
|
| 520 | - * @param string $context View or edit context. |
|
| 521 | - * @return string |
|
| 522 | - */ |
|
| 523 | - public function get_start_date( $context = 'view' ) { |
|
| 524 | - return $this->get_start( $context ); |
|
| 525 | - } |
|
| 526 | - |
|
| 527 | - /** |
|
| 528 | - * Get the discount's expiration date. |
|
| 529 | - * |
|
| 530 | - * @since 1.0.19 |
|
| 531 | - * @param string $context View or edit context. |
|
| 532 | - * @return string |
|
| 533 | - */ |
|
| 534 | - public function get_expiration( $context = 'view' ) { |
|
| 535 | - return $this->get_prop( 'expiration', $context ); |
|
| 536 | - } |
|
| 537 | - |
|
| 538 | - /** |
|
| 539 | - * Alias for self::get_expiration(). |
|
| 540 | - * |
|
| 541 | - * @since 1.0.19 |
|
| 542 | - * @param string $context View or edit context. |
|
| 543 | - * @return string |
|
| 544 | - */ |
|
| 545 | - public function get_expiration_date( $context = 'view' ) { |
|
| 546 | - return $this->get_expiration( $context ); |
|
| 547 | - } |
|
| 548 | - |
|
| 549 | - /** |
|
| 550 | - * Alias for self::get_expiration(). |
|
| 551 | - * |
|
| 552 | - * @since 1.0.19 |
|
| 553 | - * @param string $context View or edit context. |
|
| 554 | - * @return string |
|
| 555 | - */ |
|
| 556 | - public function get_end_date( $context = 'view' ) { |
|
| 557 | - return $this->get_expiration( $context ); |
|
| 558 | - } |
|
| 559 | - |
|
| 560 | - /** |
|
| 561 | - * Get the discount's type. |
|
| 562 | - * |
|
| 563 | - * @since 1.0.19 |
|
| 564 | - * @param string $context View or edit context. |
|
| 565 | - * @return string |
|
| 566 | - */ |
|
| 567 | - public function get_type( $context = 'view' ) { |
|
| 568 | - return $this->get_prop( 'type', $context ); |
|
| 569 | - } |
|
| 570 | - |
|
| 571 | - /** |
|
| 572 | - * Get the number of times a discount has been used. |
|
| 573 | - * |
|
| 574 | - * @since 1.0.19 |
|
| 575 | - * @param string $context View or edit context. |
|
| 576 | - * @return int |
|
| 577 | - */ |
|
| 578 | - public function get_uses( $context = 'view' ) { |
|
| 579 | - return (int) $this->get_prop( 'uses', $context ); |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - /** |
|
| 583 | - * Get the discount's usage, i.e uses / max uses. |
|
| 584 | - * |
|
| 585 | - * @since 1.0.19 |
|
| 586 | - * @return string |
|
| 587 | - */ |
|
| 588 | - public function get_usage() { |
|
| 589 | - |
|
| 590 | - if ( ! $this->has_limit() ) { |
|
| 591 | - return $this->get_uses() . ' / ' . ' ∞'; |
|
| 592 | - } |
|
| 593 | - |
|
| 594 | - return $this->get_uses() . ' / ' . (int) $this->get_max_uses(); |
|
| 595 | - |
|
| 596 | - } |
|
| 597 | - |
|
| 598 | - /** |
|
| 599 | - * Get the maximum number of time a discount can be used. |
|
| 600 | - * |
|
| 601 | - * @since 1.0.19 |
|
| 602 | - * @param string $context View or edit context. |
|
| 603 | - * @return int |
|
| 604 | - */ |
|
| 605 | - public function get_max_uses( $context = 'view' ) { |
|
| 606 | - $max_uses = $this->get_prop( 'max_uses', $context ); |
|
| 607 | - return empty( $max_uses ) ? null : $max_uses; |
|
| 608 | - } |
|
| 609 | - |
|
| 610 | - /** |
|
| 611 | - * Checks if this is a single use discount or not. |
|
| 612 | - * |
|
| 613 | - * @since 1.0.19 |
|
| 614 | - * @param string $context View or edit context. |
|
| 615 | - * @return bool |
|
| 616 | - */ |
|
| 617 | - public function get_is_single_use( $context = 'view' ) { |
|
| 618 | - return $this->get_prop( 'is_single_use', $context ); |
|
| 619 | - } |
|
| 620 | - |
|
| 621 | - /** |
|
| 622 | - * Get the items that can be used with this discount. |
|
| 623 | - * |
|
| 624 | - * @since 1.0.19 |
|
| 625 | - * @param string $context View or edit context. |
|
| 626 | - * @return array |
|
| 627 | - */ |
|
| 628 | - public function get_items( $context = 'view' ) { |
|
| 629 | - return array_filter( wp_parse_id_list( $this->get_prop( 'items', $context ) ) ); |
|
| 630 | - } |
|
| 631 | - |
|
| 632 | - /** |
|
| 633 | - * Alias for self::get_items(). |
|
| 634 | - * |
|
| 635 | - * @since 1.0.19 |
|
| 636 | - * @param string $context View or edit context. |
|
| 637 | - * @return array |
|
| 638 | - */ |
|
| 639 | - public function get_allowed_items( $context = 'view' ) { |
|
| 640 | - return $this->get_items( $context ); |
|
| 641 | - } |
|
| 642 | - |
|
| 643 | - /** |
|
| 644 | - * Get the items that are not allowed to use this discount. |
|
| 645 | - * |
|
| 646 | - * @since 1.0.19 |
|
| 647 | - * @param string $context View or edit context. |
|
| 648 | - * @return array |
|
| 649 | - */ |
|
| 650 | - public function get_excluded_items( $context = 'view' ) { |
|
| 651 | - return array_filter( wp_parse_id_list( $this->get_prop( 'excluded_items', $context ) ) ); |
|
| 652 | - } |
|
| 653 | - |
|
| 654 | - /** |
|
| 655 | - * Get the items that are required to be in the cart before using this discount. |
|
| 656 | - * |
|
| 657 | - * @since 1.0.19 |
|
| 658 | - * @param string $context View or edit context. |
|
| 659 | - * @return array |
|
| 660 | - */ |
|
| 661 | - public function get_required_items( $context = 'view' ) { |
|
| 662 | - return array_filter( wp_parse_id_list( $this->get_prop( 'required_items', $context ) ) ); |
|
| 663 | - } |
|
| 664 | - |
|
| 665 | - /** |
|
| 666 | - * Checks if this is a recurring discount or not. |
|
| 667 | - * |
|
| 668 | - * @since 1.0.19 |
|
| 669 | - * @param string $context View or edit context. |
|
| 670 | - * @return int|string|bool |
|
| 671 | - */ |
|
| 672 | - public function get_is_recurring( $context = 'view' ) { |
|
| 673 | - return $this->get_prop( 'is_recurring', $context ); |
|
| 674 | - } |
|
| 675 | - |
|
| 676 | - /** |
|
| 677 | - * Get's the minimum total amount allowed for this discount. |
|
| 678 | - * |
|
| 679 | - * @since 1.0.19 |
|
| 680 | - * @param string $context View or edit context. |
|
| 681 | - * @return float |
|
| 682 | - */ |
|
| 683 | - public function get_min_total( $context = 'view' ) { |
|
| 684 | - $minimum = $this->get_prop( 'min_total', $context ); |
|
| 685 | - return empty( $minimum ) ? null : $minimum; |
|
| 686 | - } |
|
| 687 | - |
|
| 688 | - /** |
|
| 689 | - * Alias for self::get_min_total(). |
|
| 690 | - * |
|
| 691 | - * @since 1.0.19 |
|
| 692 | - * @param string $context View or edit context. |
|
| 693 | - * @return float |
|
| 694 | - */ |
|
| 695 | - public function get_minimum_total( $context = 'view' ) { |
|
| 696 | - return $this->get_min_total( $context ); |
|
| 697 | - } |
|
| 698 | - |
|
| 699 | - /** |
|
| 700 | - * Get's the maximum total amount allowed for this discount. |
|
| 701 | - * |
|
| 702 | - * @since 1.0.19 |
|
| 703 | - * @param string $context View or edit context. |
|
| 704 | - * @return float |
|
| 705 | - */ |
|
| 706 | - public function get_max_total( $context = 'view' ) { |
|
| 707 | - $maximum = $this->get_prop( 'max_total', $context ); |
|
| 708 | - return empty( $maximum ) ? null : $maximum; |
|
| 709 | - } |
|
| 710 | - |
|
| 711 | - /** |
|
| 712 | - * Alias for self::get_max_total(). |
|
| 713 | - * |
|
| 714 | - * @since 1.0.19 |
|
| 715 | - * @param string $context View or edit context. |
|
| 716 | - * @return float |
|
| 717 | - */ |
|
| 718 | - public function get_maximum_total( $context = 'view' ) { |
|
| 719 | - return $this->get_max_total( $context ); |
|
| 720 | - } |
|
| 721 | - |
|
| 722 | - /** |
|
| 723 | - * Magic method for accessing discount properties. |
|
| 724 | - * |
|
| 725 | - * @since 1.0.15 |
|
| 726 | - * @access public |
|
| 727 | - * |
|
| 728 | - * @param string $key Discount data to retrieve |
|
| 729 | - * @param string $context View or edit context. |
|
| 730 | - * @return mixed Value of the given discount property (if set). |
|
| 731 | - */ |
|
| 732 | - public function get( $key, $context = 'view' ) { |
|
| 375 | + return $date; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + /** |
|
| 379 | + * Get the discount name. |
|
| 380 | + * |
|
| 381 | + * @since 1.0.19 |
|
| 382 | + * @param string $context View or edit context. |
|
| 383 | + * @return string |
|
| 384 | + */ |
|
| 385 | + public function get_name( $context = 'view' ) { |
|
| 386 | + return $this->get_prop( 'name', $context ); |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + /** |
|
| 390 | + * Alias of self::get_name(). |
|
| 391 | + * |
|
| 392 | + * @since 1.0.19 |
|
| 393 | + * @param string $context View or edit context. |
|
| 394 | + * @return string |
|
| 395 | + */ |
|
| 396 | + public function get_title( $context = 'view' ) { |
|
| 397 | + return $this->get_name( $context ); |
|
| 398 | + } |
|
| 399 | + |
|
| 400 | + /** |
|
| 401 | + * Get the discount description. |
|
| 402 | + * |
|
| 403 | + * @since 1.0.19 |
|
| 404 | + * @param string $context View or edit context. |
|
| 405 | + * @return string |
|
| 406 | + */ |
|
| 407 | + public function get_description( $context = 'view' ) { |
|
| 408 | + return $this->get_prop( 'description', $context ); |
|
| 409 | + } |
|
| 410 | + |
|
| 411 | + /** |
|
| 412 | + * Alias of self::get_description(). |
|
| 413 | + * |
|
| 414 | + * @since 1.0.19 |
|
| 415 | + * @param string $context View or edit context. |
|
| 416 | + * @return string |
|
| 417 | + */ |
|
| 418 | + public function get_excerpt( $context = 'view' ) { |
|
| 419 | + return $this->get_description( $context ); |
|
| 420 | + } |
|
| 421 | + |
|
| 422 | + /** |
|
| 423 | + * Alias of self::get_description(). |
|
| 424 | + * |
|
| 425 | + * @since 1.0.19 |
|
| 426 | + * @param string $context View or edit context. |
|
| 427 | + * @return string |
|
| 428 | + */ |
|
| 429 | + public function get_summary( $context = 'view' ) { |
|
| 430 | + return $this->get_description( $context ); |
|
| 431 | + } |
|
| 432 | + |
|
| 433 | + /** |
|
| 434 | + * Get the owner of the discount. |
|
| 435 | + * |
|
| 436 | + * @since 1.0.19 |
|
| 437 | + * @param string $context View or edit context. |
|
| 438 | + * @return string |
|
| 439 | + */ |
|
| 440 | + public function get_author( $context = 'view' ) { |
|
| 441 | + return (int) $this->get_prop( 'author', $context ); |
|
| 442 | + } |
|
| 443 | + |
|
| 444 | + /** |
|
| 445 | + * Get the discount code. |
|
| 446 | + * |
|
| 447 | + * @since 1.0.19 |
|
| 448 | + * @param string $context View or edit context. |
|
| 449 | + * @return string |
|
| 450 | + */ |
|
| 451 | + public function get_code( $context = 'view' ) { |
|
| 452 | + return $this->get_prop( 'code', $context ); |
|
| 453 | + } |
|
| 454 | + |
|
| 455 | + /** |
|
| 456 | + * Alias for self::get_code(). |
|
| 457 | + * |
|
| 458 | + * @since 1.0.19 |
|
| 459 | + * @param string $context View or edit context. |
|
| 460 | + * @return string |
|
| 461 | + */ |
|
| 462 | + public function get_coupon_code( $context = 'view' ) { |
|
| 463 | + return $this->get_code( $context ); |
|
| 464 | + } |
|
| 465 | + |
|
| 466 | + /** |
|
| 467 | + * Alias for self::get_code(). |
|
| 468 | + * |
|
| 469 | + * @since 1.0.19 |
|
| 470 | + * @param string $context View or edit context. |
|
| 471 | + * @return string |
|
| 472 | + */ |
|
| 473 | + public function get_discount_code( $context = 'view' ) { |
|
| 474 | + return $this->get_code( $context ); |
|
| 475 | + } |
|
| 476 | + |
|
| 477 | + /** |
|
| 478 | + * Get the discount's amount. |
|
| 479 | + * |
|
| 480 | + * @since 1.0.19 |
|
| 481 | + * @param string $context View or edit context. |
|
| 482 | + * @return float |
|
| 483 | + */ |
|
| 484 | + public function get_amount( $context = 'view' ) { |
|
| 485 | + return $context == 'view' ? floatval( $this->get_prop( 'amount', $context ) ) : $this->get_prop( 'amount', $context ); |
|
| 486 | + } |
|
| 487 | + |
|
| 488 | + /** |
|
| 489 | + * Get the discount's formated amount/rate. |
|
| 490 | + * |
|
| 491 | + * @since 1.0.19 |
|
| 492 | + * @return string |
|
| 493 | + */ |
|
| 494 | + public function get_formatted_amount() { |
|
| 495 | + |
|
| 496 | + if ( $this->is_type( 'flat' ) ) { |
|
| 497 | + $rate = wpinv_price( $this->get_amount() ); |
|
| 498 | + } else { |
|
| 499 | + $rate = $this->get_amount() . '%'; |
|
| 500 | + } |
|
| 501 | + |
|
| 502 | + return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() ); |
|
| 503 | + } |
|
| 504 | + |
|
| 505 | + /** |
|
| 506 | + * Get the discount's start date. |
|
| 507 | + * |
|
| 508 | + * @since 1.0.19 |
|
| 509 | + * @param string $context View or edit context. |
|
| 510 | + * @return string |
|
| 511 | + */ |
|
| 512 | + public function get_start( $context = 'view' ) { |
|
| 513 | + return $this->get_prop( 'start', $context ); |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + /** |
|
| 517 | + * Alias for self::get_start(). |
|
| 518 | + * |
|
| 519 | + * @since 1.0.19 |
|
| 520 | + * @param string $context View or edit context. |
|
| 521 | + * @return string |
|
| 522 | + */ |
|
| 523 | + public function get_start_date( $context = 'view' ) { |
|
| 524 | + return $this->get_start( $context ); |
|
| 525 | + } |
|
| 526 | + |
|
| 527 | + /** |
|
| 528 | + * Get the discount's expiration date. |
|
| 529 | + * |
|
| 530 | + * @since 1.0.19 |
|
| 531 | + * @param string $context View or edit context. |
|
| 532 | + * @return string |
|
| 533 | + */ |
|
| 534 | + public function get_expiration( $context = 'view' ) { |
|
| 535 | + return $this->get_prop( 'expiration', $context ); |
|
| 536 | + } |
|
| 537 | + |
|
| 538 | + /** |
|
| 539 | + * Alias for self::get_expiration(). |
|
| 540 | + * |
|
| 541 | + * @since 1.0.19 |
|
| 542 | + * @param string $context View or edit context. |
|
| 543 | + * @return string |
|
| 544 | + */ |
|
| 545 | + public function get_expiration_date( $context = 'view' ) { |
|
| 546 | + return $this->get_expiration( $context ); |
|
| 547 | + } |
|
| 548 | + |
|
| 549 | + /** |
|
| 550 | + * Alias for self::get_expiration(). |
|
| 551 | + * |
|
| 552 | + * @since 1.0.19 |
|
| 553 | + * @param string $context View or edit context. |
|
| 554 | + * @return string |
|
| 555 | + */ |
|
| 556 | + public function get_end_date( $context = 'view' ) { |
|
| 557 | + return $this->get_expiration( $context ); |
|
| 558 | + } |
|
| 559 | + |
|
| 560 | + /** |
|
| 561 | + * Get the discount's type. |
|
| 562 | + * |
|
| 563 | + * @since 1.0.19 |
|
| 564 | + * @param string $context View or edit context. |
|
| 565 | + * @return string |
|
| 566 | + */ |
|
| 567 | + public function get_type( $context = 'view' ) { |
|
| 568 | + return $this->get_prop( 'type', $context ); |
|
| 569 | + } |
|
| 570 | + |
|
| 571 | + /** |
|
| 572 | + * Get the number of times a discount has been used. |
|
| 573 | + * |
|
| 574 | + * @since 1.0.19 |
|
| 575 | + * @param string $context View or edit context. |
|
| 576 | + * @return int |
|
| 577 | + */ |
|
| 578 | + public function get_uses( $context = 'view' ) { |
|
| 579 | + return (int) $this->get_prop( 'uses', $context ); |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + /** |
|
| 583 | + * Get the discount's usage, i.e uses / max uses. |
|
| 584 | + * |
|
| 585 | + * @since 1.0.19 |
|
| 586 | + * @return string |
|
| 587 | + */ |
|
| 588 | + public function get_usage() { |
|
| 589 | + |
|
| 590 | + if ( ! $this->has_limit() ) { |
|
| 591 | + return $this->get_uses() . ' / ' . ' ∞'; |
|
| 592 | + } |
|
| 593 | + |
|
| 594 | + return $this->get_uses() . ' / ' . (int) $this->get_max_uses(); |
|
| 595 | + |
|
| 596 | + } |
|
| 597 | + |
|
| 598 | + /** |
|
| 599 | + * Get the maximum number of time a discount can be used. |
|
| 600 | + * |
|
| 601 | + * @since 1.0.19 |
|
| 602 | + * @param string $context View or edit context. |
|
| 603 | + * @return int |
|
| 604 | + */ |
|
| 605 | + public function get_max_uses( $context = 'view' ) { |
|
| 606 | + $max_uses = $this->get_prop( 'max_uses', $context ); |
|
| 607 | + return empty( $max_uses ) ? null : $max_uses; |
|
| 608 | + } |
|
| 609 | + |
|
| 610 | + /** |
|
| 611 | + * Checks if this is a single use discount or not. |
|
| 612 | + * |
|
| 613 | + * @since 1.0.19 |
|
| 614 | + * @param string $context View or edit context. |
|
| 615 | + * @return bool |
|
| 616 | + */ |
|
| 617 | + public function get_is_single_use( $context = 'view' ) { |
|
| 618 | + return $this->get_prop( 'is_single_use', $context ); |
|
| 619 | + } |
|
| 620 | + |
|
| 621 | + /** |
|
| 622 | + * Get the items that can be used with this discount. |
|
| 623 | + * |
|
| 624 | + * @since 1.0.19 |
|
| 625 | + * @param string $context View or edit context. |
|
| 626 | + * @return array |
|
| 627 | + */ |
|
| 628 | + public function get_items( $context = 'view' ) { |
|
| 629 | + return array_filter( wp_parse_id_list( $this->get_prop( 'items', $context ) ) ); |
|
| 630 | + } |
|
| 631 | + |
|
| 632 | + /** |
|
| 633 | + * Alias for self::get_items(). |
|
| 634 | + * |
|
| 635 | + * @since 1.0.19 |
|
| 636 | + * @param string $context View or edit context. |
|
| 637 | + * @return array |
|
| 638 | + */ |
|
| 639 | + public function get_allowed_items( $context = 'view' ) { |
|
| 640 | + return $this->get_items( $context ); |
|
| 641 | + } |
|
| 642 | + |
|
| 643 | + /** |
|
| 644 | + * Get the items that are not allowed to use this discount. |
|
| 645 | + * |
|
| 646 | + * @since 1.0.19 |
|
| 647 | + * @param string $context View or edit context. |
|
| 648 | + * @return array |
|
| 649 | + */ |
|
| 650 | + public function get_excluded_items( $context = 'view' ) { |
|
| 651 | + return array_filter( wp_parse_id_list( $this->get_prop( 'excluded_items', $context ) ) ); |
|
| 652 | + } |
|
| 653 | + |
|
| 654 | + /** |
|
| 655 | + * Get the items that are required to be in the cart before using this discount. |
|
| 656 | + * |
|
| 657 | + * @since 1.0.19 |
|
| 658 | + * @param string $context View or edit context. |
|
| 659 | + * @return array |
|
| 660 | + */ |
|
| 661 | + public function get_required_items( $context = 'view' ) { |
|
| 662 | + return array_filter( wp_parse_id_list( $this->get_prop( 'required_items', $context ) ) ); |
|
| 663 | + } |
|
| 664 | + |
|
| 665 | + /** |
|
| 666 | + * Checks if this is a recurring discount or not. |
|
| 667 | + * |
|
| 668 | + * @since 1.0.19 |
|
| 669 | + * @param string $context View or edit context. |
|
| 670 | + * @return int|string|bool |
|
| 671 | + */ |
|
| 672 | + public function get_is_recurring( $context = 'view' ) { |
|
| 673 | + return $this->get_prop( 'is_recurring', $context ); |
|
| 674 | + } |
|
| 675 | + |
|
| 676 | + /** |
|
| 677 | + * Get's the minimum total amount allowed for this discount. |
|
| 678 | + * |
|
| 679 | + * @since 1.0.19 |
|
| 680 | + * @param string $context View or edit context. |
|
| 681 | + * @return float |
|
| 682 | + */ |
|
| 683 | + public function get_min_total( $context = 'view' ) { |
|
| 684 | + $minimum = $this->get_prop( 'min_total', $context ); |
|
| 685 | + return empty( $minimum ) ? null : $minimum; |
|
| 686 | + } |
|
| 687 | + |
|
| 688 | + /** |
|
| 689 | + * Alias for self::get_min_total(). |
|
| 690 | + * |
|
| 691 | + * @since 1.0.19 |
|
| 692 | + * @param string $context View or edit context. |
|
| 693 | + * @return float |
|
| 694 | + */ |
|
| 695 | + public function get_minimum_total( $context = 'view' ) { |
|
| 696 | + return $this->get_min_total( $context ); |
|
| 697 | + } |
|
| 698 | + |
|
| 699 | + /** |
|
| 700 | + * Get's the maximum total amount allowed for this discount. |
|
| 701 | + * |
|
| 702 | + * @since 1.0.19 |
|
| 703 | + * @param string $context View or edit context. |
|
| 704 | + * @return float |
|
| 705 | + */ |
|
| 706 | + public function get_max_total( $context = 'view' ) { |
|
| 707 | + $maximum = $this->get_prop( 'max_total', $context ); |
|
| 708 | + return empty( $maximum ) ? null : $maximum; |
|
| 709 | + } |
|
| 710 | + |
|
| 711 | + /** |
|
| 712 | + * Alias for self::get_max_total(). |
|
| 713 | + * |
|
| 714 | + * @since 1.0.19 |
|
| 715 | + * @param string $context View or edit context. |
|
| 716 | + * @return float |
|
| 717 | + */ |
|
| 718 | + public function get_maximum_total( $context = 'view' ) { |
|
| 719 | + return $this->get_max_total( $context ); |
|
| 720 | + } |
|
| 721 | + |
|
| 722 | + /** |
|
| 723 | + * Magic method for accessing discount properties. |
|
| 724 | + * |
|
| 725 | + * @since 1.0.15 |
|
| 726 | + * @access public |
|
| 727 | + * |
|
| 728 | + * @param string $key Discount data to retrieve |
|
| 729 | + * @param string $context View or edit context. |
|
| 730 | + * @return mixed Value of the given discount property (if set). |
|
| 731 | + */ |
|
| 732 | + public function get( $key, $context = 'view' ) { |
|
| 733 | 733 | return $this->get_prop( $key, $context ); |
| 734 | - } |
|
| 734 | + } |
|
| 735 | 735 | |
| 736 | - /* |
|
| 736 | + /* |
|
| 737 | 737 | |-------------------------------------------------------------------------- |
| 738 | 738 | | Setters |
| 739 | 739 | |-------------------------------------------------------------------------- |
@@ -743,41 +743,41 @@ discard block |
||
| 743 | 743 | | object. |
| 744 | 744 | */ |
| 745 | 745 | |
| 746 | - /** |
|
| 747 | - * Sets discount status. |
|
| 748 | - * |
|
| 749 | - * @since 1.0.19 |
|
| 750 | - * @param string $status New status. |
|
| 751 | - * @return array details of change. |
|
| 752 | - */ |
|
| 753 | - public function set_status( $status ) { |
|
| 746 | + /** |
|
| 747 | + * Sets discount status. |
|
| 748 | + * |
|
| 749 | + * @since 1.0.19 |
|
| 750 | + * @param string $status New status. |
|
| 751 | + * @return array details of change. |
|
| 752 | + */ |
|
| 753 | + public function set_status( $status ) { |
|
| 754 | 754 | $old_status = $this->get_status(); |
| 755 | 755 | |
| 756 | 756 | $this->set_prop( 'status', $status ); |
| 757 | 757 | |
| 758 | - return array( |
|
| 759 | - 'from' => $old_status, |
|
| 760 | - 'to' => $status, |
|
| 761 | - ); |
|
| 758 | + return array( |
|
| 759 | + 'from' => $old_status, |
|
| 760 | + 'to' => $status, |
|
| 761 | + ); |
|
| 762 | 762 | } |
| 763 | 763 | |
| 764 | 764 | /** |
| 765 | - * Set plugin version when the discount was created. |
|
| 766 | - * |
|
| 767 | - * @since 1.0.19 |
|
| 768 | - */ |
|
| 769 | - public function set_version( $value ) { |
|
| 770 | - $this->set_prop( 'version', $value ); |
|
| 765 | + * Set plugin version when the discount was created. |
|
| 766 | + * |
|
| 767 | + * @since 1.0.19 |
|
| 768 | + */ |
|
| 769 | + public function set_version( $value ) { |
|
| 770 | + $this->set_prop( 'version', $value ); |
|
| 771 | 771 | } |
| 772 | 772 | |
| 773 | 773 | /** |
| 774 | - * Set date when the discount was created. |
|
| 775 | - * |
|
| 776 | - * @since 1.0.19 |
|
| 777 | - * @param string $value Value to set. |
|
| 774 | + * Set date when the discount was created. |
|
| 775 | + * |
|
| 776 | + * @since 1.0.19 |
|
| 777 | + * @param string $value Value to set. |
|
| 778 | 778 | * @return bool Whether or not the date was set. |
| 779 | - */ |
|
| 780 | - public function set_date_created( $value ) { |
|
| 779 | + */ |
|
| 780 | + public function set_date_created( $value ) { |
|
| 781 | 781 | $date = strtotime( $value ); |
| 782 | 782 | |
| 783 | 783 | if ( $date ) { |
@@ -790,13 +790,13 @@ discard block |
||
| 790 | 790 | } |
| 791 | 791 | |
| 792 | 792 | /** |
| 793 | - * Set date when the discount was last modified. |
|
| 794 | - * |
|
| 795 | - * @since 1.0.19 |
|
| 796 | - * @param string $value Value to set. |
|
| 793 | + * Set date when the discount was last modified. |
|
| 794 | + * |
|
| 795 | + * @since 1.0.19 |
|
| 796 | + * @param string $value Value to set. |
|
| 797 | 797 | * @return bool Whether or not the date was set. |
| 798 | - */ |
|
| 799 | - public function set_date_modified( $value ) { |
|
| 798 | + */ |
|
| 799 | + public function set_date_modified( $value ) { |
|
| 800 | 800 | $date = strtotime( $value ); |
| 801 | 801 | |
| 802 | 802 | if ( $date ) { |
@@ -809,334 +809,334 @@ discard block |
||
| 809 | 809 | } |
| 810 | 810 | |
| 811 | 811 | /** |
| 812 | - * Set the discount name. |
|
| 813 | - * |
|
| 814 | - * @since 1.0.19 |
|
| 815 | - * @param string $value New name. |
|
| 816 | - */ |
|
| 817 | - public function set_name( $value ) { |
|
| 812 | + * Set the discount name. |
|
| 813 | + * |
|
| 814 | + * @since 1.0.19 |
|
| 815 | + * @param string $value New name. |
|
| 816 | + */ |
|
| 817 | + public function set_name( $value ) { |
|
| 818 | 818 | $name = sanitize_text_field( $value ); |
| 819 | - $this->set_prop( 'name', $name ); |
|
| 819 | + $this->set_prop( 'name', $name ); |
|
| 820 | 820 | } |
| 821 | 821 | |
| 822 | 822 | /** |
| 823 | - * Alias of self::set_name(). |
|
| 824 | - * |
|
| 825 | - * @since 1.0.19 |
|
| 826 | - * @param string $value New name. |
|
| 827 | - */ |
|
| 828 | - public function set_title( $value ) { |
|
| 829 | - $this->set_name( $value ); |
|
| 823 | + * Alias of self::set_name(). |
|
| 824 | + * |
|
| 825 | + * @since 1.0.19 |
|
| 826 | + * @param string $value New name. |
|
| 827 | + */ |
|
| 828 | + public function set_title( $value ) { |
|
| 829 | + $this->set_name( $value ); |
|
| 830 | 830 | } |
| 831 | 831 | |
| 832 | 832 | /** |
| 833 | - * Set the discount description. |
|
| 834 | - * |
|
| 835 | - * @since 1.0.19 |
|
| 836 | - * @param string $value New description. |
|
| 837 | - */ |
|
| 838 | - public function set_description( $value ) { |
|
| 833 | + * Set the discount description. |
|
| 834 | + * |
|
| 835 | + * @since 1.0.19 |
|
| 836 | + * @param string $value New description. |
|
| 837 | + */ |
|
| 838 | + public function set_description( $value ) { |
|
| 839 | 839 | $description = wp_kses_post( $value ); |
| 840 | - return $this->set_prop( 'description', $description ); |
|
| 841 | - } |
|
| 842 | - |
|
| 843 | - /** |
|
| 844 | - * Alias of self::set_description(). |
|
| 845 | - * |
|
| 846 | - * @since 1.0.19 |
|
| 847 | - * @param string $value New description. |
|
| 848 | - */ |
|
| 849 | - public function set_excerpt( $value ) { |
|
| 850 | - $this->set_description( $value ); |
|
| 851 | - } |
|
| 852 | - |
|
| 853 | - /** |
|
| 854 | - * Alias of self::set_description(). |
|
| 855 | - * |
|
| 856 | - * @since 1.0.19 |
|
| 857 | - * @param string $value New description. |
|
| 858 | - */ |
|
| 859 | - public function set_summary( $value ) { |
|
| 860 | - $this->set_description( $value ); |
|
| 861 | - } |
|
| 862 | - |
|
| 863 | - /** |
|
| 864 | - * Set the owner of the discount. |
|
| 865 | - * |
|
| 866 | - * @since 1.0.19 |
|
| 867 | - * @param int $value New author. |
|
| 868 | - */ |
|
| 869 | - public function set_author( $value ) { |
|
| 870 | - $this->set_prop( 'author', (int) $value ); |
|
| 871 | - } |
|
| 872 | - |
|
| 873 | - /** |
|
| 874 | - * Sets the discount code. |
|
| 875 | - * |
|
| 876 | - * @since 1.0.19 |
|
| 877 | - * @param string $value New discount code. |
|
| 878 | - */ |
|
| 879 | - public function set_code( $value ) { |
|
| 880 | - $code = sanitize_text_field( $value ); |
|
| 881 | - $this->set_prop( 'code', $code ); |
|
| 882 | - } |
|
| 883 | - |
|
| 884 | - /** |
|
| 885 | - * Alias of self::set_code(). |
|
| 886 | - * |
|
| 887 | - * @since 1.0.19 |
|
| 888 | - * @param string $value New discount code. |
|
| 889 | - */ |
|
| 890 | - public function set_coupon_code( $value ) { |
|
| 891 | - $this->set_code( $value ); |
|
| 892 | - } |
|
| 893 | - |
|
| 894 | - /** |
|
| 895 | - * Alias of self::set_code(). |
|
| 896 | - * |
|
| 897 | - * @since 1.0.19 |
|
| 898 | - * @param string $value New discount code. |
|
| 899 | - */ |
|
| 900 | - public function set_discount_code( $value ) { |
|
| 901 | - $this->set_code( $value ); |
|
| 902 | - } |
|
| 903 | - |
|
| 904 | - /** |
|
| 905 | - * Sets the discount amount. |
|
| 906 | - * |
|
| 907 | - * @since 1.0.19 |
|
| 908 | - * @param float $value New discount code. |
|
| 909 | - */ |
|
| 910 | - public function set_amount( $value ) { |
|
| 911 | - $amount = floatval( wpinv_sanitize_amount( $value ) ); |
|
| 912 | - $this->set_prop( 'amount', $amount ); |
|
| 913 | - } |
|
| 914 | - |
|
| 915 | - /** |
|
| 916 | - * Sets the discount's start date. |
|
| 917 | - * |
|
| 918 | - * @since 1.0.19 |
|
| 919 | - * @param float $value New start date. |
|
| 920 | - */ |
|
| 921 | - public function set_start( $value ) { |
|
| 922 | - $date = strtotime( $value ); |
|
| 840 | + return $this->set_prop( 'description', $description ); |
|
| 841 | + } |
|
| 842 | + |
|
| 843 | + /** |
|
| 844 | + * Alias of self::set_description(). |
|
| 845 | + * |
|
| 846 | + * @since 1.0.19 |
|
| 847 | + * @param string $value New description. |
|
| 848 | + */ |
|
| 849 | + public function set_excerpt( $value ) { |
|
| 850 | + $this->set_description( $value ); |
|
| 851 | + } |
|
| 852 | + |
|
| 853 | + /** |
|
| 854 | + * Alias of self::set_description(). |
|
| 855 | + * |
|
| 856 | + * @since 1.0.19 |
|
| 857 | + * @param string $value New description. |
|
| 858 | + */ |
|
| 859 | + public function set_summary( $value ) { |
|
| 860 | + $this->set_description( $value ); |
|
| 861 | + } |
|
| 862 | + |
|
| 863 | + /** |
|
| 864 | + * Set the owner of the discount. |
|
| 865 | + * |
|
| 866 | + * @since 1.0.19 |
|
| 867 | + * @param int $value New author. |
|
| 868 | + */ |
|
| 869 | + public function set_author( $value ) { |
|
| 870 | + $this->set_prop( 'author', (int) $value ); |
|
| 871 | + } |
|
| 872 | + |
|
| 873 | + /** |
|
| 874 | + * Sets the discount code. |
|
| 875 | + * |
|
| 876 | + * @since 1.0.19 |
|
| 877 | + * @param string $value New discount code. |
|
| 878 | + */ |
|
| 879 | + public function set_code( $value ) { |
|
| 880 | + $code = sanitize_text_field( $value ); |
|
| 881 | + $this->set_prop( 'code', $code ); |
|
| 882 | + } |
|
| 883 | + |
|
| 884 | + /** |
|
| 885 | + * Alias of self::set_code(). |
|
| 886 | + * |
|
| 887 | + * @since 1.0.19 |
|
| 888 | + * @param string $value New discount code. |
|
| 889 | + */ |
|
| 890 | + public function set_coupon_code( $value ) { |
|
| 891 | + $this->set_code( $value ); |
|
| 892 | + } |
|
| 893 | + |
|
| 894 | + /** |
|
| 895 | + * Alias of self::set_code(). |
|
| 896 | + * |
|
| 897 | + * @since 1.0.19 |
|
| 898 | + * @param string $value New discount code. |
|
| 899 | + */ |
|
| 900 | + public function set_discount_code( $value ) { |
|
| 901 | + $this->set_code( $value ); |
|
| 902 | + } |
|
| 903 | + |
|
| 904 | + /** |
|
| 905 | + * Sets the discount amount. |
|
| 906 | + * |
|
| 907 | + * @since 1.0.19 |
|
| 908 | + * @param float $value New discount code. |
|
| 909 | + */ |
|
| 910 | + public function set_amount( $value ) { |
|
| 911 | + $amount = floatval( wpinv_sanitize_amount( $value ) ); |
|
| 912 | + $this->set_prop( 'amount', $amount ); |
|
| 913 | + } |
|
| 914 | + |
|
| 915 | + /** |
|
| 916 | + * Sets the discount's start date. |
|
| 917 | + * |
|
| 918 | + * @since 1.0.19 |
|
| 919 | + * @param float $value New start date. |
|
| 920 | + */ |
|
| 921 | + public function set_start( $value ) { |
|
| 922 | + $date = strtotime( $value ); |
|
| 923 | 923 | |
| 924 | 924 | if ( $date ) { |
| 925 | 925 | $this->set_prop( 'start', date( 'Y-m-d H:i', $date ) ); |
| 926 | 926 | return true; |
| 927 | - } |
|
| 927 | + } |
|
| 928 | 928 | |
| 929 | - $this->set_prop( 'start', '' ); |
|
| 929 | + $this->set_prop( 'start', '' ); |
|
| 930 | 930 | |
| 931 | 931 | return false; |
| 932 | - } |
|
| 933 | - |
|
| 934 | - /** |
|
| 935 | - * Alias of self::set_start(). |
|
| 936 | - * |
|
| 937 | - * @since 1.0.19 |
|
| 938 | - * @param string $value New start date. |
|
| 939 | - */ |
|
| 940 | - public function set_start_date( $value ) { |
|
| 941 | - $this->set_start( $value ); |
|
| 942 | - } |
|
| 943 | - |
|
| 944 | - /** |
|
| 945 | - * Sets the discount's expiration date. |
|
| 946 | - * |
|
| 947 | - * @since 1.0.19 |
|
| 948 | - * @param float $value New expiration date. |
|
| 949 | - */ |
|
| 950 | - public function set_expiration( $value ) { |
|
| 951 | - $date = strtotime( $value ); |
|
| 932 | + } |
|
| 933 | + |
|
| 934 | + /** |
|
| 935 | + * Alias of self::set_start(). |
|
| 936 | + * |
|
| 937 | + * @since 1.0.19 |
|
| 938 | + * @param string $value New start date. |
|
| 939 | + */ |
|
| 940 | + public function set_start_date( $value ) { |
|
| 941 | + $this->set_start( $value ); |
|
| 942 | + } |
|
| 943 | + |
|
| 944 | + /** |
|
| 945 | + * Sets the discount's expiration date. |
|
| 946 | + * |
|
| 947 | + * @since 1.0.19 |
|
| 948 | + * @param float $value New expiration date. |
|
| 949 | + */ |
|
| 950 | + public function set_expiration( $value ) { |
|
| 951 | + $date = strtotime( $value ); |
|
| 952 | 952 | |
| 953 | 953 | if ( $date ) { |
| 954 | 954 | $this->set_prop( 'expiration', date( 'Y-m-d H:i', $date ) ); |
| 955 | 955 | return true; |
| 956 | 956 | } |
| 957 | 957 | |
| 958 | - $this->set_prop( 'expiration', '' ); |
|
| 958 | + $this->set_prop( 'expiration', '' ); |
|
| 959 | 959 | return false; |
| 960 | - } |
|
| 961 | - |
|
| 962 | - /** |
|
| 963 | - * Alias of self::set_expiration(). |
|
| 964 | - * |
|
| 965 | - * @since 1.0.19 |
|
| 966 | - * @param string $value New expiration date. |
|
| 967 | - */ |
|
| 968 | - public function set_expiration_date( $value ) { |
|
| 969 | - $this->set_expiration( $value ); |
|
| 970 | - } |
|
| 971 | - |
|
| 972 | - /** |
|
| 973 | - * Alias of self::set_expiration(). |
|
| 974 | - * |
|
| 975 | - * @since 1.0.19 |
|
| 976 | - * @param string $value New expiration date. |
|
| 977 | - */ |
|
| 978 | - public function set_end_date( $value ) { |
|
| 979 | - $this->set_expiration( $value ); |
|
| 980 | - } |
|
| 981 | - |
|
| 982 | - /** |
|
| 983 | - * Sets the discount type. |
|
| 984 | - * |
|
| 985 | - * @since 1.0.19 |
|
| 986 | - * @param string $value New discount type. |
|
| 987 | - */ |
|
| 988 | - public function set_type( $value ) { |
|
| 989 | - if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) { |
|
| 990 | - $this->set_prop( 'type', sanitize_text_field( $value ) ); |
|
| 991 | - } |
|
| 992 | - } |
|
| 993 | - |
|
| 994 | - /** |
|
| 995 | - * Sets the number of times a discount has been used. |
|
| 996 | - * |
|
| 997 | - * @since 1.0.19 |
|
| 998 | - * @param int $value usage count. |
|
| 999 | - */ |
|
| 1000 | - public function set_uses( $value ) { |
|
| 1001 | - |
|
| 1002 | - $value = (int) $value; |
|
| 1003 | - |
|
| 1004 | - if ( $value < 0 ) { |
|
| 1005 | - $value = 0; |
|
| 1006 | - } |
|
| 1007 | - |
|
| 1008 | - $this->set_prop( 'uses', (int) $value ); |
|
| 1009 | - } |
|
| 1010 | - |
|
| 1011 | - /** |
|
| 1012 | - * Sets the maximum number of times a discount can be used. |
|
| 1013 | - * |
|
| 1014 | - * @since 1.0.19 |
|
| 1015 | - * @param int $value maximum usage count. |
|
| 1016 | - */ |
|
| 1017 | - public function set_max_uses( $value ) { |
|
| 1018 | - $this->set_prop( 'max_uses', absint( $value ) ); |
|
| 1019 | - } |
|
| 1020 | - |
|
| 1021 | - /** |
|
| 1022 | - * Sets if this is a single use discount or not. |
|
| 1023 | - * |
|
| 1024 | - * @since 1.0.19 |
|
| 1025 | - * @param int|bool $value is single use. |
|
| 1026 | - */ |
|
| 1027 | - public function set_is_single_use( $value ) { |
|
| 1028 | - $this->set_prop( 'is_single_use', (bool) $value ); |
|
| 1029 | - } |
|
| 1030 | - |
|
| 1031 | - /** |
|
| 1032 | - * Sets the items that can be used with this discount. |
|
| 1033 | - * |
|
| 1034 | - * @since 1.0.19 |
|
| 1035 | - * @param array $value items. |
|
| 1036 | - */ |
|
| 1037 | - public function set_items( $value ) { |
|
| 1038 | - $this->set_prop( 'items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1039 | - } |
|
| 1040 | - |
|
| 1041 | - /** |
|
| 1042 | - * Alias for self::set_items(). |
|
| 1043 | - * |
|
| 1044 | - * @since 1.0.19 |
|
| 1045 | - * @param array $value items. |
|
| 1046 | - */ |
|
| 1047 | - public function set_allowed_items( $value ) { |
|
| 1048 | - $this->set_items( $value ); |
|
| 1049 | - } |
|
| 1050 | - |
|
| 1051 | - /** |
|
| 1052 | - * Sets the items that can not be used with this discount. |
|
| 1053 | - * |
|
| 1054 | - * @since 1.0.19 |
|
| 1055 | - * @param array $value items. |
|
| 1056 | - */ |
|
| 1057 | - public function set_excluded_items( $value ) { |
|
| 1058 | - $this->set_prop( 'excluded_items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1059 | - } |
|
| 1060 | - |
|
| 1061 | - /** |
|
| 1062 | - * Sets the items that are required to be in the cart before using this discount. |
|
| 1063 | - * |
|
| 1064 | - * @since 1.0.19 |
|
| 1065 | - * @param array $value items. |
|
| 1066 | - */ |
|
| 1067 | - public function set_required_items( $value ) { |
|
| 1068 | - $this->set_prop( 'required_items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1069 | - } |
|
| 1070 | - |
|
| 1071 | - /** |
|
| 1072 | - * Sets if this is a recurring discounts or not. |
|
| 1073 | - * |
|
| 1074 | - * @since 1.0.19 |
|
| 1075 | - * @param int|bool $value is recurring. |
|
| 1076 | - */ |
|
| 1077 | - public function set_is_recurring( $value ) { |
|
| 1078 | - $this->set_prop( 'is_recurring', (bool) $value ); |
|
| 1079 | - } |
|
| 1080 | - |
|
| 1081 | - /** |
|
| 1082 | - * Sets the minimum total that can not be used with this discount. |
|
| 1083 | - * |
|
| 1084 | - * @since 1.0.19 |
|
| 1085 | - * @param float $value minimum total. |
|
| 1086 | - */ |
|
| 1087 | - public function set_min_total( $value ) { |
|
| 1088 | - $this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) ); |
|
| 1089 | - } |
|
| 1090 | - |
|
| 1091 | - /** |
|
| 1092 | - * Alias for self::set_min_total(). |
|
| 1093 | - * |
|
| 1094 | - * @since 1.0.19 |
|
| 1095 | - * @param float $value minimum total. |
|
| 1096 | - */ |
|
| 1097 | - public function set_minimum_total( $value ) { |
|
| 1098 | - $this->set_min_total( $value ); |
|
| 1099 | - } |
|
| 1100 | - |
|
| 1101 | - /** |
|
| 1102 | - * Sets the maximum total that can not be used with this discount. |
|
| 1103 | - * |
|
| 1104 | - * @since 1.0.19 |
|
| 1105 | - * @param float $value maximum total. |
|
| 1106 | - */ |
|
| 1107 | - public function set_max_total( $value ) { |
|
| 1108 | - $this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) ); |
|
| 1109 | - } |
|
| 1110 | - |
|
| 1111 | - /** |
|
| 1112 | - * Alias for self::set_max_total(). |
|
| 1113 | - * |
|
| 1114 | - * @since 1.0.19 |
|
| 1115 | - * @param float $value maximum total. |
|
| 1116 | - */ |
|
| 1117 | - public function set_maximum_total( $value ) { |
|
| 1118 | - $this->set_max_total( $value ); |
|
| 1119 | - } |
|
| 1120 | - |
|
| 1121 | - /** |
|
| 1122 | - * @deprecated |
|
| 1123 | - */ |
|
| 1124 | - public function refresh(){} |
|
| 1125 | - |
|
| 1126 | - /** |
|
| 1127 | - * @deprecated |
|
| 1128 | - * |
|
| 1129 | - */ |
|
| 1130 | - public function update_status( $status = 'publish' ) { |
|
| 1131 | - |
|
| 1132 | - if ( $this->exists() && $this->get_status() != $status ) { |
|
| 1133 | - $this->set_status( $status ); |
|
| 1134 | - $this->save(); |
|
| 1135 | - } |
|
| 1136 | - |
|
| 1137 | - } |
|
| 1138 | - |
|
| 1139 | - /* |
|
| 960 | + } |
|
| 961 | + |
|
| 962 | + /** |
|
| 963 | + * Alias of self::set_expiration(). |
|
| 964 | + * |
|
| 965 | + * @since 1.0.19 |
|
| 966 | + * @param string $value New expiration date. |
|
| 967 | + */ |
|
| 968 | + public function set_expiration_date( $value ) { |
|
| 969 | + $this->set_expiration( $value ); |
|
| 970 | + } |
|
| 971 | + |
|
| 972 | + /** |
|
| 973 | + * Alias of self::set_expiration(). |
|
| 974 | + * |
|
| 975 | + * @since 1.0.19 |
|
| 976 | + * @param string $value New expiration date. |
|
| 977 | + */ |
|
| 978 | + public function set_end_date( $value ) { |
|
| 979 | + $this->set_expiration( $value ); |
|
| 980 | + } |
|
| 981 | + |
|
| 982 | + /** |
|
| 983 | + * Sets the discount type. |
|
| 984 | + * |
|
| 985 | + * @since 1.0.19 |
|
| 986 | + * @param string $value New discount type. |
|
| 987 | + */ |
|
| 988 | + public function set_type( $value ) { |
|
| 989 | + if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) { |
|
| 990 | + $this->set_prop( 'type', sanitize_text_field( $value ) ); |
|
| 991 | + } |
|
| 992 | + } |
|
| 993 | + |
|
| 994 | + /** |
|
| 995 | + * Sets the number of times a discount has been used. |
|
| 996 | + * |
|
| 997 | + * @since 1.0.19 |
|
| 998 | + * @param int $value usage count. |
|
| 999 | + */ |
|
| 1000 | + public function set_uses( $value ) { |
|
| 1001 | + |
|
| 1002 | + $value = (int) $value; |
|
| 1003 | + |
|
| 1004 | + if ( $value < 0 ) { |
|
| 1005 | + $value = 0; |
|
| 1006 | + } |
|
| 1007 | + |
|
| 1008 | + $this->set_prop( 'uses', (int) $value ); |
|
| 1009 | + } |
|
| 1010 | + |
|
| 1011 | + /** |
|
| 1012 | + * Sets the maximum number of times a discount can be used. |
|
| 1013 | + * |
|
| 1014 | + * @since 1.0.19 |
|
| 1015 | + * @param int $value maximum usage count. |
|
| 1016 | + */ |
|
| 1017 | + public function set_max_uses( $value ) { |
|
| 1018 | + $this->set_prop( 'max_uses', absint( $value ) ); |
|
| 1019 | + } |
|
| 1020 | + |
|
| 1021 | + /** |
|
| 1022 | + * Sets if this is a single use discount or not. |
|
| 1023 | + * |
|
| 1024 | + * @since 1.0.19 |
|
| 1025 | + * @param int|bool $value is single use. |
|
| 1026 | + */ |
|
| 1027 | + public function set_is_single_use( $value ) { |
|
| 1028 | + $this->set_prop( 'is_single_use', (bool) $value ); |
|
| 1029 | + } |
|
| 1030 | + |
|
| 1031 | + /** |
|
| 1032 | + * Sets the items that can be used with this discount. |
|
| 1033 | + * |
|
| 1034 | + * @since 1.0.19 |
|
| 1035 | + * @param array $value items. |
|
| 1036 | + */ |
|
| 1037 | + public function set_items( $value ) { |
|
| 1038 | + $this->set_prop( 'items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1039 | + } |
|
| 1040 | + |
|
| 1041 | + /** |
|
| 1042 | + * Alias for self::set_items(). |
|
| 1043 | + * |
|
| 1044 | + * @since 1.0.19 |
|
| 1045 | + * @param array $value items. |
|
| 1046 | + */ |
|
| 1047 | + public function set_allowed_items( $value ) { |
|
| 1048 | + $this->set_items( $value ); |
|
| 1049 | + } |
|
| 1050 | + |
|
| 1051 | + /** |
|
| 1052 | + * Sets the items that can not be used with this discount. |
|
| 1053 | + * |
|
| 1054 | + * @since 1.0.19 |
|
| 1055 | + * @param array $value items. |
|
| 1056 | + */ |
|
| 1057 | + public function set_excluded_items( $value ) { |
|
| 1058 | + $this->set_prop( 'excluded_items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1059 | + } |
|
| 1060 | + |
|
| 1061 | + /** |
|
| 1062 | + * Sets the items that are required to be in the cart before using this discount. |
|
| 1063 | + * |
|
| 1064 | + * @since 1.0.19 |
|
| 1065 | + * @param array $value items. |
|
| 1066 | + */ |
|
| 1067 | + public function set_required_items( $value ) { |
|
| 1068 | + $this->set_prop( 'required_items', array_filter( wp_parse_id_list( $value ) ) ); |
|
| 1069 | + } |
|
| 1070 | + |
|
| 1071 | + /** |
|
| 1072 | + * Sets if this is a recurring discounts or not. |
|
| 1073 | + * |
|
| 1074 | + * @since 1.0.19 |
|
| 1075 | + * @param int|bool $value is recurring. |
|
| 1076 | + */ |
|
| 1077 | + public function set_is_recurring( $value ) { |
|
| 1078 | + $this->set_prop( 'is_recurring', (bool) $value ); |
|
| 1079 | + } |
|
| 1080 | + |
|
| 1081 | + /** |
|
| 1082 | + * Sets the minimum total that can not be used with this discount. |
|
| 1083 | + * |
|
| 1084 | + * @since 1.0.19 |
|
| 1085 | + * @param float $value minimum total. |
|
| 1086 | + */ |
|
| 1087 | + public function set_min_total( $value ) { |
|
| 1088 | + $this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) ); |
|
| 1089 | + } |
|
| 1090 | + |
|
| 1091 | + /** |
|
| 1092 | + * Alias for self::set_min_total(). |
|
| 1093 | + * |
|
| 1094 | + * @since 1.0.19 |
|
| 1095 | + * @param float $value minimum total. |
|
| 1096 | + */ |
|
| 1097 | + public function set_minimum_total( $value ) { |
|
| 1098 | + $this->set_min_total( $value ); |
|
| 1099 | + } |
|
| 1100 | + |
|
| 1101 | + /** |
|
| 1102 | + * Sets the maximum total that can not be used with this discount. |
|
| 1103 | + * |
|
| 1104 | + * @since 1.0.19 |
|
| 1105 | + * @param float $value maximum total. |
|
| 1106 | + */ |
|
| 1107 | + public function set_max_total( $value ) { |
|
| 1108 | + $this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) ); |
|
| 1109 | + } |
|
| 1110 | + |
|
| 1111 | + /** |
|
| 1112 | + * Alias for self::set_max_total(). |
|
| 1113 | + * |
|
| 1114 | + * @since 1.0.19 |
|
| 1115 | + * @param float $value maximum total. |
|
| 1116 | + */ |
|
| 1117 | + public function set_maximum_total( $value ) { |
|
| 1118 | + $this->set_max_total( $value ); |
|
| 1119 | + } |
|
| 1120 | + |
|
| 1121 | + /** |
|
| 1122 | + * @deprecated |
|
| 1123 | + */ |
|
| 1124 | + public function refresh(){} |
|
| 1125 | + |
|
| 1126 | + /** |
|
| 1127 | + * @deprecated |
|
| 1128 | + * |
|
| 1129 | + */ |
|
| 1130 | + public function update_status( $status = 'publish' ) { |
|
| 1131 | + |
|
| 1132 | + if ( $this->exists() && $this->get_status() != $status ) { |
|
| 1133 | + $this->set_status( $status ); |
|
| 1134 | + $this->save(); |
|
| 1135 | + } |
|
| 1136 | + |
|
| 1137 | + } |
|
| 1138 | + |
|
| 1139 | + /* |
|
| 1140 | 1140 | |-------------------------------------------------------------------------- |
| 1141 | 1141 | | Conditionals |
| 1142 | 1142 | |-------------------------------------------------------------------------- |
@@ -1145,290 +1145,290 @@ discard block |
||
| 1145 | 1145 | | |
| 1146 | 1146 | */ |
| 1147 | 1147 | |
| 1148 | - /** |
|
| 1149 | - * Checks whether a discount exists in the database or not |
|
| 1150 | - * |
|
| 1151 | - * @since 1.0.15 |
|
| 1152 | - */ |
|
| 1153 | - public function exists() { |
|
| 1154 | - $id = $this->get_id(); |
|
| 1155 | - return ! empty( $id ); |
|
| 1156 | - } |
|
| 1157 | - |
|
| 1158 | - /** |
|
| 1159 | - * Checks the discount type. |
|
| 1160 | - * |
|
| 1161 | - * |
|
| 1162 | - * @param string $type the discount type to check against |
|
| 1163 | - * @since 1.0.15 |
|
| 1164 | - * @return bool |
|
| 1165 | - */ |
|
| 1166 | - public function is_type( $type ) { |
|
| 1167 | - return $this->get_type() == $type; |
|
| 1168 | - } |
|
| 1169 | - |
|
| 1170 | - /** |
|
| 1171 | - * Checks whether the discount is published or not |
|
| 1172 | - * |
|
| 1173 | - * @since 1.0.15 |
|
| 1174 | - * @return bool |
|
| 1175 | - */ |
|
| 1176 | - public function is_active() { |
|
| 1177 | - return $this->get_status() == 'publish'; |
|
| 1178 | - } |
|
| 1179 | - |
|
| 1180 | - /** |
|
| 1181 | - * Checks whether the discount has max uses |
|
| 1182 | - * |
|
| 1183 | - * @since 1.0.15 |
|
| 1184 | - * @return bool |
|
| 1185 | - */ |
|
| 1186 | - public function has_limit() { |
|
| 1187 | - $limit = $this->get_max_uses(); |
|
| 1188 | - return ! empty( $limit ); |
|
| 1189 | - } |
|
| 1190 | - |
|
| 1191 | - /** |
|
| 1192 | - * Checks whether the discount has ever been used. |
|
| 1193 | - * |
|
| 1194 | - * @since 1.0.15 |
|
| 1195 | - * @return bool |
|
| 1196 | - */ |
|
| 1197 | - public function has_uses() { |
|
| 1198 | - return $this->get_uses() > 0; |
|
| 1199 | - } |
|
| 1200 | - |
|
| 1201 | - /** |
|
| 1202 | - * Checks whether the discount is has exided the usage limit or not |
|
| 1203 | - * |
|
| 1204 | - * @since 1.0.15 |
|
| 1205 | - * @return bool |
|
| 1206 | - */ |
|
| 1207 | - public function has_exceeded_limit() { |
|
| 1208 | - |
|
| 1209 | - if ( ! $this->has_limit() || ! $this->has_uses() ) { |
|
| 1210 | - $exceeded = false; |
|
| 1211 | - } else { |
|
| 1212 | - $exceeded = (int) $this->get_max_uses() <= $this->get_uses(); |
|
| 1213 | - } |
|
| 1214 | - |
|
| 1215 | - return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() ); |
|
| 1216 | - } |
|
| 1217 | - |
|
| 1218 | - /** |
|
| 1219 | - * Checks whether the discount has an expiration date. |
|
| 1220 | - * |
|
| 1221 | - * @since 1.0.15 |
|
| 1222 | - * @return bool |
|
| 1223 | - */ |
|
| 1224 | - public function has_expiration_date() { |
|
| 1225 | - $date = $this->get_expiration_date(); |
|
| 1226 | - return ! empty( $date ); |
|
| 1227 | - } |
|
| 1228 | - |
|
| 1229 | - /** |
|
| 1230 | - * Checks if the discount is expired |
|
| 1231 | - * |
|
| 1232 | - * @since 1.0.15 |
|
| 1233 | - * @return bool |
|
| 1234 | - */ |
|
| 1235 | - public function is_expired() { |
|
| 1236 | - $expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false; |
|
| 1237 | - return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() ); |
|
| 1238 | - } |
|
| 1239 | - |
|
| 1240 | - /** |
|
| 1241 | - * Checks whether the discount has a start date. |
|
| 1242 | - * |
|
| 1243 | - * @since 1.0.15 |
|
| 1244 | - * @return bool |
|
| 1245 | - */ |
|
| 1246 | - public function has_start_date() { |
|
| 1247 | - $date = $this->get_start_date(); |
|
| 1248 | - return ! empty( $date ); |
|
| 1249 | - } |
|
| 1250 | - |
|
| 1251 | - /** |
|
| 1252 | - * Checks the discount start date. |
|
| 1253 | - * |
|
| 1254 | - * @since 1.0.15 |
|
| 1255 | - * @return bool |
|
| 1256 | - */ |
|
| 1257 | - public function has_started() { |
|
| 1258 | - $started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() ); |
|
| 1259 | - return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() ); |
|
| 1260 | - } |
|
| 1261 | - |
|
| 1262 | - /** |
|
| 1263 | - * Checks the discount has allowed items or not. |
|
| 1264 | - * |
|
| 1265 | - * @since 1.0.15 |
|
| 1266 | - * @return bool |
|
| 1267 | - */ |
|
| 1268 | - public function has_allowed_items() { |
|
| 1269 | - $allowed_items = $this->get_allowed_items(); |
|
| 1270 | - return ! empty( $allowed_items ); |
|
| 1271 | - } |
|
| 1272 | - |
|
| 1273 | - /** |
|
| 1274 | - * Checks the discount has excluded items or not. |
|
| 1275 | - * |
|
| 1276 | - * @since 1.0.15 |
|
| 1277 | - * @return bool |
|
| 1278 | - */ |
|
| 1279 | - public function has_excluded_items() { |
|
| 1280 | - $excluded_items = $this->get_excluded_items(); |
|
| 1281 | - return ! empty( $excluded_items ); |
|
| 1282 | - } |
|
| 1283 | - |
|
| 1284 | - /** |
|
| 1285 | - * Check if a discount is valid for a given item id. |
|
| 1286 | - * |
|
| 1287 | - * @param int|int[] $item_ids |
|
| 1288 | - * @since 1.0.15 |
|
| 1289 | - * @return boolean |
|
| 1290 | - */ |
|
| 1291 | - public function is_valid_for_items( $item_ids ) { |
|
| 1292 | - |
|
| 1293 | - $item_ids = array_filter( wp_parse_id_list( $item_ids ) ); |
|
| 1294 | - $included = array_intersect( $item_ids, $this->get_allowed_items() ); |
|
| 1295 | - $excluded = array_intersect( $item_ids, $this->get_excluded_items() ); |
|
| 1296 | - |
|
| 1297 | - if ( $this->has_excluded_items() && ! empty( $excluded ) ) { |
|
| 1298 | - return false; |
|
| 1299 | - } |
|
| 1300 | - |
|
| 1301 | - if ( $this->has_allowed_items() && empty( $included ) ) { |
|
| 1302 | - return false; |
|
| 1303 | - } |
|
| 1304 | - |
|
| 1305 | - return true; |
|
| 1306 | - } |
|
| 1307 | - |
|
| 1308 | - /** |
|
| 1309 | - * Checks the discount has required items or not. |
|
| 1310 | - * |
|
| 1311 | - * @since 1.0.15 |
|
| 1312 | - * @return bool |
|
| 1313 | - */ |
|
| 1314 | - public function has_required_items() { |
|
| 1315 | - $required_items = $this->get_required_items(); |
|
| 1316 | - return ! empty( $required_items ); |
|
| 1317 | - } |
|
| 1318 | - |
|
| 1319 | - /** |
|
| 1320 | - * Checks if the required items are met |
|
| 1321 | - * |
|
| 1322 | - * @param int|int[] $item_ids |
|
| 1323 | - * @since 1.0.15 |
|
| 1324 | - * @return boolean |
|
| 1325 | - */ |
|
| 1326 | - public function is_required_items_met( $item_ids ) { |
|
| 1327 | - |
|
| 1328 | - if ( ! $this->has_required_items() ) { |
|
| 1329 | - return true; |
|
| 1330 | - } |
|
| 1331 | - |
|
| 1332 | - return ! array_diff( $this->get_required_items(), array_filter( wp_parse_id_list( $item_ids ) ) ); |
|
| 1333 | - } |
|
| 1334 | - |
|
| 1335 | - /** |
|
| 1336 | - * Check if a discount is valid for the given amount |
|
| 1337 | - * |
|
| 1338 | - * @param float $amount The amount to check against |
|
| 1339 | - * @since 1.0.15 |
|
| 1340 | - * @return boolean |
|
| 1341 | - */ |
|
| 1342 | - public function is_valid_for_amount( $amount ) { |
|
| 1343 | - return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount ); |
|
| 1344 | - } |
|
| 1345 | - |
|
| 1346 | - /** |
|
| 1347 | - * Checks if the minimum amount is set |
|
| 1348 | - * |
|
| 1349 | - * @since 1.0.15 |
|
| 1350 | - * @return boolean |
|
| 1351 | - */ |
|
| 1352 | - public function has_minimum_amount() { |
|
| 1353 | - $minimum = $this->get_minimum_total(); |
|
| 1354 | - return ! empty( $minimum ); |
|
| 1355 | - } |
|
| 1356 | - |
|
| 1357 | - /** |
|
| 1358 | - * Checks if the minimum amount is met |
|
| 1359 | - * |
|
| 1360 | - * @param float $amount The amount to check against |
|
| 1361 | - * @since 1.0.15 |
|
| 1362 | - * @return boolean |
|
| 1363 | - */ |
|
| 1364 | - public function is_minimum_amount_met( $amount ) { |
|
| 1365 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
| 1366 | - $min_met = ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) ); |
|
| 1367 | - return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
| 1368 | - } |
|
| 1369 | - |
|
| 1370 | - /** |
|
| 1371 | - * Checks if the maximum amount is set |
|
| 1372 | - * |
|
| 1373 | - * @since 1.0.15 |
|
| 1374 | - * @return boolean |
|
| 1375 | - */ |
|
| 1376 | - public function has_maximum_amount() { |
|
| 1377 | - $maximum = $this->get_maximum_total(); |
|
| 1378 | - return ! empty( $maximum ); |
|
| 1379 | - } |
|
| 1380 | - |
|
| 1381 | - /** |
|
| 1382 | - * Checks if the maximum amount is met |
|
| 1383 | - * |
|
| 1384 | - * @param float $amount The amount to check against |
|
| 1385 | - * @since 1.0.15 |
|
| 1386 | - * @return boolean |
|
| 1387 | - */ |
|
| 1388 | - public function is_maximum_amount_met( $amount ) { |
|
| 1389 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
| 1390 | - $max_met = ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) ); |
|
| 1391 | - return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
| 1392 | - } |
|
| 1393 | - |
|
| 1394 | - /** |
|
| 1395 | - * Checks if the discount is recurring. |
|
| 1396 | - * |
|
| 1397 | - * @since 1.0.15 |
|
| 1398 | - * @return boolean |
|
| 1399 | - */ |
|
| 1400 | - public function is_recurring() { |
|
| 1401 | - $recurring = $this->get_is_recurring(); |
|
| 1402 | - return ! empty( $recurring ); |
|
| 1403 | - } |
|
| 1404 | - |
|
| 1405 | - /** |
|
| 1406 | - * Checks if the discount is single use. |
|
| 1407 | - * |
|
| 1408 | - * @since 1.0.15 |
|
| 1409 | - * @return boolean |
|
| 1410 | - */ |
|
| 1411 | - public function is_single_use() { |
|
| 1412 | - $usage = $this->get_is_single_use(); |
|
| 1413 | - return ! empty( $usage ); |
|
| 1414 | - } |
|
| 1415 | - |
|
| 1416 | - /** |
|
| 1417 | - * Check if a discount is valid for the given user |
|
| 1418 | - * |
|
| 1419 | - * @param int|string $user |
|
| 1420 | - * @since 1.0.15 |
|
| 1421 | - * @return boolean |
|
| 1422 | - */ |
|
| 1423 | - public function is_valid_for_user( $user ) { |
|
| 1424 | - |
|
| 1425 | - // Ensure that the discount is single use. |
|
| 1426 | - if ( empty( $user ) || ! $this->is_single_use() ) { |
|
| 1427 | - return true; |
|
| 1428 | - } |
|
| 1429 | - |
|
| 1430 | - // Prepare the user id. |
|
| 1431 | - $user_id = 0; |
|
| 1148 | + /** |
|
| 1149 | + * Checks whether a discount exists in the database or not |
|
| 1150 | + * |
|
| 1151 | + * @since 1.0.15 |
|
| 1152 | + */ |
|
| 1153 | + public function exists() { |
|
| 1154 | + $id = $this->get_id(); |
|
| 1155 | + return ! empty( $id ); |
|
| 1156 | + } |
|
| 1157 | + |
|
| 1158 | + /** |
|
| 1159 | + * Checks the discount type. |
|
| 1160 | + * |
|
| 1161 | + * |
|
| 1162 | + * @param string $type the discount type to check against |
|
| 1163 | + * @since 1.0.15 |
|
| 1164 | + * @return bool |
|
| 1165 | + */ |
|
| 1166 | + public function is_type( $type ) { |
|
| 1167 | + return $this->get_type() == $type; |
|
| 1168 | + } |
|
| 1169 | + |
|
| 1170 | + /** |
|
| 1171 | + * Checks whether the discount is published or not |
|
| 1172 | + * |
|
| 1173 | + * @since 1.0.15 |
|
| 1174 | + * @return bool |
|
| 1175 | + */ |
|
| 1176 | + public function is_active() { |
|
| 1177 | + return $this->get_status() == 'publish'; |
|
| 1178 | + } |
|
| 1179 | + |
|
| 1180 | + /** |
|
| 1181 | + * Checks whether the discount has max uses |
|
| 1182 | + * |
|
| 1183 | + * @since 1.0.15 |
|
| 1184 | + * @return bool |
|
| 1185 | + */ |
|
| 1186 | + public function has_limit() { |
|
| 1187 | + $limit = $this->get_max_uses(); |
|
| 1188 | + return ! empty( $limit ); |
|
| 1189 | + } |
|
| 1190 | + |
|
| 1191 | + /** |
|
| 1192 | + * Checks whether the discount has ever been used. |
|
| 1193 | + * |
|
| 1194 | + * @since 1.0.15 |
|
| 1195 | + * @return bool |
|
| 1196 | + */ |
|
| 1197 | + public function has_uses() { |
|
| 1198 | + return $this->get_uses() > 0; |
|
| 1199 | + } |
|
| 1200 | + |
|
| 1201 | + /** |
|
| 1202 | + * Checks whether the discount is has exided the usage limit or not |
|
| 1203 | + * |
|
| 1204 | + * @since 1.0.15 |
|
| 1205 | + * @return bool |
|
| 1206 | + */ |
|
| 1207 | + public function has_exceeded_limit() { |
|
| 1208 | + |
|
| 1209 | + if ( ! $this->has_limit() || ! $this->has_uses() ) { |
|
| 1210 | + $exceeded = false; |
|
| 1211 | + } else { |
|
| 1212 | + $exceeded = (int) $this->get_max_uses() <= $this->get_uses(); |
|
| 1213 | + } |
|
| 1214 | + |
|
| 1215 | + return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() ); |
|
| 1216 | + } |
|
| 1217 | + |
|
| 1218 | + /** |
|
| 1219 | + * Checks whether the discount has an expiration date. |
|
| 1220 | + * |
|
| 1221 | + * @since 1.0.15 |
|
| 1222 | + * @return bool |
|
| 1223 | + */ |
|
| 1224 | + public function has_expiration_date() { |
|
| 1225 | + $date = $this->get_expiration_date(); |
|
| 1226 | + return ! empty( $date ); |
|
| 1227 | + } |
|
| 1228 | + |
|
| 1229 | + /** |
|
| 1230 | + * Checks if the discount is expired |
|
| 1231 | + * |
|
| 1232 | + * @since 1.0.15 |
|
| 1233 | + * @return bool |
|
| 1234 | + */ |
|
| 1235 | + public function is_expired() { |
|
| 1236 | + $expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false; |
|
| 1237 | + return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() ); |
|
| 1238 | + } |
|
| 1239 | + |
|
| 1240 | + /** |
|
| 1241 | + * Checks whether the discount has a start date. |
|
| 1242 | + * |
|
| 1243 | + * @since 1.0.15 |
|
| 1244 | + * @return bool |
|
| 1245 | + */ |
|
| 1246 | + public function has_start_date() { |
|
| 1247 | + $date = $this->get_start_date(); |
|
| 1248 | + return ! empty( $date ); |
|
| 1249 | + } |
|
| 1250 | + |
|
| 1251 | + /** |
|
| 1252 | + * Checks the discount start date. |
|
| 1253 | + * |
|
| 1254 | + * @since 1.0.15 |
|
| 1255 | + * @return bool |
|
| 1256 | + */ |
|
| 1257 | + public function has_started() { |
|
| 1258 | + $started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() ); |
|
| 1259 | + return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() ); |
|
| 1260 | + } |
|
| 1261 | + |
|
| 1262 | + /** |
|
| 1263 | + * Checks the discount has allowed items or not. |
|
| 1264 | + * |
|
| 1265 | + * @since 1.0.15 |
|
| 1266 | + * @return bool |
|
| 1267 | + */ |
|
| 1268 | + public function has_allowed_items() { |
|
| 1269 | + $allowed_items = $this->get_allowed_items(); |
|
| 1270 | + return ! empty( $allowed_items ); |
|
| 1271 | + } |
|
| 1272 | + |
|
| 1273 | + /** |
|
| 1274 | + * Checks the discount has excluded items or not. |
|
| 1275 | + * |
|
| 1276 | + * @since 1.0.15 |
|
| 1277 | + * @return bool |
|
| 1278 | + */ |
|
| 1279 | + public function has_excluded_items() { |
|
| 1280 | + $excluded_items = $this->get_excluded_items(); |
|
| 1281 | + return ! empty( $excluded_items ); |
|
| 1282 | + } |
|
| 1283 | + |
|
| 1284 | + /** |
|
| 1285 | + * Check if a discount is valid for a given item id. |
|
| 1286 | + * |
|
| 1287 | + * @param int|int[] $item_ids |
|
| 1288 | + * @since 1.0.15 |
|
| 1289 | + * @return boolean |
|
| 1290 | + */ |
|
| 1291 | + public function is_valid_for_items( $item_ids ) { |
|
| 1292 | + |
|
| 1293 | + $item_ids = array_filter( wp_parse_id_list( $item_ids ) ); |
|
| 1294 | + $included = array_intersect( $item_ids, $this->get_allowed_items() ); |
|
| 1295 | + $excluded = array_intersect( $item_ids, $this->get_excluded_items() ); |
|
| 1296 | + |
|
| 1297 | + if ( $this->has_excluded_items() && ! empty( $excluded ) ) { |
|
| 1298 | + return false; |
|
| 1299 | + } |
|
| 1300 | + |
|
| 1301 | + if ( $this->has_allowed_items() && empty( $included ) ) { |
|
| 1302 | + return false; |
|
| 1303 | + } |
|
| 1304 | + |
|
| 1305 | + return true; |
|
| 1306 | + } |
|
| 1307 | + |
|
| 1308 | + /** |
|
| 1309 | + * Checks the discount has required items or not. |
|
| 1310 | + * |
|
| 1311 | + * @since 1.0.15 |
|
| 1312 | + * @return bool |
|
| 1313 | + */ |
|
| 1314 | + public function has_required_items() { |
|
| 1315 | + $required_items = $this->get_required_items(); |
|
| 1316 | + return ! empty( $required_items ); |
|
| 1317 | + } |
|
| 1318 | + |
|
| 1319 | + /** |
|
| 1320 | + * Checks if the required items are met |
|
| 1321 | + * |
|
| 1322 | + * @param int|int[] $item_ids |
|
| 1323 | + * @since 1.0.15 |
|
| 1324 | + * @return boolean |
|
| 1325 | + */ |
|
| 1326 | + public function is_required_items_met( $item_ids ) { |
|
| 1327 | + |
|
| 1328 | + if ( ! $this->has_required_items() ) { |
|
| 1329 | + return true; |
|
| 1330 | + } |
|
| 1331 | + |
|
| 1332 | + return ! array_diff( $this->get_required_items(), array_filter( wp_parse_id_list( $item_ids ) ) ); |
|
| 1333 | + } |
|
| 1334 | + |
|
| 1335 | + /** |
|
| 1336 | + * Check if a discount is valid for the given amount |
|
| 1337 | + * |
|
| 1338 | + * @param float $amount The amount to check against |
|
| 1339 | + * @since 1.0.15 |
|
| 1340 | + * @return boolean |
|
| 1341 | + */ |
|
| 1342 | + public function is_valid_for_amount( $amount ) { |
|
| 1343 | + return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount ); |
|
| 1344 | + } |
|
| 1345 | + |
|
| 1346 | + /** |
|
| 1347 | + * Checks if the minimum amount is set |
|
| 1348 | + * |
|
| 1349 | + * @since 1.0.15 |
|
| 1350 | + * @return boolean |
|
| 1351 | + */ |
|
| 1352 | + public function has_minimum_amount() { |
|
| 1353 | + $minimum = $this->get_minimum_total(); |
|
| 1354 | + return ! empty( $minimum ); |
|
| 1355 | + } |
|
| 1356 | + |
|
| 1357 | + /** |
|
| 1358 | + * Checks if the minimum amount is met |
|
| 1359 | + * |
|
| 1360 | + * @param float $amount The amount to check against |
|
| 1361 | + * @since 1.0.15 |
|
| 1362 | + * @return boolean |
|
| 1363 | + */ |
|
| 1364 | + public function is_minimum_amount_met( $amount ) { |
|
| 1365 | + $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
| 1366 | + $min_met = ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) ); |
|
| 1367 | + return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
| 1368 | + } |
|
| 1369 | + |
|
| 1370 | + /** |
|
| 1371 | + * Checks if the maximum amount is set |
|
| 1372 | + * |
|
| 1373 | + * @since 1.0.15 |
|
| 1374 | + * @return boolean |
|
| 1375 | + */ |
|
| 1376 | + public function has_maximum_amount() { |
|
| 1377 | + $maximum = $this->get_maximum_total(); |
|
| 1378 | + return ! empty( $maximum ); |
|
| 1379 | + } |
|
| 1380 | + |
|
| 1381 | + /** |
|
| 1382 | + * Checks if the maximum amount is met |
|
| 1383 | + * |
|
| 1384 | + * @param float $amount The amount to check against |
|
| 1385 | + * @since 1.0.15 |
|
| 1386 | + * @return boolean |
|
| 1387 | + */ |
|
| 1388 | + public function is_maximum_amount_met( $amount ) { |
|
| 1389 | + $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
| 1390 | + $max_met = ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) ); |
|
| 1391 | + return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
| 1392 | + } |
|
| 1393 | + |
|
| 1394 | + /** |
|
| 1395 | + * Checks if the discount is recurring. |
|
| 1396 | + * |
|
| 1397 | + * @since 1.0.15 |
|
| 1398 | + * @return boolean |
|
| 1399 | + */ |
|
| 1400 | + public function is_recurring() { |
|
| 1401 | + $recurring = $this->get_is_recurring(); |
|
| 1402 | + return ! empty( $recurring ); |
|
| 1403 | + } |
|
| 1404 | + |
|
| 1405 | + /** |
|
| 1406 | + * Checks if the discount is single use. |
|
| 1407 | + * |
|
| 1408 | + * @since 1.0.15 |
|
| 1409 | + * @return boolean |
|
| 1410 | + */ |
|
| 1411 | + public function is_single_use() { |
|
| 1412 | + $usage = $this->get_is_single_use(); |
|
| 1413 | + return ! empty( $usage ); |
|
| 1414 | + } |
|
| 1415 | + |
|
| 1416 | + /** |
|
| 1417 | + * Check if a discount is valid for the given user |
|
| 1418 | + * |
|
| 1419 | + * @param int|string $user |
|
| 1420 | + * @since 1.0.15 |
|
| 1421 | + * @return boolean |
|
| 1422 | + */ |
|
| 1423 | + public function is_valid_for_user( $user ) { |
|
| 1424 | + |
|
| 1425 | + // Ensure that the discount is single use. |
|
| 1426 | + if ( empty( $user ) || ! $this->is_single_use() ) { |
|
| 1427 | + return true; |
|
| 1428 | + } |
|
| 1429 | + |
|
| 1430 | + // Prepare the user id. |
|
| 1431 | + $user_id = 0; |
|
| 1432 | 1432 | if ( is_numeric( $user ) ) { |
| 1433 | 1433 | $user_id = absint( $user ); |
| 1434 | 1434 | } elseif ( is_email( $user ) && $user_data = get_user_by( 'email', $user ) ) { |
@@ -1437,122 +1437,122 @@ discard block |
||
| 1437 | 1437 | $user_id = $user_data->ID; |
| 1438 | 1438 | } |
| 1439 | 1439 | |
| 1440 | - // Ensure that we have a user. |
|
| 1441 | - if ( empty( $user_id ) ) { |
|
| 1442 | - return true; |
|
| 1443 | - } |
|
| 1440 | + // Ensure that we have a user. |
|
| 1441 | + if ( empty( $user_id ) ) { |
|
| 1442 | + return true; |
|
| 1443 | + } |
|
| 1444 | 1444 | |
| 1445 | - // Get all payments with matching user id. |
|
| 1445 | + // Get all payments with matching user id. |
|
| 1446 | 1446 | $payments = wpinv_get_invoices( |
| 1447 | 1447 | array( |
| 1448 | - 'user' => $user_id, |
|
| 1449 | - 'limit' => false, |
|
| 1450 | - 'paginate' => false, |
|
| 1448 | + 'user' => $user_id, |
|
| 1449 | + 'limit' => false, |
|
| 1450 | + 'paginate' => false, |
|
| 1451 | 1451 | ) |
| 1452 | 1452 | ); |
| 1453 | - $code = strtolower( $this->get_code() ); |
|
| 1453 | + $code = strtolower( $this->get_code() ); |
|
| 1454 | 1454 | |
| 1455 | - // For each payment... |
|
| 1456 | - foreach ( $payments as $payment ) { |
|
| 1455 | + // For each payment... |
|
| 1456 | + foreach ( $payments as $payment ) { |
|
| 1457 | 1457 | |
| 1458 | - // Only check for paid invoices. |
|
| 1459 | - if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) { |
|
| 1460 | - return false; |
|
| 1461 | - } |
|
| 1458 | + // Only check for paid invoices. |
|
| 1459 | + if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) { |
|
| 1460 | + return false; |
|
| 1461 | + } |
|
| 1462 | 1462 | } |
| 1463 | 1463 | |
| 1464 | - return true; |
|
| 1465 | - } |
|
| 1466 | - |
|
| 1467 | - /** |
|
| 1468 | - * Deletes the discount from the database |
|
| 1469 | - * |
|
| 1470 | - * @since 1.0.15 |
|
| 1471 | - * @return boolean |
|
| 1472 | - */ |
|
| 1473 | - public function remove() { |
|
| 1474 | - return $this->delete(); |
|
| 1475 | - } |
|
| 1476 | - |
|
| 1477 | - /** |
|
| 1478 | - * Increases a discount's usage. |
|
| 1479 | - * |
|
| 1480 | - * @since 1.0.15 |
|
| 1481 | - * @param int $by The number of usages to increas by. |
|
| 1482 | - * @return int |
|
| 1483 | - */ |
|
| 1484 | - public function increase_usage( $by = 1 ) { |
|
| 1485 | - |
|
| 1486 | - // Abort if zero. |
|
| 1487 | - if ( empty( $by ) ) { |
|
| 1488 | - return; |
|
| 1489 | - } |
|
| 1490 | - |
|
| 1491 | - // Increase the usage. |
|
| 1492 | - $this->set_uses( $this->get_uses() + (int) $by ); |
|
| 1493 | - |
|
| 1494 | - // Save the discount. |
|
| 1495 | - $this->save(); |
|
| 1496 | - |
|
| 1497 | - // Fire relevant hooks. |
|
| 1498 | - if ( (int) $by > 0 ) { |
|
| 1499 | - do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
| 1500 | - } else { |
|
| 1501 | - do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
| 1502 | - } |
|
| 1503 | - |
|
| 1504 | - // Return the number of times the discount has been used. |
|
| 1505 | - return $this->get_uses(); |
|
| 1506 | - } |
|
| 1507 | - |
|
| 1508 | - /** |
|
| 1509 | - * Alias of self::__toString() |
|
| 1510 | - * |
|
| 1511 | - * @since 1.0.15 |
|
| 1512 | - * @return string|false |
|
| 1513 | - */ |
|
| 1514 | - public function get_data_as_json() { |
|
| 1515 | - return $this->__toString(); |
|
| 1516 | - } |
|
| 1517 | - |
|
| 1518 | - /** |
|
| 1519 | - * Returns a discount's discounted amount. |
|
| 1520 | - * |
|
| 1521 | - * @since 1.0.15 |
|
| 1522 | - * @param float $amount |
|
| 1523 | - * @return float |
|
| 1524 | - */ |
|
| 1525 | - public function get_discounted_amount( $amount ) { |
|
| 1526 | - |
|
| 1527 | - // Convert amount to float. |
|
| 1528 | - $amount = (float) $amount; |
|
| 1529 | - |
|
| 1530 | - // Get discount amount. |
|
| 1531 | - $discount_amount = $this->get_amount(); |
|
| 1532 | - |
|
| 1533 | - if ( empty( $discount_amount ) ) { |
|
| 1534 | - return 0; |
|
| 1535 | - } |
|
| 1536 | - |
|
| 1537 | - // Format the amount. |
|
| 1538 | - $discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) ); |
|
| 1539 | - |
|
| 1540 | - // If this is a percentage discount. |
|
| 1541 | - if ( $this->is_type( 'percent' ) ) { |
|
| 1464 | + return true; |
|
| 1465 | + } |
|
| 1466 | + |
|
| 1467 | + /** |
|
| 1468 | + * Deletes the discount from the database |
|
| 1469 | + * |
|
| 1470 | + * @since 1.0.15 |
|
| 1471 | + * @return boolean |
|
| 1472 | + */ |
|
| 1473 | + public function remove() { |
|
| 1474 | + return $this->delete(); |
|
| 1475 | + } |
|
| 1476 | + |
|
| 1477 | + /** |
|
| 1478 | + * Increases a discount's usage. |
|
| 1479 | + * |
|
| 1480 | + * @since 1.0.15 |
|
| 1481 | + * @param int $by The number of usages to increas by. |
|
| 1482 | + * @return int |
|
| 1483 | + */ |
|
| 1484 | + public function increase_usage( $by = 1 ) { |
|
| 1485 | + |
|
| 1486 | + // Abort if zero. |
|
| 1487 | + if ( empty( $by ) ) { |
|
| 1488 | + return; |
|
| 1489 | + } |
|
| 1490 | + |
|
| 1491 | + // Increase the usage. |
|
| 1492 | + $this->set_uses( $this->get_uses() + (int) $by ); |
|
| 1493 | + |
|
| 1494 | + // Save the discount. |
|
| 1495 | + $this->save(); |
|
| 1496 | + |
|
| 1497 | + // Fire relevant hooks. |
|
| 1498 | + if ( (int) $by > 0 ) { |
|
| 1499 | + do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
| 1500 | + } else { |
|
| 1501 | + do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
| 1502 | + } |
|
| 1503 | + |
|
| 1504 | + // Return the number of times the discount has been used. |
|
| 1505 | + return $this->get_uses(); |
|
| 1506 | + } |
|
| 1507 | + |
|
| 1508 | + /** |
|
| 1509 | + * Alias of self::__toString() |
|
| 1510 | + * |
|
| 1511 | + * @since 1.0.15 |
|
| 1512 | + * @return string|false |
|
| 1513 | + */ |
|
| 1514 | + public function get_data_as_json() { |
|
| 1515 | + return $this->__toString(); |
|
| 1516 | + } |
|
| 1517 | + |
|
| 1518 | + /** |
|
| 1519 | + * Returns a discount's discounted amount. |
|
| 1520 | + * |
|
| 1521 | + * @since 1.0.15 |
|
| 1522 | + * @param float $amount |
|
| 1523 | + * @return float |
|
| 1524 | + */ |
|
| 1525 | + public function get_discounted_amount( $amount ) { |
|
| 1526 | + |
|
| 1527 | + // Convert amount to float. |
|
| 1528 | + $amount = (float) $amount; |
|
| 1529 | + |
|
| 1530 | + // Get discount amount. |
|
| 1531 | + $discount_amount = $this->get_amount(); |
|
| 1532 | + |
|
| 1533 | + if ( empty( $discount_amount ) ) { |
|
| 1534 | + return 0; |
|
| 1535 | + } |
|
| 1536 | + |
|
| 1537 | + // Format the amount. |
|
| 1538 | + $discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) ); |
|
| 1539 | + |
|
| 1540 | + // If this is a percentage discount. |
|
| 1541 | + if ( $this->is_type( 'percent' ) ) { |
|
| 1542 | 1542 | $discount_amount = $amount * ( $discount_amount / 100 ); |
| 1543 | - } |
|
| 1543 | + } |
|
| 1544 | 1544 | |
| 1545 | - // Discount can not be less than zero... |
|
| 1546 | - if ( $discount_amount < 0 ) { |
|
| 1547 | - $discount_amount = 0; |
|
| 1548 | - } |
|
| 1545 | + // Discount can not be less than zero... |
|
| 1546 | + if ( $discount_amount < 0 ) { |
|
| 1547 | + $discount_amount = 0; |
|
| 1548 | + } |
|
| 1549 | 1549 | |
| 1550 | - // ... or more than the amount. |
|
| 1551 | - if ( $discount_amount > $amount ) { |
|
| 1552 | - $discount_amount = $amount; |
|
| 1553 | - } |
|
| 1550 | + // ... or more than the amount. |
|
| 1551 | + if ( $discount_amount > $amount ) { |
|
| 1552 | + $discount_amount = $amount; |
|
| 1553 | + } |
|
| 1554 | 1554 | |
| 1555 | - return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this ); |
|
| 1556 | - } |
|
| 1555 | + return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this ); |
|
| 1556 | + } |
|
| 1557 | 1557 | |
| 1558 | 1558 | } |
@@ -775,10 +775,10 @@ discard block |
||
| 775 | 775 | $allowed_fee_keys = apply_filters( |
| 776 | 776 | 'wpinv_fee_keys', |
| 777 | 777 | array( |
| 778 | - 'index', |
|
| 779 | - 'label', |
|
| 780 | - 'amount', |
|
| 781 | - 'type', |
|
| 778 | + 'index', |
|
| 779 | + 'label', |
|
| 780 | + 'amount', |
|
| 781 | + 'type', |
|
| 782 | 782 | ) |
| 783 | 783 | ); |
| 784 | 784 | |
@@ -850,19 +850,19 @@ discard block |
||
| 850 | 850 | $note_id = wp_insert_comment( |
| 851 | 851 | wp_filter_comment( |
| 852 | 852 | array( |
| 853 | - 'comment_post_ID' => $this->ID, |
|
| 854 | - 'comment_content' => $note, |
|
| 855 | - 'comment_agent' => 'WPInvoicing', |
|
| 856 | - 'user_id' => is_admin() ? get_current_user_id() : 0, |
|
| 857 | - 'comment_date' => current_time( 'mysql' ), |
|
| 858 | - 'comment_date_gmt' => current_time( 'mysql', 1 ), |
|
| 859 | - 'comment_approved' => 1, |
|
| 860 | - 'comment_parent' => 0, |
|
| 861 | - 'comment_author' => $comment_author, |
|
| 862 | - 'comment_author_IP' => wpinv_get_ip(), |
|
| 863 | - 'comment_author_url' => '', |
|
| 864 | - 'comment_author_email' => $comment_author_email, |
|
| 865 | - 'comment_type' => 'wpinv_note', |
|
| 853 | + 'comment_post_ID' => $this->ID, |
|
| 854 | + 'comment_content' => $note, |
|
| 855 | + 'comment_agent' => 'WPInvoicing', |
|
| 856 | + 'user_id' => is_admin() ? get_current_user_id() : 0, |
|
| 857 | + 'comment_date' => current_time( 'mysql' ), |
|
| 858 | + 'comment_date_gmt' => current_time( 'mysql', 1 ), |
|
| 859 | + 'comment_approved' => 1, |
|
| 860 | + 'comment_parent' => 0, |
|
| 861 | + 'comment_author' => $comment_author, |
|
| 862 | + 'comment_author_IP' => wpinv_get_ip(), |
|
| 863 | + 'comment_author_url' => '', |
|
| 864 | + 'comment_author_email' => $comment_author_email, |
|
| 865 | + 'comment_type' => 'wpinv_note', |
|
| 866 | 866 | ) |
| 867 | 867 | ) |
| 868 | 868 | ); |
@@ -875,8 +875,8 @@ discard block |
||
| 875 | 875 | do_action( |
| 876 | 876 | 'wpinv_new_customer_note', |
| 877 | 877 | array( |
| 878 | - 'invoice_id' => $this->ID, |
|
| 879 | - 'user_note' => $note, |
|
| 878 | + 'invoice_id' => $this->ID, |
|
| 879 | + 'user_note' => $note, |
|
| 880 | 880 | ) |
| 881 | 881 | ); |
| 882 | 882 | } |
@@ -13,42 +13,42 @@ |
||
| 13 | 13 | |
| 14 | 14 | foreach ( array_keys( $widget->get_subscriptions_table_columns() ) as $column ) : |
| 15 | 15 | |
| 16 | - $class = sanitize_html_class( $column ); |
|
| 17 | - echo "<td class='getpaid-subscriptions-table-column-" . esc_attr( $class ) . "'>"; |
|
| 16 | + $class = sanitize_html_class( $column ); |
|
| 17 | + echo "<td class='getpaid-subscriptions-table-column-" . esc_attr( $class ) . "'>"; |
|
| 18 | 18 | |
| 19 | - do_action( "getpaid_subscriptions_before_frontend_subscription_table_$column", $subscription ); |
|
| 19 | + do_action( "getpaid_subscriptions_before_frontend_subscription_table_$column", $subscription ); |
|
| 20 | 20 | |
| 21 | - switch ( $column ) : |
|
| 21 | + switch ( $column ) : |
|
| 22 | 22 | |
| 23 | - case 'subscription': |
|
| 24 | - $subscription_id = (int) $subscription->get_id(); |
|
| 25 | - $url = esc_url( $subscription->get_view_url() ); |
|
| 26 | - $id_label = sprintf( |
|
| 27 | - esc_attr_x( '#%s', 'subscription id', 'invoicing' ), |
|
| 28 | - (int) $subscription->get_id() |
|
| 29 | - ); |
|
| 30 | - echo wp_kses_post( $widget->add_row_actions( "<a href='$url' class='font-weight-bold text-decoration-none'>$id_label</a>", $subscription ) ); |
|
| 31 | - break; |
|
| 23 | + case 'subscription': |
|
| 24 | + $subscription_id = (int) $subscription->get_id(); |
|
| 25 | + $url = esc_url( $subscription->get_view_url() ); |
|
| 26 | + $id_label = sprintf( |
|
| 27 | + esc_attr_x( '#%s', 'subscription id', 'invoicing' ), |
|
| 28 | + (int) $subscription->get_id() |
|
| 29 | + ); |
|
| 30 | + echo wp_kses_post( $widget->add_row_actions( "<a href='$url' class='font-weight-bold text-decoration-none'>$id_label</a>", $subscription ) ); |
|
| 31 | + break; |
|
| 32 | 32 | |
| 33 | - case 'status': |
|
| 34 | - echo esc_html( $subscription->get_status_label() ); |
|
| 35 | - break; |
|
| 33 | + case 'status': |
|
| 34 | + echo esc_html( $subscription->get_status_label() ); |
|
| 35 | + break; |
|
| 36 | 36 | |
| 37 | - case 'renewal-date': |
|
| 38 | - $renewal = getpaid_format_date_value( $subscription->get_next_renewal_date() ); |
|
| 39 | - echo $subscription->is_active() ? esc_html( $renewal ) : '—'; |
|
| 40 | - break; |
|
| 37 | + case 'renewal-date': |
|
| 38 | + $renewal = getpaid_format_date_value( $subscription->get_next_renewal_date() ); |
|
| 39 | + echo $subscription->is_active() ? esc_html( $renewal ) : '—'; |
|
| 40 | + break; |
|
| 41 | 41 | |
| 42 | - case 'amount': |
|
| 43 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 44 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 45 | - echo wp_kses_post( "<span>$amount</span> / <span class='getpaid-item-recurring-period'>$frequency</span>" ); |
|
| 46 | - break; |
|
| 42 | + case 'amount': |
|
| 43 | + $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 44 | + $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 45 | + echo wp_kses_post( "<span>$amount</span> / <span class='getpaid-item-recurring-period'>$frequency</span>" ); |
|
| 46 | + break; |
|
| 47 | 47 | |
| 48 | - endswitch; |
|
| 48 | + endswitch; |
|
| 49 | 49 | |
| 50 | - do_action( "getpaid_subscriptions_frontend_subscription_table_$column", $subscription ); |
|
| 50 | + do_action( "getpaid_subscriptions_frontend_subscription_table_$column", $subscription ); |
|
| 51 | 51 | |
| 52 | - echo '</td>'; |
|
| 52 | + echo '</td>'; |
|
| 53 | 53 | |
| 54 | 54 | endforeach; |
@@ -46,62 +46,62 @@ discard block |
||
| 46 | 46 | <td style="width: 65%"> |
| 47 | 47 | <?php |
| 48 | 48 | |
| 49 | - switch ( $key ) { |
|
| 49 | + switch ( $key ) { |
|
| 50 | 50 | |
| 51 | - case 'status': |
|
| 52 | - echo esc_html( $subscription->get_status_label() ); |
|
| 53 | - break; |
|
| 51 | + case 'status': |
|
| 52 | + echo esc_html( $subscription->get_status_label() ); |
|
| 53 | + break; |
|
| 54 | 54 | |
| 55 | - case 'start_date': |
|
| 56 | - echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 57 | - break; |
|
| 55 | + case 'start_date': |
|
| 56 | + echo esc_html( getpaid_format_date_value( $subscription->get_date_created() ) ); |
|
| 57 | + break; |
|
| 58 | 58 | |
| 59 | - case 'expiry_date': |
|
| 60 | - echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 61 | - break; |
|
| 59 | + case 'expiry_date': |
|
| 60 | + echo esc_html( getpaid_format_date_value( $subscription->get_next_renewal_date() ) ); |
|
| 61 | + break; |
|
| 62 | 62 | |
| 63 | - case 'initial_amount': |
|
| 64 | - echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 63 | + case 'initial_amount': |
|
| 64 | + echo wp_kses_post( wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() ) ); |
|
| 65 | 65 | |
| 66 | - if ( $subscription->has_trial_period() ) { |
|
| 66 | + if ( $subscription->has_trial_period() ) { |
|
| 67 | 67 | |
| 68 | - echo "<small class='text-muted'> "; |
|
| 69 | - printf( |
|
| 70 | - esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 71 | - esc_html( $subscription->get_trial_period() ) |
|
| 72 | - ); |
|
| 73 | - echo '</small>'; |
|
| 68 | + echo "<small class='text-muted'> "; |
|
| 69 | + printf( |
|
| 70 | + esc_html_x( '( %1$s trial )', 'Subscription trial period. (e.g.: 1 month trial)', 'invoicing' ), |
|
| 71 | + esc_html( $subscription->get_trial_period() ) |
|
| 72 | + ); |
|
| 73 | + echo '</small>'; |
|
| 74 | 74 | |
| 75 | - } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | - break; |
|
| 77 | + break; |
|
| 78 | 78 | |
| 79 | - case 'recurring_amount': |
|
| 80 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 81 | - $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 82 | - echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 83 | - break; |
|
| 79 | + case 'recurring_amount': |
|
| 80 | + $frequency = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 81 | + $amount = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() ); |
|
| 82 | + echo wp_kses_post( strtolower( "<strong style='font-weight: 500;'>$amount</strong> / <span class='getpaid-item-recurring-period'>$frequency</span>" ) ); |
|
| 83 | + break; |
|
| 84 | 84 | |
| 85 | - case 'item': |
|
| 86 | - if ( empty( $subscription_group ) ) { |
|
| 87 | - echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 88 | - } else { |
|
| 89 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 90 | - echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 91 | - } |
|
| 85 | + case 'item': |
|
| 86 | + if ( empty( $subscription_group ) ) { |
|
| 87 | + echo wp_kses_post( WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ) ); |
|
| 88 | + } else { |
|
| 89 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
| 90 | + echo wp_kses_post( implode( ' | ', $markup ) ); |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - break; |
|
| 93 | + break; |
|
| 94 | 94 | |
| 95 | - case 'payments': |
|
| 96 | - $max_activations = (int) $subscription->get_bill_times(); |
|
| 97 | - echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 95 | + case 'payments': |
|
| 96 | + $max_activations = (int) $subscription->get_bill_times(); |
|
| 97 | + echo ( (int) $subscription->get_times_billed() ) . ' / ' . ( empty( $max_activations ) ? '∞' : (int) $max_activations ); |
|
| 98 | 98 | |
| 99 | - break; |
|
| 99 | + break; |
|
| 100 | 100 | |
| 101 | - } |
|
| 102 | - do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
| 101 | + } |
|
| 102 | + do_action( "getpaid_render_single_subscription_column_$key", $subscription ); |
|
| 103 | 103 | |
| 104 | - ?> |
|
| 104 | + ?> |
|
| 105 | 105 | </td> |
| 106 | 106 | |
| 107 | 107 | </tr> |
@@ -128,17 +128,17 @@ discard block |
||
| 128 | 128 | <span class="form-text"> |
| 129 | 129 | |
| 130 | 130 | <?php |
| 131 | - if ( $subscription->can_cancel() ) { |
|
| 132 | - printf( |
|
| 131 | + if ( $subscription->can_cancel() ) { |
|
| 132 | + printf( |
|
| 133 | 133 | '<a href="%s" class="btn btn-danger btn-sm" onclick="return confirm(\'%s\')">%s</a> ', |
| 134 | 134 | esc_url( $subscription->get_cancel_url() ), |
| 135 | 135 | esc_attr__( 'Are you sure you want to cancel this subscription?', 'invoicing' ), |
| 136 | 136 | esc_html__( 'Cancel Subscription', 'invoicing' ) |
| 137 | 137 | ); |
| 138 | - } |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
| 141 | - ?> |
|
| 140 | + do_action( 'getpaid-single-subscription-page-actions', $subscription ); |
|
| 141 | + ?> |
|
| 142 | 142 | |
| 143 | 143 | <a href="<?php echo esc_url( getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); ?>" class="btn btn-secondary btn-sm"><?php esc_html_e( 'Go Back', 'invoicing' ); ?></a> |
| 144 | 144 | </span> |
@@ -1,7 +1,7 @@ discard block |
||
| 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,299 +11,299 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | class AUI { |
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Holds the class instance. |
|
| 16 | - * |
|
| 17 | - * @since 1.0.0 |
|
| 18 | - * @var null |
|
| 19 | - */ |
|
| 20 | - private static $instance = null; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Holds the current AUI version number. |
|
| 24 | - * |
|
| 25 | - * @var string $ver The current version number. |
|
| 26 | - */ |
|
| 27 | - public static $ver = '0.1.70'; |
|
| 28 | - |
|
| 29 | - public static $options = null; |
|
| 30 | - |
|
| 31 | - /** |
|
| 32 | - * There can be only one. |
|
| 33 | - * |
|
| 34 | - * @since 1.0.0 |
|
| 35 | - * @return AUI|null |
|
| 36 | - */ |
|
| 37 | - public static function instance() { |
|
| 38 | - if ( self::$instance == null ) { |
|
| 39 | - self::$instance = new AUI(); |
|
| 40 | - } |
|
| 41 | - |
|
| 42 | - return self::$instance; |
|
| 43 | - } |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * AUI constructor. |
|
| 47 | - * |
|
| 48 | - * @since 1.0.0 |
|
| 49 | - */ |
|
| 50 | - private function __construct() { |
|
| 51 | - if ( function_exists( "__autoload" ) ) { |
|
| 52 | - spl_autoload_register( "__autoload" ); |
|
| 53 | - } |
|
| 54 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
| 55 | - |
|
| 56 | - // load options |
|
| 57 | - self::$options = get_option('aui_options'); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Autoload any components on the fly. |
|
| 62 | - * |
|
| 63 | - * @since 1.0.0 |
|
| 64 | - * |
|
| 65 | - * @param $classname |
|
| 66 | - */ |
|
| 67 | - private function autoload( $classname ) { |
|
| 68 | - $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
| 69 | - $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
| 70 | - if ( $file_path && is_readable( $file_path ) ) { |
|
| 71 | - include_once( $file_path ); |
|
| 72 | - } |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * Get the AUI options. |
|
| 77 | - * |
|
| 78 | - * @param $option |
|
| 79 | - * |
|
| 80 | - * @return string|void |
|
| 81 | - */ |
|
| 82 | - public function get_option( $option ){ |
|
| 83 | - $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
| 84 | - |
|
| 85 | - if ( ! $result && $option) { |
|
| 86 | - if( $option == 'color_primary' ){ |
|
| 87 | - $result = AUI_PRIMARY_COLOR; |
|
| 88 | - }elseif( $option == 'color_secondary' ){ |
|
| 89 | - $result = AUI_SECONDARY_COLOR; |
|
| 90 | - } |
|
| 91 | - } |
|
| 92 | - return $result; |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - public function render( $items = array(), $echo = false ) { |
|
| 96 | - $output = ''; |
|
| 97 | - |
|
| 98 | - if ( ! empty( $items ) ) { |
|
| 99 | - foreach ( $items as $args ) { |
|
| 100 | - $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
| 101 | - if ( $render && method_exists( __CLASS__, $render ) ) { |
|
| 102 | - $output .= $this->$render( $args ); |
|
| 103 | - } |
|
| 104 | - } |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - if ( $echo ) { |
|
| 108 | - echo $output; |
|
| 109 | - }else{ |
|
| 110 | - return $output; |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - /** |
|
| 116 | - * Render and return a bootstrap alert component. |
|
| 117 | - * |
|
| 118 | - * @since 1.0.0 |
|
| 119 | - * |
|
| 120 | - * @param array $args The function arguments. |
|
| 121 | - * @param bool $echo If we should return or echo. |
|
| 122 | - * |
|
| 123 | - * @return string The rendered component. |
|
| 124 | - */ |
|
| 125 | - public function alert( $args = array(), $echo = false ) { |
|
| 126 | - $output = AUI_Component_Alert::get( $args ); |
|
| 127 | - |
|
| 128 | - if ( $echo ) { |
|
| 129 | - echo $output; |
|
| 130 | - }else{ |
|
| 131 | - return $output; |
|
| 132 | - } |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Render and return a bootstrap input component. |
|
| 137 | - * |
|
| 138 | - * @since 1.0.0 |
|
| 139 | - * |
|
| 140 | - * @param array $args The function arguments. |
|
| 141 | - * @param bool $echo If we should return or echo. |
|
| 142 | - * |
|
| 143 | - * @return string The rendered component. |
|
| 144 | - */ |
|
| 145 | - public function input( $args = array(), $echo = false ) { |
|
| 146 | - $output = AUI_Component_Input::input( $args ); |
|
| 147 | - |
|
| 148 | - if ( $echo ) { |
|
| 149 | - echo $output; |
|
| 150 | - }else{ |
|
| 151 | - return $output; |
|
| 152 | - } |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Render and return a bootstrap textarea component. |
|
| 157 | - * |
|
| 158 | - * @since 1.0.0 |
|
| 159 | - * |
|
| 160 | - * @param array $args The function arguments. |
|
| 161 | - * @param bool $echo If we should return or echo. |
|
| 162 | - * |
|
| 163 | - * @return string The rendered component. |
|
| 164 | - */ |
|
| 165 | - public function textarea( $args = array(), $echo = false ) { |
|
| 166 | - $output = AUI_Component_Input::textarea( $args ); |
|
| 167 | - |
|
| 168 | - if ( $echo ) { |
|
| 169 | - echo $output; |
|
| 170 | - }else{ |
|
| 171 | - return $output; |
|
| 172 | - } |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - /** |
|
| 176 | - * Render and return a bootstrap button component. |
|
| 177 | - * |
|
| 178 | - * @since 1.0.0 |
|
| 179 | - * |
|
| 180 | - * @param array $args The function arguments. |
|
| 181 | - * @param bool $echo If we should return or echo. |
|
| 182 | - * |
|
| 183 | - * @return string The rendered component. |
|
| 184 | - */ |
|
| 185 | - public function button( $args = array(), $echo = false ) { |
|
| 186 | - $output = AUI_Component_Button::get( $args ); |
|
| 187 | - |
|
| 188 | - if ( $echo ) { |
|
| 189 | - echo $output; |
|
| 190 | - }else{ |
|
| 191 | - return $output; |
|
| 192 | - } |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - /** |
|
| 196 | - * Render and return a bootstrap button component. |
|
| 197 | - * |
|
| 198 | - * @since 1.0.0 |
|
| 199 | - * |
|
| 200 | - * @param array $args The function arguments. |
|
| 201 | - * @param bool $echo If we should return or echo. |
|
| 202 | - * |
|
| 203 | - * @return string The rendered component. |
|
| 204 | - */ |
|
| 205 | - public function badge( $args = array(), $echo = false ) { |
|
| 206 | - $defaults = array( |
|
| 207 | - 'class' => 'badge badge-primary align-middle', |
|
| 208 | - ); |
|
| 209 | - |
|
| 210 | - // maybe set type. |
|
| 211 | - if ( empty( $args['href'] ) ) { |
|
| 212 | - $defaults['type'] = 'badge'; |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Parse incoming $args into an array and merge it with $defaults |
|
| 217 | - */ |
|
| 218 | - $args = wp_parse_args( $args, $defaults ); |
|
| 219 | - |
|
| 220 | - $output = AUI_Component_Button::get( $args ); |
|
| 221 | - |
|
| 222 | - if ( $echo ) { |
|
| 223 | - echo $output; |
|
| 224 | - }else{ |
|
| 225 | - return $output; |
|
| 226 | - } |
|
| 227 | - } |
|
| 228 | - |
|
| 229 | - /** |
|
| 230 | - * Render and return a bootstrap dropdown component. |
|
| 231 | - * |
|
| 232 | - * @since 1.0.0 |
|
| 233 | - * |
|
| 234 | - * @param array $args The function arguments. |
|
| 235 | - * @param bool $echo If we should return or echo. |
|
| 236 | - * |
|
| 237 | - * @return string The rendered component. |
|
| 238 | - */ |
|
| 239 | - public function dropdown( $args = array(), $echo = false ) { |
|
| 240 | - $output = AUI_Component_Dropdown::get( $args ); |
|
| 241 | - |
|
| 242 | - if ( $echo ) { |
|
| 243 | - echo $output; |
|
| 244 | - }else{ |
|
| 245 | - return $output; |
|
| 246 | - } |
|
| 247 | - } |
|
| 248 | - |
|
| 249 | - /** |
|
| 250 | - * Render and return a bootstrap select component. |
|
| 251 | - * |
|
| 252 | - * @since 1.0.0 |
|
| 253 | - * |
|
| 254 | - * @param array $args The function arguments. |
|
| 255 | - * @param bool $echo If we should return or echo. |
|
| 256 | - * |
|
| 257 | - * @return string The rendered component. |
|
| 258 | - */ |
|
| 259 | - public function select( $args = array(), $echo = false ) { |
|
| 260 | - $output = AUI_Component_Input::select( $args ); |
|
| 261 | - |
|
| 262 | - if ( $echo ) { |
|
| 263 | - echo $output; |
|
| 264 | - }else{ |
|
| 265 | - return $output; |
|
| 266 | - } |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * Render and return a bootstrap radio component. |
|
| 271 | - * |
|
| 272 | - * @since 1.0.0 |
|
| 273 | - * |
|
| 274 | - * @param array $args The function arguments. |
|
| 275 | - * @param bool $echo If we should return or echo. |
|
| 276 | - * |
|
| 277 | - * @return string The rendered component. |
|
| 278 | - */ |
|
| 279 | - public function radio( $args = array(), $echo = false ) { |
|
| 280 | - $output = AUI_Component_Input::radio( $args ); |
|
| 281 | - |
|
| 282 | - if ( $echo ) { |
|
| 283 | - echo $output; |
|
| 284 | - }else{ |
|
| 285 | - return $output; |
|
| 286 | - } |
|
| 287 | - } |
|
| 288 | - |
|
| 289 | - /** |
|
| 290 | - * Render and return a bootstrap pagination component. |
|
| 291 | - * |
|
| 292 | - * @since 1.0.0 |
|
| 293 | - * |
|
| 294 | - * @param array $args The function arguments. |
|
| 295 | - * @param bool $echo If we should return or echo. |
|
| 296 | - * |
|
| 297 | - * @return string The rendered component. |
|
| 298 | - */ |
|
| 299 | - public function pagination( $args = array(), $echo = false ) { |
|
| 300 | - $output = AUI_Component_Pagination::get( $args ); |
|
| 301 | - |
|
| 302 | - if ( $echo ) { |
|
| 303 | - echo $output; |
|
| 304 | - }else{ |
|
| 305 | - return $output; |
|
| 306 | - } |
|
| 307 | - } |
|
| 14 | + /** |
|
| 15 | + * Holds the class instance. |
|
| 16 | + * |
|
| 17 | + * @since 1.0.0 |
|
| 18 | + * @var null |
|
| 19 | + */ |
|
| 20 | + private static $instance = null; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Holds the current AUI version number. |
|
| 24 | + * |
|
| 25 | + * @var string $ver The current version number. |
|
| 26 | + */ |
|
| 27 | + public static $ver = '0.1.70'; |
|
| 28 | + |
|
| 29 | + public static $options = null; |
|
| 30 | + |
|
| 31 | + /** |
|
| 32 | + * There can be only one. |
|
| 33 | + * |
|
| 34 | + * @since 1.0.0 |
|
| 35 | + * @return AUI|null |
|
| 36 | + */ |
|
| 37 | + public static function instance() { |
|
| 38 | + if ( self::$instance == null ) { |
|
| 39 | + self::$instance = new AUI(); |
|
| 40 | + } |
|
| 41 | + |
|
| 42 | + return self::$instance; |
|
| 43 | + } |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * AUI constructor. |
|
| 47 | + * |
|
| 48 | + * @since 1.0.0 |
|
| 49 | + */ |
|
| 50 | + private function __construct() { |
|
| 51 | + if ( function_exists( "__autoload" ) ) { |
|
| 52 | + spl_autoload_register( "__autoload" ); |
|
| 53 | + } |
|
| 54 | + spl_autoload_register( array( $this, 'autoload' ) ); |
|
| 55 | + |
|
| 56 | + // load options |
|
| 57 | + self::$options = get_option('aui_options'); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Autoload any components on the fly. |
|
| 62 | + * |
|
| 63 | + * @since 1.0.0 |
|
| 64 | + * |
|
| 65 | + * @param $classname |
|
| 66 | + */ |
|
| 67 | + private function autoload( $classname ) { |
|
| 68 | + $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
| 69 | + $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
| 70 | + if ( $file_path && is_readable( $file_path ) ) { |
|
| 71 | + include_once( $file_path ); |
|
| 72 | + } |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * Get the AUI options. |
|
| 77 | + * |
|
| 78 | + * @param $option |
|
| 79 | + * |
|
| 80 | + * @return string|void |
|
| 81 | + */ |
|
| 82 | + public function get_option( $option ){ |
|
| 83 | + $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
| 84 | + |
|
| 85 | + if ( ! $result && $option) { |
|
| 86 | + if( $option == 'color_primary' ){ |
|
| 87 | + $result = AUI_PRIMARY_COLOR; |
|
| 88 | + }elseif( $option == 'color_secondary' ){ |
|
| 89 | + $result = AUI_SECONDARY_COLOR; |
|
| 90 | + } |
|
| 91 | + } |
|
| 92 | + return $result; |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + public function render( $items = array(), $echo = false ) { |
|
| 96 | + $output = ''; |
|
| 97 | + |
|
| 98 | + if ( ! empty( $items ) ) { |
|
| 99 | + foreach ( $items as $args ) { |
|
| 100 | + $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
| 101 | + if ( $render && method_exists( __CLASS__, $render ) ) { |
|
| 102 | + $output .= $this->$render( $args ); |
|
| 103 | + } |
|
| 104 | + } |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + if ( $echo ) { |
|
| 108 | + echo $output; |
|
| 109 | + }else{ |
|
| 110 | + return $output; |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + /** |
|
| 116 | + * Render and return a bootstrap alert component. |
|
| 117 | + * |
|
| 118 | + * @since 1.0.0 |
|
| 119 | + * |
|
| 120 | + * @param array $args The function arguments. |
|
| 121 | + * @param bool $echo If we should return or echo. |
|
| 122 | + * |
|
| 123 | + * @return string The rendered component. |
|
| 124 | + */ |
|
| 125 | + public function alert( $args = array(), $echo = false ) { |
|
| 126 | + $output = AUI_Component_Alert::get( $args ); |
|
| 127 | + |
|
| 128 | + if ( $echo ) { |
|
| 129 | + echo $output; |
|
| 130 | + }else{ |
|
| 131 | + return $output; |
|
| 132 | + } |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Render and return a bootstrap input component. |
|
| 137 | + * |
|
| 138 | + * @since 1.0.0 |
|
| 139 | + * |
|
| 140 | + * @param array $args The function arguments. |
|
| 141 | + * @param bool $echo If we should return or echo. |
|
| 142 | + * |
|
| 143 | + * @return string The rendered component. |
|
| 144 | + */ |
|
| 145 | + public function input( $args = array(), $echo = false ) { |
|
| 146 | + $output = AUI_Component_Input::input( $args ); |
|
| 147 | + |
|
| 148 | + if ( $echo ) { |
|
| 149 | + echo $output; |
|
| 150 | + }else{ |
|
| 151 | + return $output; |
|
| 152 | + } |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Render and return a bootstrap textarea component. |
|
| 157 | + * |
|
| 158 | + * @since 1.0.0 |
|
| 159 | + * |
|
| 160 | + * @param array $args The function arguments. |
|
| 161 | + * @param bool $echo If we should return or echo. |
|
| 162 | + * |
|
| 163 | + * @return string The rendered component. |
|
| 164 | + */ |
|
| 165 | + public function textarea( $args = array(), $echo = false ) { |
|
| 166 | + $output = AUI_Component_Input::textarea( $args ); |
|
| 167 | + |
|
| 168 | + if ( $echo ) { |
|
| 169 | + echo $output; |
|
| 170 | + }else{ |
|
| 171 | + return $output; |
|
| 172 | + } |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + /** |
|
| 176 | + * Render and return a bootstrap button component. |
|
| 177 | + * |
|
| 178 | + * @since 1.0.0 |
|
| 179 | + * |
|
| 180 | + * @param array $args The function arguments. |
|
| 181 | + * @param bool $echo If we should return or echo. |
|
| 182 | + * |
|
| 183 | + * @return string The rendered component. |
|
| 184 | + */ |
|
| 185 | + public function button( $args = array(), $echo = false ) { |
|
| 186 | + $output = AUI_Component_Button::get( $args ); |
|
| 187 | + |
|
| 188 | + if ( $echo ) { |
|
| 189 | + echo $output; |
|
| 190 | + }else{ |
|
| 191 | + return $output; |
|
| 192 | + } |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + /** |
|
| 196 | + * Render and return a bootstrap button component. |
|
| 197 | + * |
|
| 198 | + * @since 1.0.0 |
|
| 199 | + * |
|
| 200 | + * @param array $args The function arguments. |
|
| 201 | + * @param bool $echo If we should return or echo. |
|
| 202 | + * |
|
| 203 | + * @return string The rendered component. |
|
| 204 | + */ |
|
| 205 | + public function badge( $args = array(), $echo = false ) { |
|
| 206 | + $defaults = array( |
|
| 207 | + 'class' => 'badge badge-primary align-middle', |
|
| 208 | + ); |
|
| 209 | + |
|
| 210 | + // maybe set type. |
|
| 211 | + if ( empty( $args['href'] ) ) { |
|
| 212 | + $defaults['type'] = 'badge'; |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Parse incoming $args into an array and merge it with $defaults |
|
| 217 | + */ |
|
| 218 | + $args = wp_parse_args( $args, $defaults ); |
|
| 219 | + |
|
| 220 | + $output = AUI_Component_Button::get( $args ); |
|
| 221 | + |
|
| 222 | + if ( $echo ) { |
|
| 223 | + echo $output; |
|
| 224 | + }else{ |
|
| 225 | + return $output; |
|
| 226 | + } |
|
| 227 | + } |
|
| 228 | + |
|
| 229 | + /** |
|
| 230 | + * Render and return a bootstrap dropdown component. |
|
| 231 | + * |
|
| 232 | + * @since 1.0.0 |
|
| 233 | + * |
|
| 234 | + * @param array $args The function arguments. |
|
| 235 | + * @param bool $echo If we should return or echo. |
|
| 236 | + * |
|
| 237 | + * @return string The rendered component. |
|
| 238 | + */ |
|
| 239 | + public function dropdown( $args = array(), $echo = false ) { |
|
| 240 | + $output = AUI_Component_Dropdown::get( $args ); |
|
| 241 | + |
|
| 242 | + if ( $echo ) { |
|
| 243 | + echo $output; |
|
| 244 | + }else{ |
|
| 245 | + return $output; |
|
| 246 | + } |
|
| 247 | + } |
|
| 248 | + |
|
| 249 | + /** |
|
| 250 | + * Render and return a bootstrap select component. |
|
| 251 | + * |
|
| 252 | + * @since 1.0.0 |
|
| 253 | + * |
|
| 254 | + * @param array $args The function arguments. |
|
| 255 | + * @param bool $echo If we should return or echo. |
|
| 256 | + * |
|
| 257 | + * @return string The rendered component. |
|
| 258 | + */ |
|
| 259 | + public function select( $args = array(), $echo = false ) { |
|
| 260 | + $output = AUI_Component_Input::select( $args ); |
|
| 261 | + |
|
| 262 | + if ( $echo ) { |
|
| 263 | + echo $output; |
|
| 264 | + }else{ |
|
| 265 | + return $output; |
|
| 266 | + } |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * Render and return a bootstrap radio component. |
|
| 271 | + * |
|
| 272 | + * @since 1.0.0 |
|
| 273 | + * |
|
| 274 | + * @param array $args The function arguments. |
|
| 275 | + * @param bool $echo If we should return or echo. |
|
| 276 | + * |
|
| 277 | + * @return string The rendered component. |
|
| 278 | + */ |
|
| 279 | + public function radio( $args = array(), $echo = false ) { |
|
| 280 | + $output = AUI_Component_Input::radio( $args ); |
|
| 281 | + |
|
| 282 | + if ( $echo ) { |
|
| 283 | + echo $output; |
|
| 284 | + }else{ |
|
| 285 | + return $output; |
|
| 286 | + } |
|
| 287 | + } |
|
| 288 | + |
|
| 289 | + /** |
|
| 290 | + * Render and return a bootstrap pagination component. |
|
| 291 | + * |
|
| 292 | + * @since 1.0.0 |
|
| 293 | + * |
|
| 294 | + * @param array $args The function arguments. |
|
| 295 | + * @param bool $echo If we should return or echo. |
|
| 296 | + * |
|
| 297 | + * @return string The rendered component. |
|
| 298 | + */ |
|
| 299 | + public function pagination( $args = array(), $echo = false ) { |
|
| 300 | + $output = AUI_Component_Pagination::get( $args ); |
|
| 301 | + |
|
| 302 | + if ( $echo ) { |
|
| 303 | + echo $output; |
|
| 304 | + }else{ |
|
| 305 | + return $output; |
|
| 306 | + } |
|
| 307 | + } |
|
| 308 | 308 | |
| 309 | 309 | } |
| 310 | 310 | \ No newline at end of file |
@@ -13,7 +13,7 @@ discard block |
||
| 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,273 +21,273 @@ discard block |
||
| 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.70'; |
|
| 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.70'; |
|
| 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->version ); |
|
| 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->version ); |
|
| 283 | + wp_enqueue_style( 'ayecode-ui' ); |
|
| 284 | 284 | |
| 285 | - // flatpickr |
|
| 286 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version ); |
|
| 285 | + // flatpickr |
|
| 286 | + wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version ); |
|
| 287 | 287 | |
| 288 | - // fix some wp-admin issues |
|
| 289 | - if(is_admin()){ |
|
| 290 | - $custom_css = " |
|
| 288 | + // fix some wp-admin issues |
|
| 289 | + if(is_admin()){ |
|
| 290 | + $custom_css = " |
|
| 291 | 291 | body{ |
| 292 | 292 | background-color: #f1f1f1; |
| 293 | 293 | font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
@@ -333,35 +333,35 @@ discard block |
||
| 333 | 333 | } |
| 334 | 334 | "; |
| 335 | 335 | |
| 336 | - // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
| 337 | - $custom_css .= " |
|
| 336 | + // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
| 337 | + $custom_css .= " |
|
| 338 | 338 | .edit-post-sidebar input[type=color].components-text-control__input{ |
| 339 | 339 | padding: 0; |
| 340 | 340 | } |
| 341 | 341 | "; |
| 342 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
| 343 | - } |
|
| 342 | + wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | - // custom changes |
|
| 346 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
| 345 | + // custom changes |
|
| 346 | + wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
| 347 | 347 | |
| 348 | - } |
|
| 349 | - } |
|
| 348 | + } |
|
| 349 | + } |
|
| 350 | 350 | |
| 351 | 351 | |
| 352 | - } |
|
| 352 | + } |
|
| 353 | 353 | |
| 354 | - /** |
|
| 355 | - * Get inline script used if bootstrap enqueued |
|
| 356 | - * |
|
| 357 | - * If this remains small then its best to use this than to add another JS file. |
|
| 358 | - */ |
|
| 359 | - public function inline_script() { |
|
| 360 | - // Flatpickr calendar locale |
|
| 361 | - $flatpickr_locale = self::flatpickr_locale(); |
|
| 362 | - |
|
| 363 | - ob_start(); |
|
| 364 | - ?> |
|
| 354 | + /** |
|
| 355 | + * Get inline script used if bootstrap enqueued |
|
| 356 | + * |
|
| 357 | + * If this remains small then its best to use this than to add another JS file. |
|
| 358 | + */ |
|
| 359 | + public function inline_script() { |
|
| 360 | + // Flatpickr calendar locale |
|
| 361 | + $flatpickr_locale = self::flatpickr_locale(); |
|
| 362 | + |
|
| 363 | + ob_start(); |
|
| 364 | + ?> |
|
| 365 | 365 | <script> |
| 366 | 366 | /** |
| 367 | 367 | * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ). |
@@ -1199,29 +1199,29 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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->version ); |
|
| 1278 | + // flatpickr |
|
| 1279 | + wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version ); |
|
| 1280 | 1280 | |
| 1281 | - // flatpickr |
|
| 1282 | - wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version ); |
|
| 1281 | + // flatpickr |
|
| 1282 | + wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version ); |
|
| 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->version, $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->version ); |
|
| 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->version, $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->version ); |
|
| 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 |
||
| 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;} |
@@ -1608,583 +1608,583 @@ discard block |
||
| 1608 | 1608 | <?php } ?> |
| 1609 | 1609 | </style> |
| 1610 | 1610 | <?php |
| 1611 | - return str_replace( array( |
|
| 1612 | - '<style>', |
|
| 1613 | - '</style>' |
|
| 1614 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
| 1615 | - } |
|
| 1611 | + return str_replace( array( |
|
| 1612 | + '<style>', |
|
| 1613 | + '</style>' |
|
| 1614 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
| 1615 | + } |
|
| 1616 | 1616 | |
| 1617 | 1617 | |
| 1618 | - public static function custom_css($compatibility = true) { |
|
| 1619 | - $settings = get_option('aui_options'); |
|
| 1618 | + public static function custom_css($compatibility = true) { |
|
| 1619 | + $settings = get_option('aui_options'); |
|
| 1620 | 1620 | |
| 1621 | - ob_start(); |
|
| 1621 | + ob_start(); |
|
| 1622 | 1622 | |
| 1623 | - $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
| 1624 | - $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
| 1625 | - //AUI_PRIMARY_COLOR_ORIGINAL |
|
| 1626 | - ?> |
|
| 1623 | + $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
| 1624 | + $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
| 1625 | + //AUI_PRIMARY_COLOR_ORIGINAL |
|
| 1626 | + ?> |
|
| 1627 | 1627 | <style> |
| 1628 | 1628 | <?php |
| 1629 | 1629 | |
| 1630 | - // BS v3 compat |
|
| 1631 | - if( self::is_bs3_compat() ){ |
|
| 1632 | - echo self::bs3_compat_css(); |
|
| 1633 | - } |
|
| 1630 | + // BS v3 compat |
|
| 1631 | + if( self::is_bs3_compat() ){ |
|
| 1632 | + echo self::bs3_compat_css(); |
|
| 1633 | + } |
|
| 1634 | 1634 | |
| 1635 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
| 1636 | - echo self::css_primary($primary_color,$compatibility); |
|
| 1637 | - } |
|
| 1635 | + if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
| 1636 | + echo self::css_primary($primary_color,$compatibility); |
|
| 1637 | + } |
|
| 1638 | 1638 | |
| 1639 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
| 1640 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
| 1641 | - } |
|
| 1639 | + if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
| 1640 | + echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
| 1641 | + } |
|
| 1642 | 1642 | |
| 1643 | - // Set admin bar z-index lower when modal is open. |
|
| 1644 | - echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
| 1643 | + // Set admin bar z-index lower when modal is open. |
|
| 1644 | + echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
| 1645 | 1645 | |
| 1646 | - if(is_admin()){ |
|
| 1647 | - echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
|
| 1648 | - } |
|
| 1646 | + if(is_admin()){ |
|
| 1647 | + echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}'; |
|
| 1648 | + } |
|
| 1649 | 1649 | ?> |
| 1650 | 1650 | </style> |
| 1651 | 1651 | <?php |
| 1652 | 1652 | |
| 1653 | 1653 | |
| 1654 | - /* |
|
| 1654 | + /* |
|
| 1655 | 1655 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
| 1656 | 1656 | */ |
| 1657 | - return str_replace( array( |
|
| 1658 | - '<style>', |
|
| 1659 | - '</style>' |
|
| 1660 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
| 1661 | - } |
|
| 1657 | + return str_replace( array( |
|
| 1658 | + '<style>', |
|
| 1659 | + '</style>' |
|
| 1660 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
| 1661 | + } |
|
| 1662 | 1662 | |
| 1663 | - /** |
|
| 1664 | - * Check if we should add booststrap 3 compatibility changes. |
|
| 1665 | - * |
|
| 1666 | - * @return bool |
|
| 1667 | - */ |
|
| 1668 | - public static function is_bs3_compat(){ |
|
| 1669 | - return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
| 1670 | - } |
|
| 1663 | + /** |
|
| 1664 | + * Check if we should add booststrap 3 compatibility changes. |
|
| 1665 | + * |
|
| 1666 | + * @return bool |
|
| 1667 | + */ |
|
| 1668 | + public static function is_bs3_compat(){ |
|
| 1669 | + return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
| 1670 | + } |
|
| 1671 | 1671 | |
| 1672 | - public static function css_primary($color_code,$compatibility){; |
|
| 1673 | - $color_code = sanitize_hex_color($color_code); |
|
| 1674 | - if(!$color_code){return '';} |
|
| 1675 | - /** |
|
| 1676 | - * c = color, b = background color, o = border-color, f = fill |
|
| 1677 | - */ |
|
| 1678 | - $selectors = array( |
|
| 1679 | - 'a' => array('c'), |
|
| 1680 | - '.btn-primary' => array('b','o'), |
|
| 1681 | - '.btn-primary.disabled' => array('b','o'), |
|
| 1682 | - '.btn-primary:disabled' => array('b','o'), |
|
| 1683 | - '.btn-outline-primary' => array('c','o'), |
|
| 1684 | - '.btn-outline-primary:hover' => array('b','o'), |
|
| 1685 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
| 1686 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
| 1687 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
| 1688 | - '.btn-link' => array('c'), |
|
| 1689 | - '.dropdown-item.active' => array('b'), |
|
| 1690 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
| 1691 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
| 1672 | + public static function css_primary($color_code,$compatibility){; |
|
| 1673 | + $color_code = sanitize_hex_color($color_code); |
|
| 1674 | + if(!$color_code){return '';} |
|
| 1675 | + /** |
|
| 1676 | + * c = color, b = background color, o = border-color, f = fill |
|
| 1677 | + */ |
|
| 1678 | + $selectors = array( |
|
| 1679 | + 'a' => array('c'), |
|
| 1680 | + '.btn-primary' => array('b','o'), |
|
| 1681 | + '.btn-primary.disabled' => array('b','o'), |
|
| 1682 | + '.btn-primary:disabled' => array('b','o'), |
|
| 1683 | + '.btn-outline-primary' => array('c','o'), |
|
| 1684 | + '.btn-outline-primary:hover' => array('b','o'), |
|
| 1685 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
| 1686 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
| 1687 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
| 1688 | + '.btn-link' => array('c'), |
|
| 1689 | + '.dropdown-item.active' => array('b'), |
|
| 1690 | + '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
| 1691 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
| 1692 | 1692 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
| 1693 | 1693 | // '.custom-range::-moz-range-thumb' => array('b'), |
| 1694 | 1694 | // '.custom-range::-ms-thumb' => array('b'), |
| 1695 | - '.nav-pills .nav-link.active' => array('b'), |
|
| 1696 | - '.nav-pills .show>.nav-link' => array('b'), |
|
| 1697 | - '.page-link' => array('c'), |
|
| 1698 | - '.page-item.active .page-link' => array('b','o'), |
|
| 1699 | - '.badge-primary' => array('b'), |
|
| 1700 | - '.alert-primary' => array('b','o'), |
|
| 1701 | - '.progress-bar' => array('b'), |
|
| 1702 | - '.list-group-item.active' => array('b','o'), |
|
| 1703 | - '.bg-primary' => array('b','f'), |
|
| 1704 | - '.btn-link.btn-primary' => array('c'), |
|
| 1705 | - '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
| 1706 | - ); |
|
| 1707 | - |
|
| 1708 | - $important_selectors = array( |
|
| 1709 | - '.bg-primary' => array('b','f'), |
|
| 1710 | - '.border-primary' => array('o'), |
|
| 1711 | - '.text-primary' => array('c'), |
|
| 1712 | - ); |
|
| 1713 | - |
|
| 1714 | - $color = array(); |
|
| 1715 | - $color_i = array(); |
|
| 1716 | - $background = array(); |
|
| 1717 | - $background_i = array(); |
|
| 1718 | - $border = array(); |
|
| 1719 | - $border_i = array(); |
|
| 1720 | - $fill = array(); |
|
| 1721 | - $fill_i = array(); |
|
| 1722 | - |
|
| 1723 | - $output = ''; |
|
| 1724 | - |
|
| 1725 | - // build rules into each type |
|
| 1726 | - foreach($selectors as $selector => $types){ |
|
| 1727 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1728 | - $types = array_combine($types,$types); |
|
| 1729 | - if(isset($types['c'])){$color[] = $selector;} |
|
| 1730 | - if(isset($types['b'])){$background[] = $selector;} |
|
| 1731 | - if(isset($types['o'])){$border[] = $selector;} |
|
| 1732 | - if(isset($types['f'])){$fill[] = $selector;} |
|
| 1733 | - } |
|
| 1734 | - |
|
| 1735 | - // build rules into each type |
|
| 1736 | - foreach($important_selectors as $selector => $types){ |
|
| 1737 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1738 | - $types = array_combine($types,$types); |
|
| 1739 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
| 1740 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
| 1741 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
| 1742 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
| 1743 | - } |
|
| 1744 | - |
|
| 1745 | - // add any color rules |
|
| 1746 | - if(!empty($color)){ |
|
| 1747 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
| 1748 | - } |
|
| 1749 | - if(!empty($color_i)){ |
|
| 1750 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
| 1751 | - } |
|
| 1752 | - |
|
| 1753 | - // add any background color rules |
|
| 1754 | - if(!empty($background)){ |
|
| 1755 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
| 1756 | - } |
|
| 1757 | - if(!empty($background_i)){ |
|
| 1758 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
| 1759 | - } |
|
| 1760 | - |
|
| 1761 | - // add any border color rules |
|
| 1762 | - if(!empty($border)){ |
|
| 1763 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
| 1764 | - } |
|
| 1765 | - if(!empty($border_i)){ |
|
| 1766 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
| 1767 | - } |
|
| 1768 | - |
|
| 1769 | - // add any fill color rules |
|
| 1770 | - if(!empty($fill)){ |
|
| 1771 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
| 1772 | - } |
|
| 1773 | - if(!empty($fill_i)){ |
|
| 1774 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
| 1775 | - } |
|
| 1776 | - |
|
| 1777 | - |
|
| 1778 | - $prefix = $compatibility ? ".bsui " : ""; |
|
| 1779 | - |
|
| 1780 | - // darken |
|
| 1781 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
| 1782 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
| 1783 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
| 1784 | - |
|
| 1785 | - // lighten |
|
| 1786 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
| 1787 | - |
|
| 1788 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
| 1789 | - $op_25 = $color_code."40"; // 25% opacity |
|
| 1790 | - |
|
| 1791 | - |
|
| 1792 | - // button states |
|
| 1793 | - $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
| 1794 | - $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;} "; |
|
| 1795 | - $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.";} "; |
|
| 1796 | - $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;} "; |
|
| 1797 | - |
|
| 1798 | - |
|
| 1799 | - // dropdown's |
|
| 1800 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
| 1801 | - |
|
| 1802 | - |
|
| 1803 | - // input states |
|
| 1804 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
| 1805 | - |
|
| 1806 | - // page link |
|
| 1807 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
| 1808 | - |
|
| 1809 | - return $output; |
|
| 1810 | - } |
|
| 1695 | + '.nav-pills .nav-link.active' => array('b'), |
|
| 1696 | + '.nav-pills .show>.nav-link' => array('b'), |
|
| 1697 | + '.page-link' => array('c'), |
|
| 1698 | + '.page-item.active .page-link' => array('b','o'), |
|
| 1699 | + '.badge-primary' => array('b'), |
|
| 1700 | + '.alert-primary' => array('b','o'), |
|
| 1701 | + '.progress-bar' => array('b'), |
|
| 1702 | + '.list-group-item.active' => array('b','o'), |
|
| 1703 | + '.bg-primary' => array('b','f'), |
|
| 1704 | + '.btn-link.btn-primary' => array('c'), |
|
| 1705 | + '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
| 1706 | + ); |
|
| 1707 | + |
|
| 1708 | + $important_selectors = array( |
|
| 1709 | + '.bg-primary' => array('b','f'), |
|
| 1710 | + '.border-primary' => array('o'), |
|
| 1711 | + '.text-primary' => array('c'), |
|
| 1712 | + ); |
|
| 1713 | + |
|
| 1714 | + $color = array(); |
|
| 1715 | + $color_i = array(); |
|
| 1716 | + $background = array(); |
|
| 1717 | + $background_i = array(); |
|
| 1718 | + $border = array(); |
|
| 1719 | + $border_i = array(); |
|
| 1720 | + $fill = array(); |
|
| 1721 | + $fill_i = array(); |
|
| 1722 | + |
|
| 1723 | + $output = ''; |
|
| 1724 | + |
|
| 1725 | + // build rules into each type |
|
| 1726 | + foreach($selectors as $selector => $types){ |
|
| 1727 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1728 | + $types = array_combine($types,$types); |
|
| 1729 | + if(isset($types['c'])){$color[] = $selector;} |
|
| 1730 | + if(isset($types['b'])){$background[] = $selector;} |
|
| 1731 | + if(isset($types['o'])){$border[] = $selector;} |
|
| 1732 | + if(isset($types['f'])){$fill[] = $selector;} |
|
| 1733 | + } |
|
| 1811 | 1734 | |
| 1812 | - public static function css_secondary($color_code,$compatibility){; |
|
| 1813 | - $color_code = sanitize_hex_color($color_code); |
|
| 1814 | - if(!$color_code){return '';} |
|
| 1815 | - /** |
|
| 1816 | - * c = color, b = background color, o = border-color, f = fill |
|
| 1817 | - */ |
|
| 1818 | - $selectors = array( |
|
| 1819 | - '.btn-secondary' => array('b','o'), |
|
| 1820 | - '.btn-secondary.disabled' => array('b','o'), |
|
| 1821 | - '.btn-secondary:disabled' => array('b','o'), |
|
| 1822 | - '.btn-outline-secondary' => array('c','o'), |
|
| 1823 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
| 1824 | - '.btn-outline-secondary.disabled' => array('c'), |
|
| 1825 | - '.btn-outline-secondary:disabled' => array('c'), |
|
| 1826 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
| 1827 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
| 1828 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
| 1829 | - '.badge-secondary' => array('b'), |
|
| 1830 | - '.alert-secondary' => array('b','o'), |
|
| 1831 | - '.btn-link.btn-secondary' => array('c'), |
|
| 1832 | - ); |
|
| 1833 | - |
|
| 1834 | - $important_selectors = array( |
|
| 1835 | - '.bg-secondary' => array('b','f'), |
|
| 1836 | - '.border-secondary' => array('o'), |
|
| 1837 | - '.text-secondary' => array('c'), |
|
| 1838 | - ); |
|
| 1839 | - |
|
| 1840 | - $color = array(); |
|
| 1841 | - $color_i = array(); |
|
| 1842 | - $background = array(); |
|
| 1843 | - $background_i = array(); |
|
| 1844 | - $border = array(); |
|
| 1845 | - $border_i = array(); |
|
| 1846 | - $fill = array(); |
|
| 1847 | - $fill_i = array(); |
|
| 1848 | - |
|
| 1849 | - $output = ''; |
|
| 1850 | - |
|
| 1851 | - // build rules into each type |
|
| 1852 | - foreach($selectors as $selector => $types){ |
|
| 1853 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1854 | - $types = array_combine($types,$types); |
|
| 1855 | - if(isset($types['c'])){$color[] = $selector;} |
|
| 1856 | - if(isset($types['b'])){$background[] = $selector;} |
|
| 1857 | - if(isset($types['o'])){$border[] = $selector;} |
|
| 1858 | - if(isset($types['f'])){$fill[] = $selector;} |
|
| 1859 | - } |
|
| 1860 | - |
|
| 1861 | - // build rules into each type |
|
| 1862 | - foreach($important_selectors as $selector => $types){ |
|
| 1863 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1864 | - $types = array_combine($types,$types); |
|
| 1865 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
| 1866 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
| 1867 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
| 1868 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
| 1869 | - } |
|
| 1870 | - |
|
| 1871 | - // add any color rules |
|
| 1872 | - if(!empty($color)){ |
|
| 1873 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
| 1874 | - } |
|
| 1875 | - if(!empty($color_i)){ |
|
| 1876 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
| 1877 | - } |
|
| 1878 | - |
|
| 1879 | - // add any background color rules |
|
| 1880 | - if(!empty($background)){ |
|
| 1881 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
| 1882 | - } |
|
| 1883 | - if(!empty($background_i)){ |
|
| 1884 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
| 1885 | - } |
|
| 1886 | - |
|
| 1887 | - // add any border color rules |
|
| 1888 | - if(!empty($border)){ |
|
| 1889 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
| 1890 | - } |
|
| 1891 | - if(!empty($border_i)){ |
|
| 1892 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
| 1893 | - } |
|
| 1894 | - |
|
| 1895 | - // add any fill color rules |
|
| 1896 | - if(!empty($fill)){ |
|
| 1897 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
| 1898 | - } |
|
| 1899 | - if(!empty($fill_i)){ |
|
| 1900 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
| 1901 | - } |
|
| 1902 | - |
|
| 1903 | - |
|
| 1904 | - $prefix = $compatibility ? ".bsui " : ""; |
|
| 1905 | - |
|
| 1906 | - // darken |
|
| 1907 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
| 1908 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
| 1909 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
| 1910 | - |
|
| 1911 | - // lighten |
|
| 1912 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
| 1913 | - |
|
| 1914 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
| 1915 | - $op_25 = $color_code."40"; // 25% opacity |
|
| 1916 | - |
|
| 1917 | - |
|
| 1918 | - // button states |
|
| 1919 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
| 1920 | - $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;} "; |
|
| 1921 | - $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.";} "; |
|
| 1922 | - $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;} "; |
|
| 1923 | - |
|
| 1924 | - |
|
| 1925 | - return $output; |
|
| 1926 | - } |
|
| 1735 | + // build rules into each type |
|
| 1736 | + foreach($important_selectors as $selector => $types){ |
|
| 1737 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1738 | + $types = array_combine($types,$types); |
|
| 1739 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
| 1740 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
| 1741 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
| 1742 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
| 1743 | + } |
|
| 1927 | 1744 | |
| 1928 | - /** |
|
| 1929 | - * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
| 1930 | - * |
|
| 1931 | - * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
| 1932 | - * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
| 1933 | - * |
|
| 1934 | - * @return string |
|
| 1935 | - */ |
|
| 1936 | - public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
| 1937 | - $hexCode = ltrim($hexCode, '#'); |
|
| 1745 | + // add any color rules |
|
| 1746 | + if(!empty($color)){ |
|
| 1747 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
| 1748 | + } |
|
| 1749 | + if(!empty($color_i)){ |
|
| 1750 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
| 1751 | + } |
|
| 1938 | 1752 | |
| 1939 | - if (strlen($hexCode) == 3) { |
|
| 1940 | - $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
| 1941 | - } |
|
| 1753 | + // add any background color rules |
|
| 1754 | + if(!empty($background)){ |
|
| 1755 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
| 1756 | + } |
|
| 1757 | + if(!empty($background_i)){ |
|
| 1758 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
| 1759 | + } |
|
| 1942 | 1760 | |
| 1943 | - $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
| 1761 | + // add any border color rules |
|
| 1762 | + if(!empty($border)){ |
|
| 1763 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
| 1764 | + } |
|
| 1765 | + if(!empty($border_i)){ |
|
| 1766 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
| 1767 | + } |
|
| 1944 | 1768 | |
| 1945 | - foreach ($hexCode as & $color) { |
|
| 1946 | - $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
| 1947 | - $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
| 1769 | + // add any fill color rules |
|
| 1770 | + if(!empty($fill)){ |
|
| 1771 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
| 1772 | + } |
|
| 1773 | + if(!empty($fill_i)){ |
|
| 1774 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
| 1775 | + } |
|
| 1948 | 1776 | |
| 1949 | - $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
| 1950 | - } |
|
| 1951 | 1777 | |
| 1952 | - return '#' . implode($hexCode); |
|
| 1953 | - } |
|
| 1778 | + $prefix = $compatibility ? ".bsui " : ""; |
|
| 1954 | 1779 | |
| 1955 | - /** |
|
| 1956 | - * Check if we should display examples. |
|
| 1957 | - */ |
|
| 1958 | - public function maybe_show_examples(){ |
|
| 1959 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
| 1960 | - echo "<head>"; |
|
| 1961 | - wp_head(); |
|
| 1962 | - echo "</head>"; |
|
| 1963 | - echo "<body>"; |
|
| 1964 | - echo $this->get_examples(); |
|
| 1965 | - echo "</body>"; |
|
| 1966 | - exit; |
|
| 1967 | - } |
|
| 1968 | - } |
|
| 1780 | + // darken |
|
| 1781 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
| 1782 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
| 1783 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
| 1969 | 1784 | |
| 1970 | - /** |
|
| 1971 | - * Get developer examples. |
|
| 1972 | - * |
|
| 1973 | - * @return string |
|
| 1974 | - */ |
|
| 1975 | - public function get_examples(){ |
|
| 1976 | - $output = ''; |
|
| 1977 | - |
|
| 1978 | - |
|
| 1979 | - // open form |
|
| 1980 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
| 1981 | - |
|
| 1982 | - // input example |
|
| 1983 | - $output .= aui()->input(array( |
|
| 1984 | - 'type' => 'text', |
|
| 1985 | - 'id' => 'text-example', |
|
| 1986 | - 'name' => 'text-example', |
|
| 1987 | - 'placeholder' => 'text placeholder', |
|
| 1988 | - 'title' => 'Text input example', |
|
| 1989 | - 'value' => '', |
|
| 1990 | - 'required' => false, |
|
| 1991 | - 'help_text' => 'help text', |
|
| 1992 | - 'label' => 'Text input example label' |
|
| 1993 | - )); |
|
| 1994 | - |
|
| 1995 | - // input example |
|
| 1996 | - $output .= aui()->input(array( |
|
| 1997 | - 'type' => 'url', |
|
| 1998 | - 'id' => 'text-example2', |
|
| 1999 | - 'name' => 'text-example', |
|
| 2000 | - 'placeholder' => 'url placeholder', |
|
| 2001 | - 'title' => 'Text input example', |
|
| 2002 | - 'value' => '', |
|
| 2003 | - 'required' => false, |
|
| 2004 | - 'help_text' => 'help text', |
|
| 2005 | - 'label' => 'Text input example label' |
|
| 2006 | - )); |
|
| 2007 | - |
|
| 2008 | - // checkbox example |
|
| 2009 | - $output .= aui()->input(array( |
|
| 2010 | - 'type' => 'checkbox', |
|
| 2011 | - 'id' => 'checkbox-example', |
|
| 2012 | - 'name' => 'checkbox-example', |
|
| 2013 | - 'placeholder' => 'checkbox-example', |
|
| 2014 | - 'title' => 'Checkbox example', |
|
| 2015 | - 'value' => '1', |
|
| 2016 | - 'checked' => true, |
|
| 2017 | - 'required' => false, |
|
| 2018 | - 'help_text' => 'help text', |
|
| 2019 | - 'label' => 'Checkbox checked' |
|
| 2020 | - )); |
|
| 2021 | - |
|
| 2022 | - // checkbox example |
|
| 2023 | - $output .= aui()->input(array( |
|
| 2024 | - 'type' => 'checkbox', |
|
| 2025 | - 'id' => 'checkbox-example2', |
|
| 2026 | - 'name' => 'checkbox-example2', |
|
| 2027 | - 'placeholder' => 'checkbox-example', |
|
| 2028 | - 'title' => 'Checkbox example', |
|
| 2029 | - 'value' => '1', |
|
| 2030 | - 'checked' => false, |
|
| 2031 | - 'required' => false, |
|
| 2032 | - 'help_text' => 'help text', |
|
| 2033 | - 'label' => 'Checkbox un-checked' |
|
| 2034 | - )); |
|
| 2035 | - |
|
| 2036 | - // switch example |
|
| 2037 | - $output .= aui()->input(array( |
|
| 2038 | - 'type' => 'checkbox', |
|
| 2039 | - 'id' => 'switch-example', |
|
| 2040 | - 'name' => 'switch-example', |
|
| 2041 | - 'placeholder' => 'checkbox-example', |
|
| 2042 | - 'title' => 'Switch example', |
|
| 2043 | - 'value' => '1', |
|
| 2044 | - 'checked' => true, |
|
| 2045 | - 'switch' => true, |
|
| 2046 | - 'required' => false, |
|
| 2047 | - 'help_text' => 'help text', |
|
| 2048 | - 'label' => 'Switch on' |
|
| 2049 | - )); |
|
| 2050 | - |
|
| 2051 | - // switch example |
|
| 2052 | - $output .= aui()->input(array( |
|
| 2053 | - 'type' => 'checkbox', |
|
| 2054 | - 'id' => 'switch-example2', |
|
| 2055 | - 'name' => 'switch-example2', |
|
| 2056 | - 'placeholder' => 'checkbox-example', |
|
| 2057 | - 'title' => 'Switch example', |
|
| 2058 | - 'value' => '1', |
|
| 2059 | - 'checked' => false, |
|
| 2060 | - 'switch' => true, |
|
| 2061 | - 'required' => false, |
|
| 2062 | - 'help_text' => 'help text', |
|
| 2063 | - 'label' => 'Switch off' |
|
| 2064 | - )); |
|
| 2065 | - |
|
| 2066 | - // close form |
|
| 2067 | - $output .= "</form>"; |
|
| 2068 | - |
|
| 2069 | - return $output; |
|
| 2070 | - } |
|
| 1785 | + // lighten |
|
| 1786 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
| 2071 | 1787 | |
| 2072 | - /** |
|
| 2073 | - * Calendar params. |
|
| 2074 | - * |
|
| 2075 | - * @since 0.1.44 |
|
| 2076 | - * |
|
| 2077 | - * @return array Calendar params. |
|
| 2078 | - */ |
|
| 2079 | - public static function calendar_params() { |
|
| 2080 | - $params = array( |
|
| 2081 | - 'month_long_1' => __( 'January', 'aui' ), |
|
| 2082 | - 'month_long_2' => __( 'February', 'aui' ), |
|
| 2083 | - 'month_long_3' => __( 'March', 'aui' ), |
|
| 2084 | - 'month_long_4' => __( 'April', 'aui' ), |
|
| 2085 | - 'month_long_5' => __( 'May', 'aui' ), |
|
| 2086 | - 'month_long_6' => __( 'June', 'aui' ), |
|
| 2087 | - 'month_long_7' => __( 'July', 'aui' ), |
|
| 2088 | - 'month_long_8' => __( 'August', 'aui' ), |
|
| 2089 | - 'month_long_9' => __( 'September', 'aui' ), |
|
| 2090 | - 'month_long_10' => __( 'October', 'aui' ), |
|
| 2091 | - 'month_long_11' => __( 'November', 'aui' ), |
|
| 2092 | - 'month_long_12' => __( 'December', 'aui' ), |
|
| 2093 | - 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
| 2094 | - 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
| 2095 | - 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
| 2096 | - 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
| 2097 | - 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
| 2098 | - 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
| 2099 | - 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
| 2100 | - 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
| 2101 | - 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
| 2102 | - 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
| 2103 | - 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
| 2104 | - 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
| 2105 | - 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
| 2106 | - 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
| 2107 | - 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
| 2108 | - 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
| 2109 | - 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
| 2110 | - 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
| 2111 | - 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
| 2112 | - 'day_s2_1' => __( 'Su', 'aui' ), |
|
| 2113 | - 'day_s2_2' => __( 'Mo', 'aui' ), |
|
| 2114 | - 'day_s2_3' => __( 'Tu', 'aui' ), |
|
| 2115 | - 'day_s2_4' => __( 'We', 'aui' ), |
|
| 2116 | - 'day_s2_5' => __( 'Th', 'aui' ), |
|
| 2117 | - 'day_s2_6' => __( 'Fr', 'aui' ), |
|
| 2118 | - 'day_s2_7' => __( 'Sa', 'aui' ), |
|
| 2119 | - 'day_s3_1' => __( 'Sun', 'aui' ), |
|
| 2120 | - 'day_s3_2' => __( 'Mon', 'aui' ), |
|
| 2121 | - 'day_s3_3' => __( 'Tue', 'aui' ), |
|
| 2122 | - 'day_s3_4' => __( 'Wed', 'aui' ), |
|
| 2123 | - 'day_s3_5' => __( 'Thu', 'aui' ), |
|
| 2124 | - 'day_s3_6' => __( 'Fri', 'aui' ), |
|
| 2125 | - 'day_s3_7' => __( 'Sat', 'aui' ), |
|
| 2126 | - 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
| 2127 | - 'day_s5_2' => __( 'Monday', 'aui' ), |
|
| 2128 | - 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
| 2129 | - 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
| 2130 | - 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
| 2131 | - 'day_s5_6' => __( 'Friday', 'aui' ), |
|
| 2132 | - 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
| 2133 | - 'am_lower' => __( 'am', 'aui' ), |
|
| 2134 | - 'pm_lower' => __( 'pm', 'aui' ), |
|
| 2135 | - 'am_upper' => __( 'AM', 'aui' ), |
|
| 2136 | - 'pm_upper' => __( 'PM', 'aui' ), |
|
| 2137 | - 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
| 2138 | - 'time_24hr' => false, |
|
| 2139 | - 'year' => __( 'Year', 'aui' ), |
|
| 2140 | - 'hour' => __( 'Hour', 'aui' ), |
|
| 2141 | - 'minute' => __( 'Minute', 'aui' ), |
|
| 2142 | - 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
| 2143 | - 'rangeSeparator' => __( ' to ', 'aui' ), |
|
| 2144 | - 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
| 2145 | - 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
| 2146 | - ); |
|
| 2147 | - |
|
| 2148 | - return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
| 2149 | - } |
|
| 1788 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
| 1789 | + $op_25 = $color_code."40"; // 25% opacity |
|
| 2150 | 1790 | |
| 2151 | - /** |
|
| 2152 | - * Flatpickr calendar localize. |
|
| 2153 | - * |
|
| 2154 | - * @since 0.1.44 |
|
| 2155 | - * |
|
| 2156 | - * @return string Calendar locale. |
|
| 2157 | - */ |
|
| 2158 | - public static function flatpickr_locale() { |
|
| 2159 | - $params = self::calendar_params(); |
|
| 2160 | - |
|
| 2161 | - if ( is_string( $params ) ) { |
|
| 2162 | - $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
| 2163 | - } else { |
|
| 2164 | - foreach ( (array) $params as $key => $value ) { |
|
| 2165 | - if ( ! is_scalar( $value ) ) { |
|
| 2166 | - continue; |
|
| 2167 | - } |
|
| 2168 | 1791 | |
| 2169 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2170 | - } |
|
| 2171 | - } |
|
| 1792 | + // button states |
|
| 1793 | + $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
| 1794 | + $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;} "; |
|
| 1795 | + $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.";} "; |
|
| 1796 | + $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;} "; |
|
| 1797 | + |
|
| 1798 | + |
|
| 1799 | + // dropdown's |
|
| 1800 | + $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
| 1801 | + |
|
| 1802 | + |
|
| 1803 | + // input states |
|
| 1804 | + $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
| 1805 | + |
|
| 1806 | + // page link |
|
| 1807 | + $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
| 1808 | + |
|
| 1809 | + return $output; |
|
| 1810 | + } |
|
| 1811 | + |
|
| 1812 | + public static function css_secondary($color_code,$compatibility){; |
|
| 1813 | + $color_code = sanitize_hex_color($color_code); |
|
| 1814 | + if(!$color_code){return '';} |
|
| 1815 | + /** |
|
| 1816 | + * c = color, b = background color, o = border-color, f = fill |
|
| 1817 | + */ |
|
| 1818 | + $selectors = array( |
|
| 1819 | + '.btn-secondary' => array('b','o'), |
|
| 1820 | + '.btn-secondary.disabled' => array('b','o'), |
|
| 1821 | + '.btn-secondary:disabled' => array('b','o'), |
|
| 1822 | + '.btn-outline-secondary' => array('c','o'), |
|
| 1823 | + '.btn-outline-secondary:hover' => array('b','o'), |
|
| 1824 | + '.btn-outline-secondary.disabled' => array('c'), |
|
| 1825 | + '.btn-outline-secondary:disabled' => array('c'), |
|
| 1826 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
| 1827 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
| 1828 | + '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
| 1829 | + '.badge-secondary' => array('b'), |
|
| 1830 | + '.alert-secondary' => array('b','o'), |
|
| 1831 | + '.btn-link.btn-secondary' => array('c'), |
|
| 1832 | + ); |
|
| 1833 | + |
|
| 1834 | + $important_selectors = array( |
|
| 1835 | + '.bg-secondary' => array('b','f'), |
|
| 1836 | + '.border-secondary' => array('o'), |
|
| 1837 | + '.text-secondary' => array('c'), |
|
| 1838 | + ); |
|
| 1839 | + |
|
| 1840 | + $color = array(); |
|
| 1841 | + $color_i = array(); |
|
| 1842 | + $background = array(); |
|
| 1843 | + $background_i = array(); |
|
| 1844 | + $border = array(); |
|
| 1845 | + $border_i = array(); |
|
| 1846 | + $fill = array(); |
|
| 1847 | + $fill_i = array(); |
|
| 1848 | + |
|
| 1849 | + $output = ''; |
|
| 1850 | + |
|
| 1851 | + // build rules into each type |
|
| 1852 | + foreach($selectors as $selector => $types){ |
|
| 1853 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1854 | + $types = array_combine($types,$types); |
|
| 1855 | + if(isset($types['c'])){$color[] = $selector;} |
|
| 1856 | + if(isset($types['b'])){$background[] = $selector;} |
|
| 1857 | + if(isset($types['o'])){$border[] = $selector;} |
|
| 1858 | + if(isset($types['f'])){$fill[] = $selector;} |
|
| 1859 | + } |
|
| 1860 | + |
|
| 1861 | + // build rules into each type |
|
| 1862 | + foreach($important_selectors as $selector => $types){ |
|
| 1863 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
| 1864 | + $types = array_combine($types,$types); |
|
| 1865 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
| 1866 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
| 1867 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
| 1868 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
| 1869 | + } |
|
| 1870 | + |
|
| 1871 | + // add any color rules |
|
| 1872 | + if(!empty($color)){ |
|
| 1873 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
| 1874 | + } |
|
| 1875 | + if(!empty($color_i)){ |
|
| 1876 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
| 1877 | + } |
|
| 1878 | + |
|
| 1879 | + // add any background color rules |
|
| 1880 | + if(!empty($background)){ |
|
| 1881 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
| 1882 | + } |
|
| 1883 | + if(!empty($background_i)){ |
|
| 1884 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
| 1885 | + } |
|
| 1886 | + |
|
| 1887 | + // add any border color rules |
|
| 1888 | + if(!empty($border)){ |
|
| 1889 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
| 1890 | + } |
|
| 1891 | + if(!empty($border_i)){ |
|
| 1892 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
| 1893 | + } |
|
| 1894 | + |
|
| 1895 | + // add any fill color rules |
|
| 1896 | + if(!empty($fill)){ |
|
| 1897 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
| 1898 | + } |
|
| 1899 | + if(!empty($fill_i)){ |
|
| 1900 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
| 1901 | + } |
|
| 1902 | + |
|
| 1903 | + |
|
| 1904 | + $prefix = $compatibility ? ".bsui " : ""; |
|
| 1905 | + |
|
| 1906 | + // darken |
|
| 1907 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
| 1908 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
| 1909 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
| 1910 | + |
|
| 1911 | + // lighten |
|
| 1912 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
| 1913 | + |
|
| 1914 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
| 1915 | + $op_25 = $color_code."40"; // 25% opacity |
|
| 2172 | 1916 | |
| 2173 | - $day_s3 = array(); |
|
| 2174 | - $day_s5 = array(); |
|
| 2175 | 1917 | |
| 2176 | - for ( $i = 1; $i <= 7; $i ++ ) { |
|
| 2177 | - $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
| 2178 | - $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
| 2179 | - } |
|
| 1918 | + // button states |
|
| 1919 | + $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
| 1920 | + $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;} "; |
|
| 1921 | + $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.";} "; |
|
| 1922 | + $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;} "; |
|
| 2180 | 1923 | |
| 2181 | - $month_s = array(); |
|
| 2182 | - $month_long = array(); |
|
| 2183 | 1924 | |
| 2184 | - for ( $i = 1; $i <= 12; $i ++ ) { |
|
| 2185 | - $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
| 2186 | - $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
| 2187 | - } |
|
| 1925 | + return $output; |
|
| 1926 | + } |
|
| 1927 | + |
|
| 1928 | + /** |
|
| 1929 | + * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
| 1930 | + * |
|
| 1931 | + * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
| 1932 | + * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
| 1933 | + * |
|
| 1934 | + * @return string |
|
| 1935 | + */ |
|
| 1936 | + public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
| 1937 | + $hexCode = ltrim($hexCode, '#'); |
|
| 1938 | + |
|
| 1939 | + if (strlen($hexCode) == 3) { |
|
| 1940 | + $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
| 1941 | + } |
|
| 1942 | + |
|
| 1943 | + $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
| 1944 | + |
|
| 1945 | + foreach ($hexCode as & $color) { |
|
| 1946 | + $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
| 1947 | + $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
| 1948 | + |
|
| 1949 | + $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
| 1950 | + } |
|
| 1951 | + |
|
| 1952 | + return '#' . implode($hexCode); |
|
| 1953 | + } |
|
| 1954 | + |
|
| 1955 | + /** |
|
| 1956 | + * Check if we should display examples. |
|
| 1957 | + */ |
|
| 1958 | + public function maybe_show_examples(){ |
|
| 1959 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
| 1960 | + echo "<head>"; |
|
| 1961 | + wp_head(); |
|
| 1962 | + echo "</head>"; |
|
| 1963 | + echo "<body>"; |
|
| 1964 | + echo $this->get_examples(); |
|
| 1965 | + echo "</body>"; |
|
| 1966 | + exit; |
|
| 1967 | + } |
|
| 1968 | + } |
|
| 1969 | + |
|
| 1970 | + /** |
|
| 1971 | + * Get developer examples. |
|
| 1972 | + * |
|
| 1973 | + * @return string |
|
| 1974 | + */ |
|
| 1975 | + public function get_examples(){ |
|
| 1976 | + $output = ''; |
|
| 1977 | + |
|
| 1978 | + |
|
| 1979 | + // open form |
|
| 1980 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
| 1981 | + |
|
| 1982 | + // input example |
|
| 1983 | + $output .= aui()->input(array( |
|
| 1984 | + 'type' => 'text', |
|
| 1985 | + 'id' => 'text-example', |
|
| 1986 | + 'name' => 'text-example', |
|
| 1987 | + 'placeholder' => 'text placeholder', |
|
| 1988 | + 'title' => 'Text input example', |
|
| 1989 | + 'value' => '', |
|
| 1990 | + 'required' => false, |
|
| 1991 | + 'help_text' => 'help text', |
|
| 1992 | + 'label' => 'Text input example label' |
|
| 1993 | + )); |
|
| 1994 | + |
|
| 1995 | + // input example |
|
| 1996 | + $output .= aui()->input(array( |
|
| 1997 | + 'type' => 'url', |
|
| 1998 | + 'id' => 'text-example2', |
|
| 1999 | + 'name' => 'text-example', |
|
| 2000 | + 'placeholder' => 'url placeholder', |
|
| 2001 | + 'title' => 'Text input example', |
|
| 2002 | + 'value' => '', |
|
| 2003 | + 'required' => false, |
|
| 2004 | + 'help_text' => 'help text', |
|
| 2005 | + 'label' => 'Text input example label' |
|
| 2006 | + )); |
|
| 2007 | + |
|
| 2008 | + // checkbox example |
|
| 2009 | + $output .= aui()->input(array( |
|
| 2010 | + 'type' => 'checkbox', |
|
| 2011 | + 'id' => 'checkbox-example', |
|
| 2012 | + 'name' => 'checkbox-example', |
|
| 2013 | + 'placeholder' => 'checkbox-example', |
|
| 2014 | + 'title' => 'Checkbox example', |
|
| 2015 | + 'value' => '1', |
|
| 2016 | + 'checked' => true, |
|
| 2017 | + 'required' => false, |
|
| 2018 | + 'help_text' => 'help text', |
|
| 2019 | + 'label' => 'Checkbox checked' |
|
| 2020 | + )); |
|
| 2021 | + |
|
| 2022 | + // checkbox example |
|
| 2023 | + $output .= aui()->input(array( |
|
| 2024 | + 'type' => 'checkbox', |
|
| 2025 | + 'id' => 'checkbox-example2', |
|
| 2026 | + 'name' => 'checkbox-example2', |
|
| 2027 | + 'placeholder' => 'checkbox-example', |
|
| 2028 | + 'title' => 'Checkbox example', |
|
| 2029 | + 'value' => '1', |
|
| 2030 | + 'checked' => false, |
|
| 2031 | + 'required' => false, |
|
| 2032 | + 'help_text' => 'help text', |
|
| 2033 | + 'label' => 'Checkbox un-checked' |
|
| 2034 | + )); |
|
| 2035 | + |
|
| 2036 | + // switch example |
|
| 2037 | + $output .= aui()->input(array( |
|
| 2038 | + 'type' => 'checkbox', |
|
| 2039 | + 'id' => 'switch-example', |
|
| 2040 | + 'name' => 'switch-example', |
|
| 2041 | + 'placeholder' => 'checkbox-example', |
|
| 2042 | + 'title' => 'Switch example', |
|
| 2043 | + 'value' => '1', |
|
| 2044 | + 'checked' => true, |
|
| 2045 | + 'switch' => true, |
|
| 2046 | + 'required' => false, |
|
| 2047 | + 'help_text' => 'help text', |
|
| 2048 | + 'label' => 'Switch on' |
|
| 2049 | + )); |
|
| 2050 | + |
|
| 2051 | + // switch example |
|
| 2052 | + $output .= aui()->input(array( |
|
| 2053 | + 'type' => 'checkbox', |
|
| 2054 | + 'id' => 'switch-example2', |
|
| 2055 | + 'name' => 'switch-example2', |
|
| 2056 | + 'placeholder' => 'checkbox-example', |
|
| 2057 | + 'title' => 'Switch example', |
|
| 2058 | + 'value' => '1', |
|
| 2059 | + 'checked' => false, |
|
| 2060 | + 'switch' => true, |
|
| 2061 | + 'required' => false, |
|
| 2062 | + 'help_text' => 'help text', |
|
| 2063 | + 'label' => 'Switch off' |
|
| 2064 | + )); |
|
| 2065 | + |
|
| 2066 | + // close form |
|
| 2067 | + $output .= "</form>"; |
|
| 2068 | + |
|
| 2069 | + return $output; |
|
| 2070 | + } |
|
| 2071 | + |
|
| 2072 | + /** |
|
| 2073 | + * Calendar params. |
|
| 2074 | + * |
|
| 2075 | + * @since 0.1.44 |
|
| 2076 | + * |
|
| 2077 | + * @return array Calendar params. |
|
| 2078 | + */ |
|
| 2079 | + public static function calendar_params() { |
|
| 2080 | + $params = array( |
|
| 2081 | + 'month_long_1' => __( 'January', 'aui' ), |
|
| 2082 | + 'month_long_2' => __( 'February', 'aui' ), |
|
| 2083 | + 'month_long_3' => __( 'March', 'aui' ), |
|
| 2084 | + 'month_long_4' => __( 'April', 'aui' ), |
|
| 2085 | + 'month_long_5' => __( 'May', 'aui' ), |
|
| 2086 | + 'month_long_6' => __( 'June', 'aui' ), |
|
| 2087 | + 'month_long_7' => __( 'July', 'aui' ), |
|
| 2088 | + 'month_long_8' => __( 'August', 'aui' ), |
|
| 2089 | + 'month_long_9' => __( 'September', 'aui' ), |
|
| 2090 | + 'month_long_10' => __( 'October', 'aui' ), |
|
| 2091 | + 'month_long_11' => __( 'November', 'aui' ), |
|
| 2092 | + 'month_long_12' => __( 'December', 'aui' ), |
|
| 2093 | + 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
| 2094 | + 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
| 2095 | + 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
| 2096 | + 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
| 2097 | + 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
| 2098 | + 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
| 2099 | + 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
| 2100 | + 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
| 2101 | + 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
| 2102 | + 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
| 2103 | + 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
| 2104 | + 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
| 2105 | + 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
| 2106 | + 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
| 2107 | + 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
| 2108 | + 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
| 2109 | + 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
| 2110 | + 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
| 2111 | + 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
| 2112 | + 'day_s2_1' => __( 'Su', 'aui' ), |
|
| 2113 | + 'day_s2_2' => __( 'Mo', 'aui' ), |
|
| 2114 | + 'day_s2_3' => __( 'Tu', 'aui' ), |
|
| 2115 | + 'day_s2_4' => __( 'We', 'aui' ), |
|
| 2116 | + 'day_s2_5' => __( 'Th', 'aui' ), |
|
| 2117 | + 'day_s2_6' => __( 'Fr', 'aui' ), |
|
| 2118 | + 'day_s2_7' => __( 'Sa', 'aui' ), |
|
| 2119 | + 'day_s3_1' => __( 'Sun', 'aui' ), |
|
| 2120 | + 'day_s3_2' => __( 'Mon', 'aui' ), |
|
| 2121 | + 'day_s3_3' => __( 'Tue', 'aui' ), |
|
| 2122 | + 'day_s3_4' => __( 'Wed', 'aui' ), |
|
| 2123 | + 'day_s3_5' => __( 'Thu', 'aui' ), |
|
| 2124 | + 'day_s3_6' => __( 'Fri', 'aui' ), |
|
| 2125 | + 'day_s3_7' => __( 'Sat', 'aui' ), |
|
| 2126 | + 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
| 2127 | + 'day_s5_2' => __( 'Monday', 'aui' ), |
|
| 2128 | + 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
| 2129 | + 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
| 2130 | + 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
| 2131 | + 'day_s5_6' => __( 'Friday', 'aui' ), |
|
| 2132 | + 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
| 2133 | + 'am_lower' => __( 'am', 'aui' ), |
|
| 2134 | + 'pm_lower' => __( 'pm', 'aui' ), |
|
| 2135 | + 'am_upper' => __( 'AM', 'aui' ), |
|
| 2136 | + 'pm_upper' => __( 'PM', 'aui' ), |
|
| 2137 | + 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
| 2138 | + 'time_24hr' => false, |
|
| 2139 | + 'year' => __( 'Year', 'aui' ), |
|
| 2140 | + 'hour' => __( 'Hour', 'aui' ), |
|
| 2141 | + 'minute' => __( 'Minute', 'aui' ), |
|
| 2142 | + 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
| 2143 | + 'rangeSeparator' => __( ' to ', 'aui' ), |
|
| 2144 | + 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
| 2145 | + 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
| 2146 | + ); |
|
| 2147 | + |
|
| 2148 | + return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
| 2149 | + } |
|
| 2150 | + |
|
| 2151 | + /** |
|
| 2152 | + * Flatpickr calendar localize. |
|
| 2153 | + * |
|
| 2154 | + * @since 0.1.44 |
|
| 2155 | + * |
|
| 2156 | + * @return string Calendar locale. |
|
| 2157 | + */ |
|
| 2158 | + public static function flatpickr_locale() { |
|
| 2159 | + $params = self::calendar_params(); |
|
| 2160 | + |
|
| 2161 | + if ( is_string( $params ) ) { |
|
| 2162 | + $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
| 2163 | + } else { |
|
| 2164 | + foreach ( (array) $params as $key => $value ) { |
|
| 2165 | + if ( ! is_scalar( $value ) ) { |
|
| 2166 | + continue; |
|
| 2167 | + } |
|
| 2168 | + |
|
| 2169 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2170 | + } |
|
| 2171 | + } |
|
| 2172 | + |
|
| 2173 | + $day_s3 = array(); |
|
| 2174 | + $day_s5 = array(); |
|
| 2175 | + |
|
| 2176 | + for ( $i = 1; $i <= 7; $i ++ ) { |
|
| 2177 | + $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
| 2178 | + $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
| 2179 | + } |
|
| 2180 | + |
|
| 2181 | + $month_s = array(); |
|
| 2182 | + $month_long = array(); |
|
| 2183 | + |
|
| 2184 | + for ( $i = 1; $i <= 12; $i ++ ) { |
|
| 2185 | + $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
| 2186 | + $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
| 2187 | + } |
|
| 2188 | 2188 | |
| 2189 | 2189 | ob_start(); |
| 2190 | 2190 | if ( 0 ) { ?><script><?php } ?> |
@@ -2226,189 +2226,189 @@ discard block |
||
| 2226 | 2226 | } |
| 2227 | 2227 | <?php if ( 0 ) { ?></script><?php } ?> |
| 2228 | 2228 | <?php |
| 2229 | - $locale = ob_get_clean(); |
|
| 2229 | + $locale = ob_get_clean(); |
|
| 2230 | 2230 | |
| 2231 | - return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
| 2232 | - } |
|
| 2231 | + return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
| 2232 | + } |
|
| 2233 | 2233 | |
| 2234 | - /** |
|
| 2235 | - * Select2 JS params. |
|
| 2236 | - * |
|
| 2237 | - * @since 0.1.44 |
|
| 2238 | - * |
|
| 2239 | - * @return array Select2 JS params. |
|
| 2240 | - */ |
|
| 2241 | - public static function select2_params() { |
|
| 2242 | - $params = array( |
|
| 2243 | - 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
| 2244 | - 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
| 2245 | - 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
| 2246 | - 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
| 2247 | - 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
| 2248 | - 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
| 2249 | - 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
| 2250 | - 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
| 2251 | - 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
| 2252 | - 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
| 2253 | - 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
| 2254 | - ); |
|
| 2255 | - |
|
| 2256 | - return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
| 2257 | - } |
|
| 2234 | + /** |
|
| 2235 | + * Select2 JS params. |
|
| 2236 | + * |
|
| 2237 | + * @since 0.1.44 |
|
| 2238 | + * |
|
| 2239 | + * @return array Select2 JS params. |
|
| 2240 | + */ |
|
| 2241 | + public static function select2_params() { |
|
| 2242 | + $params = array( |
|
| 2243 | + 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
| 2244 | + 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
| 2245 | + 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
| 2246 | + 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
| 2247 | + 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
| 2248 | + 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
| 2249 | + 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
| 2250 | + 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
| 2251 | + 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
| 2252 | + 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
| 2253 | + 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
| 2254 | + ); |
|
| 2255 | + |
|
| 2256 | + return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
| 2257 | + } |
|
| 2258 | 2258 | |
| 2259 | - /** |
|
| 2260 | - * Select2 JS localize. |
|
| 2261 | - * |
|
| 2262 | - * @since 0.1.44 |
|
| 2263 | - * |
|
| 2264 | - * @return string Select2 JS locale. |
|
| 2265 | - */ |
|
| 2266 | - public static function select2_locale() { |
|
| 2267 | - $params = self::select2_params(); |
|
| 2268 | - |
|
| 2269 | - foreach ( (array) $params as $key => $value ) { |
|
| 2270 | - if ( ! is_scalar( $value ) ) { |
|
| 2271 | - continue; |
|
| 2272 | - } |
|
| 2259 | + /** |
|
| 2260 | + * Select2 JS localize. |
|
| 2261 | + * |
|
| 2262 | + * @since 0.1.44 |
|
| 2263 | + * |
|
| 2264 | + * @return string Select2 JS locale. |
|
| 2265 | + */ |
|
| 2266 | + public static function select2_locale() { |
|
| 2267 | + $params = self::select2_params(); |
|
| 2268 | + |
|
| 2269 | + foreach ( (array) $params as $key => $value ) { |
|
| 2270 | + if ( ! is_scalar( $value ) ) { |
|
| 2271 | + continue; |
|
| 2272 | + } |
|
| 2273 | 2273 | |
| 2274 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2275 | - } |
|
| 2274 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2275 | + } |
|
| 2276 | 2276 | |
| 2277 | - $locale = json_encode( $params ); |
|
| 2277 | + $locale = json_encode( $params ); |
|
| 2278 | 2278 | |
| 2279 | - return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
| 2280 | - } |
|
| 2279 | + return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
| 2280 | + } |
|
| 2281 | 2281 | |
| 2282 | - /** |
|
| 2283 | - * Time ago JS localize. |
|
| 2284 | - * |
|
| 2285 | - * @since 0.1.47 |
|
| 2286 | - * |
|
| 2287 | - * @return string Time ago JS locale. |
|
| 2288 | - */ |
|
| 2289 | - public static function timeago_locale() { |
|
| 2290 | - $params = array( |
|
| 2291 | - 'prefix_ago' => '', |
|
| 2292 | - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
| 2293 | - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
| 2294 | - 'suffix_after' => '', |
|
| 2295 | - 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
| 2296 | - 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
| 2297 | - 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
| 2298 | - 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
| 2299 | - 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
| 2300 | - 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
| 2301 | - 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
| 2302 | - 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
| 2303 | - 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
| 2304 | - 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
| 2305 | - 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
| 2306 | - ); |
|
| 2307 | - |
|
| 2308 | - $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
| 2309 | - |
|
| 2310 | - foreach ( (array) $params as $key => $value ) { |
|
| 2311 | - if ( ! is_scalar( $value ) ) { |
|
| 2312 | - continue; |
|
| 2313 | - } |
|
| 2282 | + /** |
|
| 2283 | + * Time ago JS localize. |
|
| 2284 | + * |
|
| 2285 | + * @since 0.1.47 |
|
| 2286 | + * |
|
| 2287 | + * @return string Time ago JS locale. |
|
| 2288 | + */ |
|
| 2289 | + public static function timeago_locale() { |
|
| 2290 | + $params = array( |
|
| 2291 | + 'prefix_ago' => '', |
|
| 2292 | + 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
| 2293 | + 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
| 2294 | + 'suffix_after' => '', |
|
| 2295 | + 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
| 2296 | + 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
| 2297 | + 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
| 2298 | + 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
| 2299 | + 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
| 2300 | + 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
| 2301 | + 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
| 2302 | + 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
| 2303 | + 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
| 2304 | + 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
| 2305 | + 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
| 2306 | + ); |
|
| 2307 | + |
|
| 2308 | + $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
| 2309 | + |
|
| 2310 | + foreach ( (array) $params as $key => $value ) { |
|
| 2311 | + if ( ! is_scalar( $value ) ) { |
|
| 2312 | + continue; |
|
| 2313 | + } |
|
| 2314 | 2314 | |
| 2315 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2316 | - } |
|
| 2315 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
| 2316 | + } |
|
| 2317 | 2317 | |
| 2318 | - $locale = json_encode( $params ); |
|
| 2318 | + $locale = json_encode( $params ); |
|
| 2319 | 2319 | |
| 2320 | - return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
| 2321 | - } |
|
| 2320 | + return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
| 2321 | + } |
|
| 2322 | 2322 | |
| 2323 | - /** |
|
| 2324 | - * JavaScript Minifier |
|
| 2325 | - * |
|
| 2326 | - * @param $input |
|
| 2327 | - * |
|
| 2328 | - * @return mixed |
|
| 2329 | - */ |
|
| 2330 | - public static function minify_js($input) { |
|
| 2331 | - if(trim($input) === "") return $input; |
|
| 2332 | - return preg_replace( |
|
| 2333 | - array( |
|
| 2334 | - // Remove comment(s) |
|
| 2335 | - '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
| 2336 | - // Remove white-space(s) outside the string and regex |
|
| 2337 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
| 2338 | - // Remove the last semicolon |
|
| 2339 | - '#;+\}#', |
|
| 2340 | - // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
| 2341 | - '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
| 2342 | - // --ibid. From `foo['bar']` to `foo.bar` |
|
| 2343 | - '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
| 2344 | - ), |
|
| 2345 | - array( |
|
| 2346 | - '$1', |
|
| 2347 | - '$1$2', |
|
| 2348 | - '}', |
|
| 2349 | - '$1$3', |
|
| 2350 | - '$1.$3' |
|
| 2351 | - ), |
|
| 2352 | - $input); |
|
| 2353 | - } |
|
| 2323 | + /** |
|
| 2324 | + * JavaScript Minifier |
|
| 2325 | + * |
|
| 2326 | + * @param $input |
|
| 2327 | + * |
|
| 2328 | + * @return mixed |
|
| 2329 | + */ |
|
| 2330 | + public static function minify_js($input) { |
|
| 2331 | + if(trim($input) === "") return $input; |
|
| 2332 | + return preg_replace( |
|
| 2333 | + array( |
|
| 2334 | + // Remove comment(s) |
|
| 2335 | + '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
| 2336 | + // Remove white-space(s) outside the string and regex |
|
| 2337 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
| 2338 | + // Remove the last semicolon |
|
| 2339 | + '#;+\}#', |
|
| 2340 | + // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
| 2341 | + '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
| 2342 | + // --ibid. From `foo['bar']` to `foo.bar` |
|
| 2343 | + '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
| 2344 | + ), |
|
| 2345 | + array( |
|
| 2346 | + '$1', |
|
| 2347 | + '$1$2', |
|
| 2348 | + '}', |
|
| 2349 | + '$1$3', |
|
| 2350 | + '$1.$3' |
|
| 2351 | + ), |
|
| 2352 | + $input); |
|
| 2353 | + } |
|
| 2354 | 2354 | |
| 2355 | - /** |
|
| 2356 | - * Minify CSS |
|
| 2357 | - * |
|
| 2358 | - * @param $input |
|
| 2359 | - * |
|
| 2360 | - * @return mixed |
|
| 2361 | - */ |
|
| 2362 | - public static function minify_css($input) { |
|
| 2363 | - if(trim($input) === "") return $input; |
|
| 2364 | - return preg_replace( |
|
| 2365 | - array( |
|
| 2366 | - // Remove comment(s) |
|
| 2367 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
| 2368 | - // Remove unused white-space(s) |
|
| 2369 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
| 2370 | - // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
| 2371 | - '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
| 2372 | - // Replace `:0 0 0 0` with `:0` |
|
| 2373 | - '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
| 2374 | - // Replace `background-position:0` with `background-position:0 0` |
|
| 2375 | - '#(background-position):0(?=[;\}])#si', |
|
| 2376 | - // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
| 2377 | - '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
| 2378 | - // Minify string value |
|
| 2379 | - '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
| 2380 | - '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
| 2381 | - // Minify HEX color code |
|
| 2382 | - '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
| 2383 | - // Replace `(border|outline):none` with `(border|outline):0` |
|
| 2384 | - '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
| 2385 | - // Remove empty selector(s) |
|
| 2386 | - '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
| 2387 | - ), |
|
| 2388 | - array( |
|
| 2389 | - '$1', |
|
| 2390 | - '$1$2$3$4$5$6$7', |
|
| 2391 | - '$1', |
|
| 2392 | - ':0', |
|
| 2393 | - '$1:0 0', |
|
| 2394 | - '.$1', |
|
| 2395 | - '$1$3', |
|
| 2396 | - '$1$2$4$5', |
|
| 2397 | - '$1$2$3', |
|
| 2398 | - '$1:0', |
|
| 2399 | - '$1$2' |
|
| 2400 | - ), |
|
| 2401 | - $input); |
|
| 2402 | - } |
|
| 2355 | + /** |
|
| 2356 | + * Minify CSS |
|
| 2357 | + * |
|
| 2358 | + * @param $input |
|
| 2359 | + * |
|
| 2360 | + * @return mixed |
|
| 2361 | + */ |
|
| 2362 | + public static function minify_css($input) { |
|
| 2363 | + if(trim($input) === "") return $input; |
|
| 2364 | + return preg_replace( |
|
| 2365 | + array( |
|
| 2366 | + // Remove comment(s) |
|
| 2367 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
| 2368 | + // Remove unused white-space(s) |
|
| 2369 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
| 2370 | + // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
| 2371 | + '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
| 2372 | + // Replace `:0 0 0 0` with `:0` |
|
| 2373 | + '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
| 2374 | + // Replace `background-position:0` with `background-position:0 0` |
|
| 2375 | + '#(background-position):0(?=[;\}])#si', |
|
| 2376 | + // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
| 2377 | + '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
| 2378 | + // Minify string value |
|
| 2379 | + '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
| 2380 | + '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
| 2381 | + // Minify HEX color code |
|
| 2382 | + '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
| 2383 | + // Replace `(border|outline):none` with `(border|outline):0` |
|
| 2384 | + '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
| 2385 | + // Remove empty selector(s) |
|
| 2386 | + '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
| 2387 | + ), |
|
| 2388 | + array( |
|
| 2389 | + '$1', |
|
| 2390 | + '$1$2$3$4$5$6$7', |
|
| 2391 | + '$1', |
|
| 2392 | + ':0', |
|
| 2393 | + '$1:0 0', |
|
| 2394 | + '.$1', |
|
| 2395 | + '$1$3', |
|
| 2396 | + '$1$2$4$5', |
|
| 2397 | + '$1$2$3', |
|
| 2398 | + '$1:0', |
|
| 2399 | + '$1$2' |
|
| 2400 | + ), |
|
| 2401 | + $input); |
|
| 2402 | + } |
|
| 2403 | 2403 | |
| 2404 | - /** |
|
| 2405 | - * Get the conditional fields JavaScript. |
|
| 2406 | - * |
|
| 2407 | - * @return mixed |
|
| 2408 | - */ |
|
| 2409 | - public function conditional_fields_js() { |
|
| 2410 | - ob_start(); |
|
| 2411 | - ?> |
|
| 2404 | + /** |
|
| 2405 | + * Get the conditional fields JavaScript. |
|
| 2406 | + * |
|
| 2407 | + * @return mixed |
|
| 2408 | + */ |
|
| 2409 | + public function conditional_fields_js() { |
|
| 2410 | + ob_start(); |
|
| 2411 | + ?> |
|
| 2412 | 2412 | <script> |
| 2413 | 2413 | /** |
| 2414 | 2414 | * Conditional Fields |
@@ -2912,14 +2912,14 @@ discard block |
||
| 2912 | 2912 | <?php do_action( 'aui_conditional_fields_js', $this ); ?> |
| 2913 | 2913 | </script> |
| 2914 | 2914 | <?php |
| 2915 | - $output = ob_get_clean(); |
|
| 2915 | + $output = ob_get_clean(); |
|
| 2916 | 2916 | |
| 2917 | - return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
| 2918 | - } |
|
| 2919 | - } |
|
| 2917 | + return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
| 2918 | + } |
|
| 2919 | + } |
|
| 2920 | 2920 | |
| 2921 | - /** |
|
| 2922 | - * Run the class if found. |
|
| 2923 | - */ |
|
| 2924 | - AyeCode_UI_Settings::instance(); |
|
| 2921 | + /** |
|
| 2922 | + * Run the class if found. |
|
| 2923 | + */ |
|
| 2924 | + AyeCode_UI_Settings::instance(); |
|
| 2925 | 2925 | } |
| 2926 | 2926 | \ No newline at end of file |
@@ -7,40 +7,40 @@ |
||
| 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.70"; |
|
| 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.70"; |
|
| 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 |
@@ -14,143 +14,143 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Subscriptions_Widget extends WP_Super_Duper { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * Register the widget with WordPress. |
|
| 19 | - * |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - |
|
| 23 | - $options = array( |
|
| 24 | - 'textdomain' => 'invoicing', |
|
| 25 | - 'block-icon' => 'controls-repeat', |
|
| 26 | - 'block-category' => 'widgets', |
|
| 27 | - 'block-keywords' => "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | - 'class_name' => __CLASS__, |
|
| 29 | - 'base_id' => 'wpinv_subscriptions', |
|
| 30 | - 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | - 'widget_ops' => array( |
|
| 32 | - 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | - 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | - ), |
|
| 35 | - 'arguments' => array( |
|
| 36 | - 'title' => array( |
|
| 37 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | - 'type' => 'text', |
|
| 40 | - 'desc_tip' => true, |
|
| 41 | - 'default' => '', |
|
| 42 | - 'advanced' => false, |
|
| 43 | - ), |
|
| 44 | - ), |
|
| 45 | - |
|
| 46 | - ); |
|
| 47 | - |
|
| 48 | - parent::__construct( $options ); |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - /** |
|
| 52 | - * Retrieves current user's subscriptions. |
|
| 53 | - * |
|
| 54 | - * @return GetPaid_Subscriptions_Query |
|
| 55 | - */ |
|
| 56 | - public function get_subscriptions() { |
|
| 57 | - |
|
| 58 | - // Prepare license args. |
|
| 59 | - $args = array( |
|
| 60 | - 'customer_in' => get_current_user_id(), |
|
| 61 | - 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 62 | - ); |
|
| 63 | - |
|
| 64 | - return new GetPaid_Subscriptions_Query( $args ); |
|
| 65 | - |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - /** |
|
| 69 | - * The Super block output function. |
|
| 70 | - * |
|
| 71 | - * @param array $args |
|
| 72 | - * @param array $widget_args |
|
| 73 | - * @param string $content |
|
| 74 | - * |
|
| 75 | - * @return mixed|string|bool |
|
| 76 | - */ |
|
| 77 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 78 | - |
|
| 79 | - // Ensure that the user is logged in. |
|
| 80 | - if ( ! is_user_logged_in() ) { |
|
| 81 | - |
|
| 82 | - return aui()->alert( |
|
| 83 | - array( |
|
| 84 | - 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 85 | - 'type' => 'error', |
|
| 86 | - ) |
|
| 87 | - ); |
|
| 88 | - |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - // Are we displaying a single subscription? |
|
| 92 | - if ( isset( $_GET['subscription'] ) ) { |
|
| 93 | - return $this->display_single_subscription( intval( $_GET['subscription'] ) ); |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - // Retrieve the user's subscriptions. |
|
| 97 | - $subscriptions = $this->get_subscriptions(); |
|
| 98 | - |
|
| 99 | - // Start the output buffer. |
|
| 100 | - ob_start(); |
|
| 101 | - |
|
| 102 | - // Backwards compatibility. |
|
| 103 | - do_action( 'wpinv_before_user_subscriptions' ); |
|
| 104 | - |
|
| 105 | - // Display errors and notices. |
|
| 106 | - wpinv_print_errors(); |
|
| 107 | - |
|
| 108 | - do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 109 | - |
|
| 110 | - // Print the table header. |
|
| 111 | - $this->print_table_header(); |
|
| 112 | - |
|
| 113 | - // Print table body. |
|
| 114 | - $this->print_table_body( $subscriptions->get_results() ); |
|
| 115 | - |
|
| 116 | - // Print table footer. |
|
| 117 | - $this->print_table_footer(); |
|
| 118 | - |
|
| 119 | - // Print the navigation. |
|
| 120 | - $this->print_navigation( $subscriptions->get_total() ); |
|
| 121 | - |
|
| 122 | - // Backwards compatibility. |
|
| 123 | - do_action( 'wpinv_after_user_subscriptions' ); |
|
| 124 | - |
|
| 125 | - // Return the output. |
|
| 126 | - return ob_get_clean(); |
|
| 127 | - |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * Retrieves the subscription columns. |
|
| 132 | - * |
|
| 133 | - * @return array |
|
| 134 | - */ |
|
| 135 | - public function get_subscriptions_table_columns() { |
|
| 17 | + /** |
|
| 18 | + * Register the widget with WordPress. |
|
| 19 | + * |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + |
|
| 23 | + $options = array( |
|
| 24 | + 'textdomain' => 'invoicing', |
|
| 25 | + 'block-icon' => 'controls-repeat', |
|
| 26 | + 'block-category' => 'widgets', |
|
| 27 | + 'block-keywords' => "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | + 'class_name' => __CLASS__, |
|
| 29 | + 'base_id' => 'wpinv_subscriptions', |
|
| 30 | + 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | + 'widget_ops' => array( |
|
| 32 | + 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | + 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | + ), |
|
| 35 | + 'arguments' => array( |
|
| 36 | + 'title' => array( |
|
| 37 | + 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | + 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | + 'type' => 'text', |
|
| 40 | + 'desc_tip' => true, |
|
| 41 | + 'default' => '', |
|
| 42 | + 'advanced' => false, |
|
| 43 | + ), |
|
| 44 | + ), |
|
| 45 | + |
|
| 46 | + ); |
|
| 47 | + |
|
| 48 | + parent::__construct( $options ); |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + /** |
|
| 52 | + * Retrieves current user's subscriptions. |
|
| 53 | + * |
|
| 54 | + * @return GetPaid_Subscriptions_Query |
|
| 55 | + */ |
|
| 56 | + public function get_subscriptions() { |
|
| 57 | + |
|
| 58 | + // Prepare license args. |
|
| 59 | + $args = array( |
|
| 60 | + 'customer_in' => get_current_user_id(), |
|
| 61 | + 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 62 | + ); |
|
| 63 | + |
|
| 64 | + return new GetPaid_Subscriptions_Query( $args ); |
|
| 65 | + |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + /** |
|
| 69 | + * The Super block output function. |
|
| 70 | + * |
|
| 71 | + * @param array $args |
|
| 72 | + * @param array $widget_args |
|
| 73 | + * @param string $content |
|
| 74 | + * |
|
| 75 | + * @return mixed|string|bool |
|
| 76 | + */ |
|
| 77 | + public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 78 | + |
|
| 79 | + // Ensure that the user is logged in. |
|
| 80 | + if ( ! is_user_logged_in() ) { |
|
| 81 | + |
|
| 82 | + return aui()->alert( |
|
| 83 | + array( |
|
| 84 | + 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 85 | + 'type' => 'error', |
|
| 86 | + ) |
|
| 87 | + ); |
|
| 88 | + |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + // Are we displaying a single subscription? |
|
| 92 | + if ( isset( $_GET['subscription'] ) ) { |
|
| 93 | + return $this->display_single_subscription( intval( $_GET['subscription'] ) ); |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + // Retrieve the user's subscriptions. |
|
| 97 | + $subscriptions = $this->get_subscriptions(); |
|
| 98 | + |
|
| 99 | + // Start the output buffer. |
|
| 100 | + ob_start(); |
|
| 101 | + |
|
| 102 | + // Backwards compatibility. |
|
| 103 | + do_action( 'wpinv_before_user_subscriptions' ); |
|
| 104 | + |
|
| 105 | + // Display errors and notices. |
|
| 106 | + wpinv_print_errors(); |
|
| 107 | + |
|
| 108 | + do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 109 | + |
|
| 110 | + // Print the table header. |
|
| 111 | + $this->print_table_header(); |
|
| 112 | + |
|
| 113 | + // Print table body. |
|
| 114 | + $this->print_table_body( $subscriptions->get_results() ); |
|
| 115 | + |
|
| 116 | + // Print table footer. |
|
| 117 | + $this->print_table_footer(); |
|
| 118 | + |
|
| 119 | + // Print the navigation. |
|
| 120 | + $this->print_navigation( $subscriptions->get_total() ); |
|
| 121 | + |
|
| 122 | + // Backwards compatibility. |
|
| 123 | + do_action( 'wpinv_after_user_subscriptions' ); |
|
| 124 | + |
|
| 125 | + // Return the output. |
|
| 126 | + return ob_get_clean(); |
|
| 127 | + |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * Retrieves the subscription columns. |
|
| 132 | + * |
|
| 133 | + * @return array |
|
| 134 | + */ |
|
| 135 | + public function get_subscriptions_table_columns() { |
|
| 136 | 136 | |
| 137 | - $columns = array( |
|
| 138 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 139 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 140 | - 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 141 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 142 | - ); |
|
| 137 | + $columns = array( |
|
| 138 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 139 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 140 | + 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 141 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 142 | + ); |
|
| 143 | 143 | |
| 144 | - return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 145 | - } |
|
| 144 | + return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 145 | + } |
|
| 146 | 146 | |
| 147 | - /** |
|
| 148 | - * Displays the table header. |
|
| 149 | - * |
|
| 150 | - */ |
|
| 151 | - public function print_table_header() { |
|
| 147 | + /** |
|
| 148 | + * Displays the table header. |
|
| 149 | + * |
|
| 150 | + */ |
|
| 151 | + public function print_table_header() { |
|
| 152 | 152 | |
| 153 | - ?> |
|
| 153 | + ?> |
|
| 154 | 154 | |
| 155 | 155 | <table class="table table-bordered table-striped"> |
| 156 | 156 | |
@@ -166,122 +166,122 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | <?php |
| 168 | 168 | |
| 169 | - } |
|
| 169 | + } |
|
| 170 | 170 | |
| 171 | - /** |
|
| 172 | - * Displays the table body. |
|
| 173 | - * |
|
| 174 | - * @param WPInv_Subscription[] $subscriptions |
|
| 175 | - */ |
|
| 176 | - public function print_table_body( $subscriptions ) { |
|
| 171 | + /** |
|
| 172 | + * Displays the table body. |
|
| 173 | + * |
|
| 174 | + * @param WPInv_Subscription[] $subscriptions |
|
| 175 | + */ |
|
| 176 | + public function print_table_body( $subscriptions ) { |
|
| 177 | 177 | |
| 178 | - if ( empty( $subscriptions ) ) { |
|
| 179 | - $this->print_table_body_no_subscriptions(); |
|
| 180 | - } else { |
|
| 181 | - $this->print_table_body_subscriptions( $subscriptions ); |
|
| 182 | - } |
|
| 178 | + if ( empty( $subscriptions ) ) { |
|
| 179 | + $this->print_table_body_no_subscriptions(); |
|
| 180 | + } else { |
|
| 181 | + $this->print_table_body_subscriptions( $subscriptions ); |
|
| 182 | + } |
|
| 183 | 183 | |
| 184 | - } |
|
| 184 | + } |
|
| 185 | 185 | |
| 186 | - /** |
|
| 187 | - * Displays the table body if no subscriptions were found. |
|
| 188 | - * |
|
| 189 | - */ |
|
| 190 | - public function print_table_body_no_subscriptions() { |
|
| 186 | + /** |
|
| 187 | + * Displays the table body if no subscriptions were found. |
|
| 188 | + * |
|
| 189 | + */ |
|
| 190 | + public function print_table_body_no_subscriptions() { |
|
| 191 | 191 | |
| 192 | - ?> |
|
| 192 | + ?> |
|
| 193 | 193 | <tbody> |
| 194 | 194 | |
| 195 | 195 | <tr> |
| 196 | 196 | <td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>"> |
| 197 | 197 | |
| 198 | 198 | <?php |
| 199 | - aui()->alert( |
|
| 200 | - array( |
|
| 201 | - 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 202 | - 'type' => 'warning', |
|
| 203 | - ), |
|
| 199 | + aui()->alert( |
|
| 200 | + array( |
|
| 201 | + 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 202 | + 'type' => 'warning', |
|
| 203 | + ), |
|
| 204 | 204 | true |
| 205 | - ); |
|
| 206 | - ?> |
|
| 205 | + ); |
|
| 206 | + ?> |
|
| 207 | 207 | |
| 208 | 208 | </td> |
| 209 | 209 | </tr> |
| 210 | 210 | |
| 211 | 211 | </tbody> |
| 212 | 212 | <?php |
| 213 | - } |
|
| 213 | + } |
|
| 214 | 214 | |
| 215 | - /** |
|
| 216 | - * Displays the table body if subscriptions were found. |
|
| 217 | - * |
|
| 218 | - * @param WPInv_Subscription[] $subscriptions |
|
| 219 | - */ |
|
| 220 | - public function print_table_body_subscriptions( $subscriptions ) { |
|
| 215 | + /** |
|
| 216 | + * Displays the table body if subscriptions were found. |
|
| 217 | + * |
|
| 218 | + * @param WPInv_Subscription[] $subscriptions |
|
| 219 | + */ |
|
| 220 | + public function print_table_body_subscriptions( $subscriptions ) { |
|
| 221 | 221 | |
| 222 | - ?> |
|
| 222 | + ?> |
|
| 223 | 223 | <tbody> |
| 224 | 224 | |
| 225 | 225 | <?php foreach ( $subscriptions as $subscription ) : ?> |
| 226 | 226 | <tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>"> |
| 227 | 227 | <?php |
| 228 | - wpinv_get_template( |
|
| 229 | - 'subscriptions/subscriptions-table-row.php', |
|
| 230 | - array( |
|
| 231 | - 'subscription' => $subscription, |
|
| 232 | - 'widget' => $this, |
|
| 233 | - ) |
|
| 234 | - ); |
|
| 235 | - ?> |
|
| 228 | + wpinv_get_template( |
|
| 229 | + 'subscriptions/subscriptions-table-row.php', |
|
| 230 | + array( |
|
| 231 | + 'subscription' => $subscription, |
|
| 232 | + 'widget' => $this, |
|
| 233 | + ) |
|
| 234 | + ); |
|
| 235 | + ?> |
|
| 236 | 236 | </tr> |
| 237 | 237 | <?php endforeach; ?> |
| 238 | 238 | |
| 239 | 239 | </tbody> |
| 240 | 240 | <?php |
| 241 | - } |
|
| 242 | - |
|
| 243 | - /** |
|
| 244 | - * Adds row actions to a column |
|
| 245 | - * |
|
| 246 | - * @param string $content column content |
|
| 247 | - * @param WPInv_Subscription $subscription |
|
| 248 | - * @since 1.0.0 |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function add_row_actions( $content, $subscription ) { |
|
| 252 | - |
|
| 253 | - // Prepare row actions. |
|
| 254 | - $actions = array(); |
|
| 255 | - |
|
| 256 | - // View subscription action. |
|
| 257 | - $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 258 | - $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
| 259 | - $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 260 | - |
|
| 261 | - // Filter the actions. |
|
| 262 | - $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 263 | - |
|
| 264 | - $sanitized = array(); |
|
| 265 | - foreach ( $actions as $key => $action ) { |
|
| 266 | - $key = sanitize_html_class( $key ); |
|
| 267 | - $action = wp_kses_post( $action ); |
|
| 268 | - $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 272 | - $row_actions .= implode( ' | ', $sanitized ); |
|
| 273 | - $row_actions .= '</small>'; |
|
| 274 | - |
|
| 275 | - return $content . $row_actions; |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - /** |
|
| 279 | - * Displays the table footer. |
|
| 280 | - * |
|
| 281 | - */ |
|
| 282 | - public function print_table_footer() { |
|
| 283 | - |
|
| 284 | - ?> |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + /** |
|
| 244 | + * Adds row actions to a column |
|
| 245 | + * |
|
| 246 | + * @param string $content column content |
|
| 247 | + * @param WPInv_Subscription $subscription |
|
| 248 | + * @since 1.0.0 |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function add_row_actions( $content, $subscription ) { |
|
| 252 | + |
|
| 253 | + // Prepare row actions. |
|
| 254 | + $actions = array(); |
|
| 255 | + |
|
| 256 | + // View subscription action. |
|
| 257 | + $view_url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 258 | + $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) ); |
|
| 259 | + $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 260 | + |
|
| 261 | + // Filter the actions. |
|
| 262 | + $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 263 | + |
|
| 264 | + $sanitized = array(); |
|
| 265 | + foreach ( $actions as $key => $action ) { |
|
| 266 | + $key = sanitize_html_class( $key ); |
|
| 267 | + $action = wp_kses_post( $action ); |
|
| 268 | + $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 272 | + $row_actions .= implode( ' | ', $sanitized ); |
|
| 273 | + $row_actions .= '</small>'; |
|
| 274 | + |
|
| 275 | + return $content . $row_actions; |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + /** |
|
| 279 | + * Displays the table footer. |
|
| 280 | + * |
|
| 281 | + */ |
|
| 282 | + public function print_table_footer() { |
|
| 283 | + |
|
| 284 | + ?> |
|
| 285 | 285 | |
| 286 | 286 | <tfoot> |
| 287 | 287 | <tr> |
@@ -296,144 +296,144 @@ discard block |
||
| 296 | 296 | </table> |
| 297 | 297 | <?php |
| 298 | 298 | |
| 299 | - } |
|
| 299 | + } |
|
| 300 | 300 | |
| 301 | - /** |
|
| 302 | - * Displays the navigation. |
|
| 303 | - * |
|
| 304 | - * @param int $total |
|
| 305 | - */ |
|
| 306 | - public function print_navigation( $total ) { |
|
| 301 | + /** |
|
| 302 | + * Displays the navigation. |
|
| 303 | + * |
|
| 304 | + * @param int $total |
|
| 305 | + */ |
|
| 306 | + public function print_navigation( $total ) { |
|
| 307 | 307 | |
| 308 | - if ( $total < 1 ) { |
|
| 308 | + if ( $total < 1 ) { |
|
| 309 | 309 | |
| 310 | - // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 311 | - $args = array( |
|
| 312 | - 'customer_in' => get_current_user_id(), |
|
| 313 | - 'fields' => 'id', |
|
| 314 | - ); |
|
| 310 | + // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 311 | + $args = array( |
|
| 312 | + 'customer_in' => get_current_user_id(), |
|
| 313 | + 'fields' => 'id', |
|
| 314 | + ); |
|
| 315 | 315 | |
| 316 | - $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 317 | - $total = $count_query->get_total(); |
|
| 318 | - } |
|
| 316 | + $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 317 | + $total = $count_query->get_total(); |
|
| 318 | + } |
|
| 319 | 319 | |
| 320 | - // Abort if we do not have pages. |
|
| 321 | - if ( 2 > $total ) { |
|
| 322 | - return; |
|
| 323 | - } |
|
| 320 | + // Abort if we do not have pages. |
|
| 321 | + if ( 2 > $total ) { |
|
| 322 | + return; |
|
| 323 | + } |
|
| 324 | 324 | |
| 325 | - ?> |
|
| 325 | + ?> |
|
| 326 | 326 | |
| 327 | 327 | <div class="getpaid-subscriptions-pagination"> |
| 328 | 328 | <?php |
| 329 | - $big = 999999; |
|
| 330 | - |
|
| 331 | - echo wp_kses_post( |
|
| 332 | - getpaid_paginate_links( |
|
| 333 | - array( |
|
| 334 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 335 | - 'format' => '?paged=%#%', |
|
| 336 | - 'total' => (int) ceil( $total / 10 ), |
|
| 337 | - ) |
|
| 338 | - ) |
|
| 339 | - ); |
|
| 340 | - ?> |
|
| 329 | + $big = 999999; |
|
| 330 | + |
|
| 331 | + echo wp_kses_post( |
|
| 332 | + getpaid_paginate_links( |
|
| 333 | + array( |
|
| 334 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 335 | + 'format' => '?paged=%#%', |
|
| 336 | + 'total' => (int) ceil( $total / 10 ), |
|
| 337 | + ) |
|
| 338 | + ) |
|
| 339 | + ); |
|
| 340 | + ?> |
|
| 341 | 341 | </div> |
| 342 | 342 | |
| 343 | 343 | <?php |
| 344 | - } |
|
| 345 | - |
|
| 346 | - /** |
|
| 347 | - * Returns a single subscription's columns. |
|
| 348 | - * |
|
| 349 | - * @param WPInv_Subscription $subscription |
|
| 350 | - * |
|
| 351 | - * @return array |
|
| 352 | - */ |
|
| 353 | - public function get_single_subscription_columns( $subscription ) { |
|
| 354 | - |
|
| 355 | - // Prepare subscription detail columns. |
|
| 356 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
| 357 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 358 | - $fields = apply_filters( |
|
| 359 | - 'getpaid_single_subscription_details_fields', |
|
| 360 | - array( |
|
| 361 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 362 | - 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 363 | - 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 364 | - 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 365 | - 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 366 | - 'payments' => __( 'Payments', 'invoicing' ), |
|
| 367 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 368 | - ), |
|
| 369 | - $subscription |
|
| 370 | - ); |
|
| 371 | - |
|
| 372 | - if ( isset( $fields['expiry_date'] ) ) { |
|
| 373 | - |
|
| 374 | - if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 375 | - $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - if ( 'pending' == $subscription->get_status() ) { |
|
| 379 | - unset( $fields['expiry_date'] ); |
|
| 380 | - } |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + /** |
|
| 347 | + * Returns a single subscription's columns. |
|
| 348 | + * |
|
| 349 | + * @param WPInv_Subscription $subscription |
|
| 350 | + * |
|
| 351 | + * @return array |
|
| 352 | + */ |
|
| 353 | + public function get_single_subscription_columns( $subscription ) { |
|
| 354 | + |
|
| 355 | + // Prepare subscription detail columns. |
|
| 356 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() ); |
|
| 357 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
| 358 | + $fields = apply_filters( |
|
| 359 | + 'getpaid_single_subscription_details_fields', |
|
| 360 | + array( |
|
| 361 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 362 | + 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 363 | + 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 364 | + 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 365 | + 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 366 | + 'payments' => __( 'Payments', 'invoicing' ), |
|
| 367 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
| 368 | + ), |
|
| 369 | + $subscription |
|
| 370 | + ); |
|
| 371 | + |
|
| 372 | + if ( isset( $fields['expiry_date'] ) ) { |
|
| 373 | + |
|
| 374 | + if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 375 | + $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + if ( 'pending' == $subscription->get_status() ) { |
|
| 379 | + unset( $fields['expiry_date'] ); |
|
| 380 | + } |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | - if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
| 384 | - unset( $fields['start_date'] ); |
|
| 385 | - } |
|
| 386 | - |
|
| 387 | - if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 388 | - unset( $fields['initial_amount'] ); |
|
| 389 | - } |
|
| 390 | - |
|
| 391 | - return $fields; |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - /** |
|
| 395 | - * Displays a single subscription. |
|
| 396 | - * |
|
| 397 | - * @param string $subscription |
|
| 398 | - * |
|
| 399 | - * @return string |
|
| 400 | - */ |
|
| 401 | - public function display_single_subscription( $subscription ) { |
|
| 402 | - |
|
| 403 | - // Fetch the subscription. |
|
| 404 | - $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 405 | - |
|
| 406 | - if ( ! $subscription->exists() ) { |
|
| 407 | - |
|
| 408 | - return aui()->alert( |
|
| 409 | - array( |
|
| 410 | - 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 411 | - 'type' => 'error', |
|
| 412 | - ) |
|
| 413 | - ); |
|
| 414 | - |
|
| 415 | - } |
|
| 416 | - |
|
| 417 | - // Ensure that the user owns this subscription key. |
|
| 418 | - if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 419 | - |
|
| 420 | - return aui()->alert( |
|
| 421 | - array( |
|
| 422 | - 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 423 | - 'type' => 'error', |
|
| 424 | - ) |
|
| 425 | - ); |
|
| 426 | - |
|
| 427 | - } |
|
| 428 | - |
|
| 429 | - return wpinv_get_template_html( |
|
| 430 | - 'subscriptions/subscription-details.php', |
|
| 431 | - array( |
|
| 432 | - 'subscription' => $subscription, |
|
| 433 | - 'widget' => $this, |
|
| 434 | - ) |
|
| 435 | - ); |
|
| 436 | - |
|
| 437 | - } |
|
| 383 | + if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) { |
|
| 384 | + unset( $fields['start_date'] ); |
|
| 385 | + } |
|
| 386 | + |
|
| 387 | + if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 388 | + unset( $fields['initial_amount'] ); |
|
| 389 | + } |
|
| 390 | + |
|
| 391 | + return $fields; |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + /** |
|
| 395 | + * Displays a single subscription. |
|
| 396 | + * |
|
| 397 | + * @param string $subscription |
|
| 398 | + * |
|
| 399 | + * @return string |
|
| 400 | + */ |
|
| 401 | + public function display_single_subscription( $subscription ) { |
|
| 402 | + |
|
| 403 | + // Fetch the subscription. |
|
| 404 | + $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 405 | + |
|
| 406 | + if ( ! $subscription->exists() ) { |
|
| 407 | + |
|
| 408 | + return aui()->alert( |
|
| 409 | + array( |
|
| 410 | + 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 411 | + 'type' => 'error', |
|
| 412 | + ) |
|
| 413 | + ); |
|
| 414 | + |
|
| 415 | + } |
|
| 416 | + |
|
| 417 | + // Ensure that the user owns this subscription key. |
|
| 418 | + if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 419 | + |
|
| 420 | + return aui()->alert( |
|
| 421 | + array( |
|
| 422 | + 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 423 | + 'type' => 'error', |
|
| 424 | + ) |
|
| 425 | + ); |
|
| 426 | + |
|
| 427 | + } |
|
| 428 | + |
|
| 429 | + return wpinv_get_template_html( |
|
| 430 | + 'subscriptions/subscription-details.php', |
|
| 431 | + array( |
|
| 432 | + 'subscription' => $subscription, |
|
| 433 | + 'widget' => $this, |
|
| 434 | + ) |
|
| 435 | + ); |
|
| 436 | + |
|
| 437 | + } |
|
| 438 | 438 | |
| 439 | 439 | } |