@@ -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,201 +21,201 @@ 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 = '1.0.1'; |
|
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 = '1.0.1'; |
|
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' )); |
|
116 | - |
|
117 | - do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | - } |
|
119 | - |
|
120 | - return self::$instance; |
|
121 | - } |
|
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 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Initiate the settings and add the required action hooks. |
|
135 | - */ |
|
136 | - public function init() { |
|
137 | - $this->constants(); |
|
138 | - $this->settings = $this->get_settings(); |
|
139 | - $this->url = $this->get_url(); |
|
140 | - |
|
141 | - /** |
|
142 | - * Maybe load CSS |
|
143 | - * |
|
144 | - * We load super early in case there is a theme version that might change the colors |
|
145 | - */ |
|
146 | - if ( $this->settings['css'] ) { |
|
147 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | - } |
|
149 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | - } |
|
152 | - |
|
153 | - // maybe load JS |
|
154 | - if ( $this->settings['js'] ) { |
|
155 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
156 | - } |
|
157 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
158 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
159 | - } |
|
160 | - |
|
161 | - // Maybe set the HTML font size |
|
162 | - if ( $this->settings['html_font_size'] ) { |
|
163 | - add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
164 | - } |
|
165 | - |
|
166 | - |
|
167 | - } |
|
168 | - |
|
169 | - /** |
|
170 | - * Check if we should load the admin scripts or not. |
|
171 | - * |
|
172 | - * @return bool |
|
173 | - */ |
|
174 | - public function load_admin_scripts(){ |
|
175 | - $result = true; |
|
176 | - |
|
177 | - if(!empty($this->settings['disable_admin'])){ |
|
178 | - $url_parts = explode("\n",$this->settings['disable_admin']); |
|
179 | - foreach($url_parts as $part){ |
|
180 | - if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
181 | - return false; // return early, no point checking further |
|
182 | - } |
|
183 | - } |
|
184 | - } |
|
115 | + add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
116 | + |
|
117 | + do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | + } |
|
119 | + |
|
120 | + return self::$instance; |
|
121 | + } |
|
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 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Initiate the settings and add the required action hooks. |
|
135 | + */ |
|
136 | + public function init() { |
|
137 | + $this->constants(); |
|
138 | + $this->settings = $this->get_settings(); |
|
139 | + $this->url = $this->get_url(); |
|
140 | + |
|
141 | + /** |
|
142 | + * Maybe load CSS |
|
143 | + * |
|
144 | + * We load super early in case there is a theme version that might change the colors |
|
145 | + */ |
|
146 | + if ( $this->settings['css'] ) { |
|
147 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | + } |
|
149 | + if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | + } |
|
152 | + |
|
153 | + // maybe load JS |
|
154 | + if ( $this->settings['js'] ) { |
|
155 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
156 | + } |
|
157 | + if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
158 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
159 | + } |
|
160 | + |
|
161 | + // Maybe set the HTML font size |
|
162 | + if ( $this->settings['html_font_size'] ) { |
|
163 | + add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
164 | + } |
|
165 | + |
|
166 | + |
|
167 | + } |
|
168 | + |
|
169 | + /** |
|
170 | + * Check if we should load the admin scripts or not. |
|
171 | + * |
|
172 | + * @return bool |
|
173 | + */ |
|
174 | + public function load_admin_scripts(){ |
|
175 | + $result = true; |
|
176 | + |
|
177 | + if(!empty($this->settings['disable_admin'])){ |
|
178 | + $url_parts = explode("\n",$this->settings['disable_admin']); |
|
179 | + foreach($url_parts as $part){ |
|
180 | + if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
181 | + return false; // return early, no point checking further |
|
182 | + } |
|
183 | + } |
|
184 | + } |
|
185 | 185 | |
186 | - return $result; |
|
187 | - } |
|
186 | + return $result; |
|
187 | + } |
|
188 | 188 | |
189 | - /** |
|
190 | - * Add a html font size to the footer. |
|
191 | - */ |
|
192 | - public function html_font_size(){ |
|
193 | - $this->settings = $this->get_settings(); |
|
194 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
195 | - } |
|
189 | + /** |
|
190 | + * Add a html font size to the footer. |
|
191 | + */ |
|
192 | + public function html_font_size(){ |
|
193 | + $this->settings = $this->get_settings(); |
|
194 | + echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
195 | + } |
|
196 | 196 | |
197 | - /** |
|
198 | - * Adds the styles. |
|
199 | - */ |
|
200 | - public function enqueue_style() { |
|
197 | + /** |
|
198 | + * Adds the styles. |
|
199 | + */ |
|
200 | + public function enqueue_style() { |
|
201 | 201 | |
202 | - $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
202 | + $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
203 | 203 | |
204 | - $rtl = is_rtl() ? '-rtl' : ''; |
|
204 | + $rtl = is_rtl() ? '-rtl' : ''; |
|
205 | 205 | |
206 | - if($this->settings[$css_setting]){ |
|
207 | - $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
208 | - $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
209 | - wp_register_style( 'ayecode-ui', $url, array(), $this->latest ); |
|
210 | - wp_enqueue_style( 'ayecode-ui' ); |
|
206 | + if($this->settings[$css_setting]){ |
|
207 | + $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
208 | + $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
209 | + wp_register_style( 'ayecode-ui', $url, array(), $this->latest ); |
|
210 | + wp_enqueue_style( 'ayecode-ui' ); |
|
211 | 211 | |
212 | - // flatpickr |
|
213 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
212 | + // flatpickr |
|
213 | + wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
214 | 214 | |
215 | 215 | |
216 | - // fix some wp-admin issues |
|
217 | - if(is_admin()){ |
|
218 | - $custom_css = " |
|
216 | + // fix some wp-admin issues |
|
217 | + if(is_admin()){ |
|
218 | + $custom_css = " |
|
219 | 219 | body{ |
220 | 220 | background-color: #f1f1f1; |
221 | 221 | font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
@@ -251,29 +251,29 @@ discard block |
||
251 | 251 | } |
252 | 252 | "; |
253 | 253 | |
254 | - // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
255 | - $custom_css .= " |
|
254 | + // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
255 | + $custom_css .= " |
|
256 | 256 | .edit-post-sidebar input[type=color].components-text-control__input{ |
257 | 257 | padding: 0; |
258 | 258 | } |
259 | 259 | "; |
260 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
261 | - } |
|
260 | + wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
261 | + } |
|
262 | 262 | |
263 | - // custom changes |
|
264 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
263 | + // custom changes |
|
264 | + wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
265 | 265 | |
266 | - } |
|
267 | - } |
|
266 | + } |
|
267 | + } |
|
268 | 268 | |
269 | - /** |
|
270 | - * Get inline script used if bootstrap enqueued |
|
271 | - * |
|
272 | - * If this remains small then its best to use this than to add another JS file. |
|
273 | - */ |
|
274 | - public function inline_script(){ |
|
275 | - ob_start(); |
|
276 | - ?> |
|
269 | + /** |
|
270 | + * Get inline script used if bootstrap enqueued |
|
271 | + * |
|
272 | + * If this remains small then its best to use this than to add another JS file. |
|
273 | + */ |
|
274 | + public function inline_script(){ |
|
275 | + ob_start(); |
|
276 | + ?> |
|
277 | 277 | <script> |
278 | 278 | |
279 | 279 | /** |
@@ -760,25 +760,25 @@ discard block |
||
760 | 760 | |
761 | 761 | </script> |
762 | 762 | <?php |
763 | - $output = ob_get_clean(); |
|
763 | + $output = ob_get_clean(); |
|
764 | 764 | |
765 | - /* |
|
765 | + /* |
|
766 | 766 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
767 | 767 | */ |
768 | - return str_replace( array( |
|
769 | - '<script>', |
|
770 | - '</script>' |
|
771 | - ), '', $output ); |
|
772 | - } |
|
773 | - |
|
774 | - /** |
|
775 | - * Get inline script used if bootstrap file browser enqueued. |
|
776 | - * |
|
777 | - * If this remains small then its best to use this than to add another JS file. |
|
778 | - */ |
|
779 | - public function inline_script_file_browser(){ |
|
780 | - ob_start(); |
|
781 | - ?> |
|
768 | + return str_replace( array( |
|
769 | + '<script>', |
|
770 | + '</script>' |
|
771 | + ), '', $output ); |
|
772 | + } |
|
773 | + |
|
774 | + /** |
|
775 | + * Get inline script used if bootstrap file browser enqueued. |
|
776 | + * |
|
777 | + * If this remains small then its best to use this than to add another JS file. |
|
778 | + */ |
|
779 | + public function inline_script_file_browser(){ |
|
780 | + ob_start(); |
|
781 | + ?> |
|
782 | 782 | <script> |
783 | 783 | // run on doc ready |
784 | 784 | jQuery(document).ready(function () { |
@@ -786,184 +786,184 @@ discard block |
||
786 | 786 | }); |
787 | 787 | </script> |
788 | 788 | <?php |
789 | - $output = ob_get_clean(); |
|
789 | + $output = ob_get_clean(); |
|
790 | 790 | |
791 | - /* |
|
791 | + /* |
|
792 | 792 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
793 | 793 | */ |
794 | - return str_replace( array( |
|
795 | - '<script>', |
|
796 | - '</script>' |
|
797 | - ), '', $output ); |
|
798 | - } |
|
799 | - |
|
800 | - /** |
|
801 | - * Adds the Font Awesome JS. |
|
802 | - */ |
|
803 | - public function enqueue_scripts() { |
|
804 | - |
|
805 | - $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
806 | - |
|
807 | - // select2 |
|
808 | - wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version ); |
|
809 | - |
|
810 | - // flatpickr |
|
811 | - wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
812 | - |
|
813 | - // Bootstrap file browser |
|
814 | - wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version ); |
|
815 | - wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
816 | - |
|
817 | - $load_inline = false; |
|
818 | - |
|
819 | - if($this->settings[$js_setting]=='core-popper'){ |
|
820 | - // Bootstrap bundle |
|
821 | - $url = $this->url.'assets/js/bootstrap.bundle.min.js'; |
|
822 | - wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest ); |
|
823 | - // if in admin then add to footer for compatibility. |
|
824 | - is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle'); |
|
825 | - $script = $this->inline_script(); |
|
826 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
827 | - }elseif($this->settings[$js_setting]=='popper'){ |
|
828 | - $url = $this->url.'assets/js/popper.min.js'; |
|
829 | - wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest ); |
|
830 | - wp_enqueue_script( 'bootstrap-js-popper' ); |
|
831 | - $load_inline = true; |
|
832 | - }else{ |
|
833 | - $load_inline = true; |
|
834 | - } |
|
835 | - |
|
836 | - // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
837 | - if($load_inline){ |
|
838 | - wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') ); |
|
839 | - wp_enqueue_script( 'bootstrap-dummy' ); |
|
840 | - $script = $this->inline_script(); |
|
841 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
842 | - } |
|
843 | - |
|
844 | - } |
|
845 | - |
|
846 | - /** |
|
847 | - * Enqueue flatpickr if called. |
|
848 | - */ |
|
849 | - public function enqueue_flatpickr(){ |
|
850 | - wp_enqueue_style( 'flatpickr' ); |
|
851 | - wp_enqueue_script( 'flatpickr' ); |
|
852 | - } |
|
853 | - |
|
854 | - /** |
|
855 | - * Get the url path to the current folder. |
|
856 | - * |
|
857 | - * @return string |
|
858 | - */ |
|
859 | - public function get_url() { |
|
860 | - |
|
861 | - $url = ''; |
|
862 | - // check if we are inside a plugin |
|
863 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
864 | - |
|
865 | - // add check in-case user has changed wp-content dir name. |
|
866 | - $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
867 | - $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
868 | - $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
869 | - |
|
870 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
871 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
872 | - } |
|
873 | - |
|
874 | - return $url; |
|
875 | - } |
|
876 | - |
|
877 | - /** |
|
878 | - * Register the database settings with WordPress. |
|
879 | - */ |
|
880 | - public function register_settings() { |
|
881 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
882 | - } |
|
883 | - |
|
884 | - /** |
|
885 | - * Add the WordPress settings menu item. |
|
886 | - * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
887 | - */ |
|
888 | - public function menu_item() { |
|
889 | - $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
890 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
891 | - $this, |
|
892 | - 'settings_page' |
|
893 | - ) ); |
|
894 | - } |
|
895 | - |
|
896 | - /** |
|
897 | - * Get a list of themes and their default JS settings. |
|
898 | - * |
|
899 | - * @return array |
|
900 | - */ |
|
901 | - public function theme_js_settings(){ |
|
902 | - return array( |
|
903 | - 'ayetheme' => 'popper', |
|
904 | - 'listimia' => 'required', |
|
905 | - 'listimia_backend' => 'core-popper', |
|
906 | - 'avada' => 'required', |
|
907 | - ); |
|
908 | - } |
|
909 | - |
|
910 | - /** |
|
911 | - * Get the current Font Awesome output settings. |
|
912 | - * |
|
913 | - * @return array The array of settings. |
|
914 | - */ |
|
915 | - public function get_settings() { |
|
916 | - |
|
917 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
918 | - $js_default = 'core-popper'; |
|
919 | - $js_default_backend = $js_default; |
|
920 | - |
|
921 | - // maybe set defaults (if no settings set) |
|
922 | - if(empty($db_settings)){ |
|
923 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
924 | - $theme_js_settings = self::theme_js_settings(); |
|
925 | - if(isset($theme_js_settings[$active_theme])){ |
|
926 | - $js_default = $theme_js_settings[$active_theme]; |
|
927 | - $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
928 | - } |
|
929 | - } |
|
930 | - |
|
931 | - $defaults = array( |
|
932 | - 'css' => 'compatibility', // core, compatibility |
|
933 | - 'js' => $js_default, // js to load, core-popper, popper |
|
934 | - 'html_font_size' => '16', // js to load, core-popper, popper |
|
935 | - 'css_backend' => 'compatibility', // core, compatibility |
|
936 | - 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
937 | - 'disable_admin' => '', // URL snippets to disable loading on admin |
|
938 | - ); |
|
939 | - |
|
940 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
941 | - |
|
942 | - /** |
|
943 | - * Filter the Bootstrap settings. |
|
944 | - * |
|
945 | - * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
946 | - */ |
|
947 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
948 | - } |
|
949 | - |
|
950 | - |
|
951 | - /** |
|
952 | - * The settings page html output. |
|
953 | - */ |
|
954 | - public function settings_page() { |
|
955 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
956 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
957 | - } |
|
958 | - ?> |
|
794 | + return str_replace( array( |
|
795 | + '<script>', |
|
796 | + '</script>' |
|
797 | + ), '', $output ); |
|
798 | + } |
|
799 | + |
|
800 | + /** |
|
801 | + * Adds the Font Awesome JS. |
|
802 | + */ |
|
803 | + public function enqueue_scripts() { |
|
804 | + |
|
805 | + $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
806 | + |
|
807 | + // select2 |
|
808 | + wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version ); |
|
809 | + |
|
810 | + // flatpickr |
|
811 | + wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
812 | + |
|
813 | + // Bootstrap file browser |
|
814 | + wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version ); |
|
815 | + wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
816 | + |
|
817 | + $load_inline = false; |
|
818 | + |
|
819 | + if($this->settings[$js_setting]=='core-popper'){ |
|
820 | + // Bootstrap bundle |
|
821 | + $url = $this->url.'assets/js/bootstrap.bundle.min.js'; |
|
822 | + wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest ); |
|
823 | + // if in admin then add to footer for compatibility. |
|
824 | + is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle'); |
|
825 | + $script = $this->inline_script(); |
|
826 | + wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
827 | + }elseif($this->settings[$js_setting]=='popper'){ |
|
828 | + $url = $this->url.'assets/js/popper.min.js'; |
|
829 | + wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest ); |
|
830 | + wp_enqueue_script( 'bootstrap-js-popper' ); |
|
831 | + $load_inline = true; |
|
832 | + }else{ |
|
833 | + $load_inline = true; |
|
834 | + } |
|
835 | + |
|
836 | + // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
837 | + if($load_inline){ |
|
838 | + wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') ); |
|
839 | + wp_enqueue_script( 'bootstrap-dummy' ); |
|
840 | + $script = $this->inline_script(); |
|
841 | + wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
842 | + } |
|
843 | + |
|
844 | + } |
|
845 | + |
|
846 | + /** |
|
847 | + * Enqueue flatpickr if called. |
|
848 | + */ |
|
849 | + public function enqueue_flatpickr(){ |
|
850 | + wp_enqueue_style( 'flatpickr' ); |
|
851 | + wp_enqueue_script( 'flatpickr' ); |
|
852 | + } |
|
853 | + |
|
854 | + /** |
|
855 | + * Get the url path to the current folder. |
|
856 | + * |
|
857 | + * @return string |
|
858 | + */ |
|
859 | + public function get_url() { |
|
860 | + |
|
861 | + $url = ''; |
|
862 | + // check if we are inside a plugin |
|
863 | + $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
864 | + |
|
865 | + // add check in-case user has changed wp-content dir name. |
|
866 | + $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
867 | + $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
868 | + $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
869 | + |
|
870 | + if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
871 | + $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
872 | + } |
|
873 | + |
|
874 | + return $url; |
|
875 | + } |
|
876 | + |
|
877 | + /** |
|
878 | + * Register the database settings with WordPress. |
|
879 | + */ |
|
880 | + public function register_settings() { |
|
881 | + register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
882 | + } |
|
883 | + |
|
884 | + /** |
|
885 | + * Add the WordPress settings menu item. |
|
886 | + * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
887 | + */ |
|
888 | + public function menu_item() { |
|
889 | + $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
890 | + call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
891 | + $this, |
|
892 | + 'settings_page' |
|
893 | + ) ); |
|
894 | + } |
|
895 | + |
|
896 | + /** |
|
897 | + * Get a list of themes and their default JS settings. |
|
898 | + * |
|
899 | + * @return array |
|
900 | + */ |
|
901 | + public function theme_js_settings(){ |
|
902 | + return array( |
|
903 | + 'ayetheme' => 'popper', |
|
904 | + 'listimia' => 'required', |
|
905 | + 'listimia_backend' => 'core-popper', |
|
906 | + 'avada' => 'required', |
|
907 | + ); |
|
908 | + } |
|
909 | + |
|
910 | + /** |
|
911 | + * Get the current Font Awesome output settings. |
|
912 | + * |
|
913 | + * @return array The array of settings. |
|
914 | + */ |
|
915 | + public function get_settings() { |
|
916 | + |
|
917 | + $db_settings = get_option( 'ayecode-ui-settings' ); |
|
918 | + $js_default = 'core-popper'; |
|
919 | + $js_default_backend = $js_default; |
|
920 | + |
|
921 | + // maybe set defaults (if no settings set) |
|
922 | + if(empty($db_settings)){ |
|
923 | + $active_theme = strtolower( get_template() ); // active parent theme. |
|
924 | + $theme_js_settings = self::theme_js_settings(); |
|
925 | + if(isset($theme_js_settings[$active_theme])){ |
|
926 | + $js_default = $theme_js_settings[$active_theme]; |
|
927 | + $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
928 | + } |
|
929 | + } |
|
930 | + |
|
931 | + $defaults = array( |
|
932 | + 'css' => 'compatibility', // core, compatibility |
|
933 | + 'js' => $js_default, // js to load, core-popper, popper |
|
934 | + 'html_font_size' => '16', // js to load, core-popper, popper |
|
935 | + 'css_backend' => 'compatibility', // core, compatibility |
|
936 | + 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
937 | + 'disable_admin' => '', // URL snippets to disable loading on admin |
|
938 | + ); |
|
939 | + |
|
940 | + $settings = wp_parse_args( $db_settings, $defaults ); |
|
941 | + |
|
942 | + /** |
|
943 | + * Filter the Bootstrap settings. |
|
944 | + * |
|
945 | + * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
946 | + */ |
|
947 | + return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
948 | + } |
|
949 | + |
|
950 | + |
|
951 | + /** |
|
952 | + * The settings page html output. |
|
953 | + */ |
|
954 | + public function settings_page() { |
|
955 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
956 | + wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
957 | + } |
|
958 | + ?> |
|
959 | 959 | <div class="wrap"> |
960 | 960 | <h1><?php echo $this->name; ?></h1> |
961 | 961 | <p><?php _e("Here you can adjust settings if you are having compatibility issues.","aui");?></p> |
962 | 962 | <form method="post" action="options.php"> |
963 | 963 | <?php |
964 | - settings_fields( 'ayecode-ui-settings' ); |
|
965 | - do_settings_sections( 'ayecode-ui-settings' ); |
|
966 | - ?> |
|
964 | + settings_fields( 'ayecode-ui-settings' ); |
|
965 | + do_settings_sections( 'ayecode-ui-settings' ); |
|
966 | + ?> |
|
967 | 967 | |
968 | 968 | <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
969 | 969 | <table class="form-table wpbs-table-settings"> |
@@ -1043,55 +1043,55 @@ discard block |
||
1043 | 1043 | </table> |
1044 | 1044 | |
1045 | 1045 | <?php |
1046 | - submit_button(); |
|
1047 | - ?> |
|
1046 | + submit_button(); |
|
1047 | + ?> |
|
1048 | 1048 | </form> |
1049 | 1049 | |
1050 | 1050 | <div id="wpbs-version"><?php echo $this->version; ?></div> |
1051 | 1051 | </div> |
1052 | 1052 | |
1053 | 1053 | <?php |
1054 | - } |
|
1055 | - |
|
1056 | - public function customizer_settings($wp_customize){ |
|
1057 | - $wp_customize->add_section('aui_settings', array( |
|
1058 | - 'title' => __('AyeCode UI','aui'), |
|
1059 | - 'priority' => 120, |
|
1060 | - )); |
|
1061 | - |
|
1062 | - // ============================= |
|
1063 | - // = Color Picker = |
|
1064 | - // ============================= |
|
1065 | - $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1066 | - 'default' => AUI_PRIMARY_COLOR, |
|
1067 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1068 | - 'capability' => 'edit_theme_options', |
|
1069 | - 'type' => 'option', |
|
1070 | - 'transport' => 'refresh', |
|
1071 | - )); |
|
1072 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1073 | - 'label' => __('Primary Color','aui'), |
|
1074 | - 'section' => 'aui_settings', |
|
1075 | - 'settings' => 'aui_options[color_primary]', |
|
1076 | - ))); |
|
1077 | - |
|
1078 | - $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1079 | - 'default' => '#6c757d', |
|
1080 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1081 | - 'capability' => 'edit_theme_options', |
|
1082 | - 'type' => 'option', |
|
1083 | - 'transport' => 'refresh', |
|
1084 | - )); |
|
1085 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1086 | - 'label' => __('Secondary Color','aui'), |
|
1087 | - 'section' => 'aui_settings', |
|
1088 | - 'settings' => 'aui_options[color_secondary]', |
|
1089 | - ))); |
|
1090 | - } |
|
1091 | - |
|
1092 | - public static function bs3_compat_css() { |
|
1093 | - ob_start(); |
|
1094 | - ?> |
|
1054 | + } |
|
1055 | + |
|
1056 | + public function customizer_settings($wp_customize){ |
|
1057 | + $wp_customize->add_section('aui_settings', array( |
|
1058 | + 'title' => __('AyeCode UI','aui'), |
|
1059 | + 'priority' => 120, |
|
1060 | + )); |
|
1061 | + |
|
1062 | + // ============================= |
|
1063 | + // = Color Picker = |
|
1064 | + // ============================= |
|
1065 | + $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1066 | + 'default' => AUI_PRIMARY_COLOR, |
|
1067 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1068 | + 'capability' => 'edit_theme_options', |
|
1069 | + 'type' => 'option', |
|
1070 | + 'transport' => 'refresh', |
|
1071 | + )); |
|
1072 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1073 | + 'label' => __('Primary Color','aui'), |
|
1074 | + 'section' => 'aui_settings', |
|
1075 | + 'settings' => 'aui_options[color_primary]', |
|
1076 | + ))); |
|
1077 | + |
|
1078 | + $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1079 | + 'default' => '#6c757d', |
|
1080 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1081 | + 'capability' => 'edit_theme_options', |
|
1082 | + 'type' => 'option', |
|
1083 | + 'transport' => 'refresh', |
|
1084 | + )); |
|
1085 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1086 | + 'label' => __('Secondary Color','aui'), |
|
1087 | + 'section' => 'aui_settings', |
|
1088 | + 'settings' => 'aui_options[color_secondary]', |
|
1089 | + ))); |
|
1090 | + } |
|
1091 | + |
|
1092 | + public static function bs3_compat_css() { |
|
1093 | + ob_start(); |
|
1094 | + ?> |
|
1095 | 1095 | /* Bootstrap 3 compatibility */ |
1096 | 1096 | body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;} |
1097 | 1097 | body.modal-open .modal.show:not(.in) {opacity:1;z-index: 99999} |
@@ -1109,453 +1109,453 @@ discard block |
||
1109 | 1109 | |
1110 | 1110 | body.modal-open .modal.bsui .modal-dialog{left: auto;} |
1111 | 1111 | <?php |
1112 | - return ob_get_clean(); |
|
1113 | - } |
|
1112 | + return ob_get_clean(); |
|
1113 | + } |
|
1114 | 1114 | |
1115 | 1115 | |
1116 | - public static function custom_css($compatibility = true) { |
|
1117 | - $settings = get_option('aui_options'); |
|
1116 | + public static function custom_css($compatibility = true) { |
|
1117 | + $settings = get_option('aui_options'); |
|
1118 | 1118 | |
1119 | - ob_start(); |
|
1119 | + ob_start(); |
|
1120 | 1120 | |
1121 | - $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1122 | - $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1123 | - //AUI_PRIMARY_COLOR_ORIGINAL |
|
1124 | - ?> |
|
1121 | + $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1122 | + $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1123 | + //AUI_PRIMARY_COLOR_ORIGINAL |
|
1124 | + ?> |
|
1125 | 1125 | <style> |
1126 | 1126 | |
1127 | 1127 | |
1128 | 1128 | |
1129 | 1129 | <?php |
1130 | 1130 | |
1131 | - // BS compat @todo add option check |
|
1132 | - //echo self::bs3_compat_css(); |
|
1131 | + // BS compat @todo add option check |
|
1132 | + //echo self::bs3_compat_css(); |
|
1133 | 1133 | |
1134 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1135 | - echo self::css_primary($primary_color,$compatibility); |
|
1136 | - } |
|
1134 | + if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1135 | + echo self::css_primary($primary_color,$compatibility); |
|
1136 | + } |
|
1137 | 1137 | |
1138 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1139 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1140 | - } |
|
1138 | + if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1139 | + echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1140 | + } |
|
1141 | 1141 | ?> |
1142 | 1142 | </style> |
1143 | 1143 | <?php |
1144 | 1144 | |
1145 | 1145 | |
1146 | - /* |
|
1146 | + /* |
|
1147 | 1147 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1148 | 1148 | */ |
1149 | - return str_replace( array( |
|
1150 | - '<style>', |
|
1151 | - '</style>' |
|
1152 | - ), '', ob_get_clean()); |
|
1153 | - } |
|
1154 | - |
|
1155 | - public static function css_primary($color_code,$compatibility){; |
|
1156 | - $color_code = sanitize_hex_color($color_code); |
|
1157 | - if(!$color_code){return '';} |
|
1158 | - /** |
|
1159 | - * c = color, b = background color, o = border-color, f = fill |
|
1160 | - */ |
|
1161 | - $selectors = array( |
|
1162 | - 'a' => array('c'), |
|
1163 | - '.btn-primary' => array('b','o'), |
|
1164 | - '.btn-primary.disabled' => array('b','o'), |
|
1165 | - '.btn-primary:disabled' => array('b','o'), |
|
1166 | - '.btn-outline-primary' => array('c','o'), |
|
1167 | - '.btn-outline-primary:hover' => array('b','o'), |
|
1168 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1169 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1170 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1171 | - '.btn-link' => array('c'), |
|
1172 | - '.dropdown-item.active' => array('b'), |
|
1173 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1174 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1149 | + return str_replace( array( |
|
1150 | + '<style>', |
|
1151 | + '</style>' |
|
1152 | + ), '', ob_get_clean()); |
|
1153 | + } |
|
1154 | + |
|
1155 | + public static function css_primary($color_code,$compatibility){; |
|
1156 | + $color_code = sanitize_hex_color($color_code); |
|
1157 | + if(!$color_code){return '';} |
|
1158 | + /** |
|
1159 | + * c = color, b = background color, o = border-color, f = fill |
|
1160 | + */ |
|
1161 | + $selectors = array( |
|
1162 | + 'a' => array('c'), |
|
1163 | + '.btn-primary' => array('b','o'), |
|
1164 | + '.btn-primary.disabled' => array('b','o'), |
|
1165 | + '.btn-primary:disabled' => array('b','o'), |
|
1166 | + '.btn-outline-primary' => array('c','o'), |
|
1167 | + '.btn-outline-primary:hover' => array('b','o'), |
|
1168 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1169 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1170 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1171 | + '.btn-link' => array('c'), |
|
1172 | + '.dropdown-item.active' => array('b'), |
|
1173 | + '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1174 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1175 | 1175 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1176 | 1176 | // '.custom-range::-moz-range-thumb' => array('b'), |
1177 | 1177 | // '.custom-range::-ms-thumb' => array('b'), |
1178 | - '.nav-pills .nav-link.active' => array('b'), |
|
1179 | - '.nav-pills .show>.nav-link' => array('b'), |
|
1180 | - '.page-link' => array('c'), |
|
1181 | - '.page-item.active .page-link' => array('b','o'), |
|
1182 | - '.badge-primary' => array('b'), |
|
1183 | - '.alert-primary' => array('b','o'), |
|
1184 | - '.progress-bar' => array('b'), |
|
1185 | - '.list-group-item.active' => array('b','o'), |
|
1186 | - '.bg-primary' => array('b','f'), |
|
1187 | - '.btn-link.btn-primary' => array('c'), |
|
1188 | - '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1189 | - ); |
|
1190 | - |
|
1191 | - $important_selectors = array( |
|
1192 | - '.bg-primary' => array('b','f'), |
|
1193 | - '.border-primary' => array('o'), |
|
1194 | - '.text-primary' => array('c'), |
|
1195 | - ); |
|
1196 | - |
|
1197 | - $color = array(); |
|
1198 | - $color_i = array(); |
|
1199 | - $background = array(); |
|
1200 | - $background_i = array(); |
|
1201 | - $border = array(); |
|
1202 | - $border_i = array(); |
|
1203 | - $fill = array(); |
|
1204 | - $fill_i = array(); |
|
1205 | - |
|
1206 | - $output = ''; |
|
1207 | - |
|
1208 | - // build rules into each type |
|
1209 | - foreach($selectors as $selector => $types){ |
|
1210 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1211 | - $types = array_combine($types,$types); |
|
1212 | - if(isset($types['c'])){$color[] = $selector;} |
|
1213 | - if(isset($types['b'])){$background[] = $selector;} |
|
1214 | - if(isset($types['o'])){$border[] = $selector;} |
|
1215 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1216 | - } |
|
1217 | - |
|
1218 | - // build rules into each type |
|
1219 | - foreach($important_selectors as $selector => $types){ |
|
1220 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1221 | - $types = array_combine($types,$types); |
|
1222 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1223 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1224 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1225 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1226 | - } |
|
1227 | - |
|
1228 | - // add any color rules |
|
1229 | - if(!empty($color)){ |
|
1230 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1231 | - } |
|
1232 | - if(!empty($color_i)){ |
|
1233 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1234 | - } |
|
1235 | - |
|
1236 | - // add any background color rules |
|
1237 | - if(!empty($background)){ |
|
1238 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1239 | - } |
|
1240 | - if(!empty($background_i)){ |
|
1241 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1242 | - } |
|
1243 | - |
|
1244 | - // add any border color rules |
|
1245 | - if(!empty($border)){ |
|
1246 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1247 | - } |
|
1248 | - if(!empty($border_i)){ |
|
1249 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1250 | - } |
|
1251 | - |
|
1252 | - // add any fill color rules |
|
1253 | - if(!empty($fill)){ |
|
1254 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1255 | - } |
|
1256 | - if(!empty($fill_i)){ |
|
1257 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1258 | - } |
|
1259 | - |
|
1260 | - |
|
1261 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1262 | - |
|
1263 | - // darken |
|
1264 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1265 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1266 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1267 | - |
|
1268 | - // lighten |
|
1269 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1270 | - |
|
1271 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1272 | - $op_25 = $color_code."40"; // 25% opacity |
|
1273 | - |
|
1274 | - |
|
1275 | - // button states |
|
1276 | - $output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1277 | - $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;} "; |
|
1278 | - $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.";} "; |
|
1279 | - $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;} "; |
|
1280 | - |
|
1281 | - |
|
1282 | - // dropdown's |
|
1283 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1284 | - |
|
1285 | - |
|
1286 | - // input states |
|
1287 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1288 | - |
|
1289 | - // page link |
|
1290 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1291 | - |
|
1292 | - return $output; |
|
1293 | - } |
|
1294 | - |
|
1295 | - public static function css_secondary($color_code,$compatibility){; |
|
1296 | - $color_code = sanitize_hex_color($color_code); |
|
1297 | - if(!$color_code){return '';} |
|
1298 | - /** |
|
1299 | - * c = color, b = background color, o = border-color, f = fill |
|
1300 | - */ |
|
1301 | - $selectors = array( |
|
1302 | - '.btn-secondary' => array('b','o'), |
|
1303 | - '.btn-secondary.disabled' => array('b','o'), |
|
1304 | - '.btn-secondary:disabled' => array('b','o'), |
|
1305 | - '.btn-outline-secondary' => array('c','o'), |
|
1306 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
1307 | - '.btn-outline-secondary.disabled' => array('c'), |
|
1308 | - '.btn-outline-secondary:disabled' => array('c'), |
|
1309 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1310 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1311 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1312 | - '.badge-secondary' => array('b'), |
|
1313 | - '.alert-secondary' => array('b','o'), |
|
1314 | - '.btn-link.btn-secondary' => array('c'), |
|
1315 | - ); |
|
1316 | - |
|
1317 | - $important_selectors = array( |
|
1318 | - '.bg-secondary' => array('b','f'), |
|
1319 | - '.border-secondary' => array('o'), |
|
1320 | - '.text-secondary' => array('c'), |
|
1321 | - ); |
|
1322 | - |
|
1323 | - $color = array(); |
|
1324 | - $color_i = array(); |
|
1325 | - $background = array(); |
|
1326 | - $background_i = array(); |
|
1327 | - $border = array(); |
|
1328 | - $border_i = array(); |
|
1329 | - $fill = array(); |
|
1330 | - $fill_i = array(); |
|
1331 | - |
|
1332 | - $output = ''; |
|
1333 | - |
|
1334 | - // build rules into each type |
|
1335 | - foreach($selectors as $selector => $types){ |
|
1336 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1337 | - $types = array_combine($types,$types); |
|
1338 | - if(isset($types['c'])){$color[] = $selector;} |
|
1339 | - if(isset($types['b'])){$background[] = $selector;} |
|
1340 | - if(isset($types['o'])){$border[] = $selector;} |
|
1341 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1342 | - } |
|
1343 | - |
|
1344 | - // build rules into each type |
|
1345 | - foreach($important_selectors as $selector => $types){ |
|
1346 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1347 | - $types = array_combine($types,$types); |
|
1348 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1349 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1350 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1351 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1352 | - } |
|
1353 | - |
|
1354 | - // add any color rules |
|
1355 | - if(!empty($color)){ |
|
1356 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1357 | - } |
|
1358 | - if(!empty($color_i)){ |
|
1359 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1360 | - } |
|
1361 | - |
|
1362 | - // add any background color rules |
|
1363 | - if(!empty($background)){ |
|
1364 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1365 | - } |
|
1366 | - if(!empty($background_i)){ |
|
1367 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1368 | - } |
|
1369 | - |
|
1370 | - // add any border color rules |
|
1371 | - if(!empty($border)){ |
|
1372 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1373 | - } |
|
1374 | - if(!empty($border_i)){ |
|
1375 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1376 | - } |
|
1377 | - |
|
1378 | - // add any fill color rules |
|
1379 | - if(!empty($fill)){ |
|
1380 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1381 | - } |
|
1382 | - if(!empty($fill_i)){ |
|
1383 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1384 | - } |
|
1385 | - |
|
1386 | - |
|
1387 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1388 | - |
|
1389 | - // darken |
|
1390 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1391 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1392 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1393 | - |
|
1394 | - // lighten |
|
1395 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1396 | - |
|
1397 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1398 | - $op_25 = $color_code."40"; // 25% opacity |
|
1399 | - |
|
1400 | - |
|
1401 | - // button states |
|
1402 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1403 | - $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;} "; |
|
1404 | - $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.";} "; |
|
1405 | - $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;} "; |
|
1406 | - |
|
1407 | - |
|
1408 | - return $output; |
|
1409 | - } |
|
1410 | - |
|
1411 | - /** |
|
1412 | - * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1413 | - * |
|
1414 | - * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1415 | - * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1416 | - * |
|
1417 | - * @return string |
|
1418 | - */ |
|
1419 | - public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1420 | - $hexCode = ltrim($hexCode, '#'); |
|
1421 | - |
|
1422 | - if (strlen($hexCode) == 3) { |
|
1423 | - $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1424 | - } |
|
1425 | - |
|
1426 | - $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1427 | - |
|
1428 | - foreach ($hexCode as & $color) { |
|
1429 | - $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1430 | - $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1431 | - |
|
1432 | - $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1433 | - } |
|
1434 | - |
|
1435 | - return '#' . implode($hexCode); |
|
1436 | - } |
|
1437 | - |
|
1438 | - /** |
|
1439 | - * Check if we should display examples. |
|
1440 | - */ |
|
1441 | - public function maybe_show_examples(){ |
|
1442 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1443 | - echo "<head>"; |
|
1444 | - wp_head(); |
|
1445 | - echo "</head>"; |
|
1446 | - echo "<body>"; |
|
1447 | - echo $this->get_examples(); |
|
1448 | - echo "</body>"; |
|
1449 | - exit; |
|
1450 | - } |
|
1451 | - } |
|
1452 | - |
|
1453 | - /** |
|
1454 | - * Get developer examples. |
|
1455 | - * |
|
1456 | - * @return string |
|
1457 | - */ |
|
1458 | - public function get_examples(){ |
|
1459 | - $output = ''; |
|
1460 | - |
|
1461 | - |
|
1462 | - // open form |
|
1463 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1464 | - |
|
1465 | - // input example |
|
1466 | - $output .= aui()->input(array( |
|
1467 | - 'type' => 'text', |
|
1468 | - 'id' => 'text-example', |
|
1469 | - 'name' => 'text-example', |
|
1470 | - 'placeholder' => 'text placeholder', |
|
1471 | - 'title' => 'Text input example', |
|
1472 | - 'value' => '', |
|
1473 | - 'required' => false, |
|
1474 | - 'help_text' => 'help text', |
|
1475 | - 'label' => 'Text input example label' |
|
1476 | - )); |
|
1477 | - |
|
1478 | - // input example |
|
1479 | - $output .= aui()->input(array( |
|
1480 | - 'type' => 'url', |
|
1481 | - 'id' => 'text-example2', |
|
1482 | - 'name' => 'text-example', |
|
1483 | - 'placeholder' => 'url placeholder', |
|
1484 | - 'title' => 'Text input example', |
|
1485 | - 'value' => '', |
|
1486 | - 'required' => false, |
|
1487 | - 'help_text' => 'help text', |
|
1488 | - 'label' => 'Text input example label' |
|
1489 | - )); |
|
1490 | - |
|
1491 | - // checkbox example |
|
1492 | - $output .= aui()->input(array( |
|
1493 | - 'type' => 'checkbox', |
|
1494 | - 'id' => 'checkbox-example', |
|
1495 | - 'name' => 'checkbox-example', |
|
1496 | - 'placeholder' => 'checkbox-example', |
|
1497 | - 'title' => 'Checkbox example', |
|
1498 | - 'value' => '1', |
|
1499 | - 'checked' => true, |
|
1500 | - 'required' => false, |
|
1501 | - 'help_text' => 'help text', |
|
1502 | - 'label' => 'Checkbox checked' |
|
1503 | - )); |
|
1504 | - |
|
1505 | - // checkbox example |
|
1506 | - $output .= aui()->input(array( |
|
1507 | - 'type' => 'checkbox', |
|
1508 | - 'id' => 'checkbox-example2', |
|
1509 | - 'name' => 'checkbox-example2', |
|
1510 | - 'placeholder' => 'checkbox-example', |
|
1511 | - 'title' => 'Checkbox example', |
|
1512 | - 'value' => '1', |
|
1513 | - 'checked' => false, |
|
1514 | - 'required' => false, |
|
1515 | - 'help_text' => 'help text', |
|
1516 | - 'label' => 'Checkbox un-checked' |
|
1517 | - )); |
|
1518 | - |
|
1519 | - // switch example |
|
1520 | - $output .= aui()->input(array( |
|
1521 | - 'type' => 'checkbox', |
|
1522 | - 'id' => 'switch-example', |
|
1523 | - 'name' => 'switch-example', |
|
1524 | - 'placeholder' => 'checkbox-example', |
|
1525 | - 'title' => 'Switch example', |
|
1526 | - 'value' => '1', |
|
1527 | - 'checked' => true, |
|
1528 | - 'switch' => true, |
|
1529 | - 'required' => false, |
|
1530 | - 'help_text' => 'help text', |
|
1531 | - 'label' => 'Switch on' |
|
1532 | - )); |
|
1533 | - |
|
1534 | - // switch example |
|
1535 | - $output .= aui()->input(array( |
|
1536 | - 'type' => 'checkbox', |
|
1537 | - 'id' => 'switch-example2', |
|
1538 | - 'name' => 'switch-example2', |
|
1539 | - 'placeholder' => 'checkbox-example', |
|
1540 | - 'title' => 'Switch example', |
|
1541 | - 'value' => '1', |
|
1542 | - 'checked' => false, |
|
1543 | - 'switch' => true, |
|
1544 | - 'required' => false, |
|
1545 | - 'help_text' => 'help text', |
|
1546 | - 'label' => 'Switch off' |
|
1547 | - )); |
|
1548 | - |
|
1549 | - // close form |
|
1550 | - $output .= "</form>"; |
|
1551 | - |
|
1552 | - return $output; |
|
1553 | - } |
|
1554 | - |
|
1555 | - } |
|
1556 | - |
|
1557 | - /** |
|
1558 | - * Run the class if found. |
|
1559 | - */ |
|
1560 | - AyeCode_UI_Settings::instance(); |
|
1178 | + '.nav-pills .nav-link.active' => array('b'), |
|
1179 | + '.nav-pills .show>.nav-link' => array('b'), |
|
1180 | + '.page-link' => array('c'), |
|
1181 | + '.page-item.active .page-link' => array('b','o'), |
|
1182 | + '.badge-primary' => array('b'), |
|
1183 | + '.alert-primary' => array('b','o'), |
|
1184 | + '.progress-bar' => array('b'), |
|
1185 | + '.list-group-item.active' => array('b','o'), |
|
1186 | + '.bg-primary' => array('b','f'), |
|
1187 | + '.btn-link.btn-primary' => array('c'), |
|
1188 | + '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1189 | + ); |
|
1190 | + |
|
1191 | + $important_selectors = array( |
|
1192 | + '.bg-primary' => array('b','f'), |
|
1193 | + '.border-primary' => array('o'), |
|
1194 | + '.text-primary' => array('c'), |
|
1195 | + ); |
|
1196 | + |
|
1197 | + $color = array(); |
|
1198 | + $color_i = array(); |
|
1199 | + $background = array(); |
|
1200 | + $background_i = array(); |
|
1201 | + $border = array(); |
|
1202 | + $border_i = array(); |
|
1203 | + $fill = array(); |
|
1204 | + $fill_i = array(); |
|
1205 | + |
|
1206 | + $output = ''; |
|
1207 | + |
|
1208 | + // build rules into each type |
|
1209 | + foreach($selectors as $selector => $types){ |
|
1210 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1211 | + $types = array_combine($types,$types); |
|
1212 | + if(isset($types['c'])){$color[] = $selector;} |
|
1213 | + if(isset($types['b'])){$background[] = $selector;} |
|
1214 | + if(isset($types['o'])){$border[] = $selector;} |
|
1215 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1216 | + } |
|
1217 | + |
|
1218 | + // build rules into each type |
|
1219 | + foreach($important_selectors as $selector => $types){ |
|
1220 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1221 | + $types = array_combine($types,$types); |
|
1222 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1223 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1224 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1225 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1226 | + } |
|
1227 | + |
|
1228 | + // add any color rules |
|
1229 | + if(!empty($color)){ |
|
1230 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1231 | + } |
|
1232 | + if(!empty($color_i)){ |
|
1233 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1234 | + } |
|
1235 | + |
|
1236 | + // add any background color rules |
|
1237 | + if(!empty($background)){ |
|
1238 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1239 | + } |
|
1240 | + if(!empty($background_i)){ |
|
1241 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1242 | + } |
|
1243 | + |
|
1244 | + // add any border color rules |
|
1245 | + if(!empty($border)){ |
|
1246 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1247 | + } |
|
1248 | + if(!empty($border_i)){ |
|
1249 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1250 | + } |
|
1251 | + |
|
1252 | + // add any fill color rules |
|
1253 | + if(!empty($fill)){ |
|
1254 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1255 | + } |
|
1256 | + if(!empty($fill_i)){ |
|
1257 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1258 | + } |
|
1259 | + |
|
1260 | + |
|
1261 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1262 | + |
|
1263 | + // darken |
|
1264 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1265 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1266 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1267 | + |
|
1268 | + // lighten |
|
1269 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1270 | + |
|
1271 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1272 | + $op_25 = $color_code."40"; // 25% opacity |
|
1273 | + |
|
1274 | + |
|
1275 | + // button states |
|
1276 | + $output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1277 | + $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;} "; |
|
1278 | + $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.";} "; |
|
1279 | + $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;} "; |
|
1280 | + |
|
1281 | + |
|
1282 | + // dropdown's |
|
1283 | + $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1284 | + |
|
1285 | + |
|
1286 | + // input states |
|
1287 | + $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1288 | + |
|
1289 | + // page link |
|
1290 | + $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1291 | + |
|
1292 | + return $output; |
|
1293 | + } |
|
1294 | + |
|
1295 | + public static function css_secondary($color_code,$compatibility){; |
|
1296 | + $color_code = sanitize_hex_color($color_code); |
|
1297 | + if(!$color_code){return '';} |
|
1298 | + /** |
|
1299 | + * c = color, b = background color, o = border-color, f = fill |
|
1300 | + */ |
|
1301 | + $selectors = array( |
|
1302 | + '.btn-secondary' => array('b','o'), |
|
1303 | + '.btn-secondary.disabled' => array('b','o'), |
|
1304 | + '.btn-secondary:disabled' => array('b','o'), |
|
1305 | + '.btn-outline-secondary' => array('c','o'), |
|
1306 | + '.btn-outline-secondary:hover' => array('b','o'), |
|
1307 | + '.btn-outline-secondary.disabled' => array('c'), |
|
1308 | + '.btn-outline-secondary:disabled' => array('c'), |
|
1309 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1310 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1311 | + '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1312 | + '.badge-secondary' => array('b'), |
|
1313 | + '.alert-secondary' => array('b','o'), |
|
1314 | + '.btn-link.btn-secondary' => array('c'), |
|
1315 | + ); |
|
1316 | + |
|
1317 | + $important_selectors = array( |
|
1318 | + '.bg-secondary' => array('b','f'), |
|
1319 | + '.border-secondary' => array('o'), |
|
1320 | + '.text-secondary' => array('c'), |
|
1321 | + ); |
|
1322 | + |
|
1323 | + $color = array(); |
|
1324 | + $color_i = array(); |
|
1325 | + $background = array(); |
|
1326 | + $background_i = array(); |
|
1327 | + $border = array(); |
|
1328 | + $border_i = array(); |
|
1329 | + $fill = array(); |
|
1330 | + $fill_i = array(); |
|
1331 | + |
|
1332 | + $output = ''; |
|
1333 | + |
|
1334 | + // build rules into each type |
|
1335 | + foreach($selectors as $selector => $types){ |
|
1336 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1337 | + $types = array_combine($types,$types); |
|
1338 | + if(isset($types['c'])){$color[] = $selector;} |
|
1339 | + if(isset($types['b'])){$background[] = $selector;} |
|
1340 | + if(isset($types['o'])){$border[] = $selector;} |
|
1341 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1342 | + } |
|
1343 | + |
|
1344 | + // build rules into each type |
|
1345 | + foreach($important_selectors as $selector => $types){ |
|
1346 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1347 | + $types = array_combine($types,$types); |
|
1348 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1349 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1350 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1351 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1352 | + } |
|
1353 | + |
|
1354 | + // add any color rules |
|
1355 | + if(!empty($color)){ |
|
1356 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1357 | + } |
|
1358 | + if(!empty($color_i)){ |
|
1359 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1360 | + } |
|
1361 | + |
|
1362 | + // add any background color rules |
|
1363 | + if(!empty($background)){ |
|
1364 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1365 | + } |
|
1366 | + if(!empty($background_i)){ |
|
1367 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1368 | + } |
|
1369 | + |
|
1370 | + // add any border color rules |
|
1371 | + if(!empty($border)){ |
|
1372 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1373 | + } |
|
1374 | + if(!empty($border_i)){ |
|
1375 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1376 | + } |
|
1377 | + |
|
1378 | + // add any fill color rules |
|
1379 | + if(!empty($fill)){ |
|
1380 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1381 | + } |
|
1382 | + if(!empty($fill_i)){ |
|
1383 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1384 | + } |
|
1385 | + |
|
1386 | + |
|
1387 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1388 | + |
|
1389 | + // darken |
|
1390 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1391 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1392 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1393 | + |
|
1394 | + // lighten |
|
1395 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1396 | + |
|
1397 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1398 | + $op_25 = $color_code."40"; // 25% opacity |
|
1399 | + |
|
1400 | + |
|
1401 | + // button states |
|
1402 | + $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1403 | + $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;} "; |
|
1404 | + $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.";} "; |
|
1405 | + $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;} "; |
|
1406 | + |
|
1407 | + |
|
1408 | + return $output; |
|
1409 | + } |
|
1410 | + |
|
1411 | + /** |
|
1412 | + * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1413 | + * |
|
1414 | + * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1415 | + * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1416 | + * |
|
1417 | + * @return string |
|
1418 | + */ |
|
1419 | + public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1420 | + $hexCode = ltrim($hexCode, '#'); |
|
1421 | + |
|
1422 | + if (strlen($hexCode) == 3) { |
|
1423 | + $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1424 | + } |
|
1425 | + |
|
1426 | + $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1427 | + |
|
1428 | + foreach ($hexCode as & $color) { |
|
1429 | + $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1430 | + $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1431 | + |
|
1432 | + $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1433 | + } |
|
1434 | + |
|
1435 | + return '#' . implode($hexCode); |
|
1436 | + } |
|
1437 | + |
|
1438 | + /** |
|
1439 | + * Check if we should display examples. |
|
1440 | + */ |
|
1441 | + public function maybe_show_examples(){ |
|
1442 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1443 | + echo "<head>"; |
|
1444 | + wp_head(); |
|
1445 | + echo "</head>"; |
|
1446 | + echo "<body>"; |
|
1447 | + echo $this->get_examples(); |
|
1448 | + echo "</body>"; |
|
1449 | + exit; |
|
1450 | + } |
|
1451 | + } |
|
1452 | + |
|
1453 | + /** |
|
1454 | + * Get developer examples. |
|
1455 | + * |
|
1456 | + * @return string |
|
1457 | + */ |
|
1458 | + public function get_examples(){ |
|
1459 | + $output = ''; |
|
1460 | + |
|
1461 | + |
|
1462 | + // open form |
|
1463 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1464 | + |
|
1465 | + // input example |
|
1466 | + $output .= aui()->input(array( |
|
1467 | + 'type' => 'text', |
|
1468 | + 'id' => 'text-example', |
|
1469 | + 'name' => 'text-example', |
|
1470 | + 'placeholder' => 'text placeholder', |
|
1471 | + 'title' => 'Text input example', |
|
1472 | + 'value' => '', |
|
1473 | + 'required' => false, |
|
1474 | + 'help_text' => 'help text', |
|
1475 | + 'label' => 'Text input example label' |
|
1476 | + )); |
|
1477 | + |
|
1478 | + // input example |
|
1479 | + $output .= aui()->input(array( |
|
1480 | + 'type' => 'url', |
|
1481 | + 'id' => 'text-example2', |
|
1482 | + 'name' => 'text-example', |
|
1483 | + 'placeholder' => 'url placeholder', |
|
1484 | + 'title' => 'Text input example', |
|
1485 | + 'value' => '', |
|
1486 | + 'required' => false, |
|
1487 | + 'help_text' => 'help text', |
|
1488 | + 'label' => 'Text input example label' |
|
1489 | + )); |
|
1490 | + |
|
1491 | + // checkbox example |
|
1492 | + $output .= aui()->input(array( |
|
1493 | + 'type' => 'checkbox', |
|
1494 | + 'id' => 'checkbox-example', |
|
1495 | + 'name' => 'checkbox-example', |
|
1496 | + 'placeholder' => 'checkbox-example', |
|
1497 | + 'title' => 'Checkbox example', |
|
1498 | + 'value' => '1', |
|
1499 | + 'checked' => true, |
|
1500 | + 'required' => false, |
|
1501 | + 'help_text' => 'help text', |
|
1502 | + 'label' => 'Checkbox checked' |
|
1503 | + )); |
|
1504 | + |
|
1505 | + // checkbox example |
|
1506 | + $output .= aui()->input(array( |
|
1507 | + 'type' => 'checkbox', |
|
1508 | + 'id' => 'checkbox-example2', |
|
1509 | + 'name' => 'checkbox-example2', |
|
1510 | + 'placeholder' => 'checkbox-example', |
|
1511 | + 'title' => 'Checkbox example', |
|
1512 | + 'value' => '1', |
|
1513 | + 'checked' => false, |
|
1514 | + 'required' => false, |
|
1515 | + 'help_text' => 'help text', |
|
1516 | + 'label' => 'Checkbox un-checked' |
|
1517 | + )); |
|
1518 | + |
|
1519 | + // switch example |
|
1520 | + $output .= aui()->input(array( |
|
1521 | + 'type' => 'checkbox', |
|
1522 | + 'id' => 'switch-example', |
|
1523 | + 'name' => 'switch-example', |
|
1524 | + 'placeholder' => 'checkbox-example', |
|
1525 | + 'title' => 'Switch example', |
|
1526 | + 'value' => '1', |
|
1527 | + 'checked' => true, |
|
1528 | + 'switch' => true, |
|
1529 | + 'required' => false, |
|
1530 | + 'help_text' => 'help text', |
|
1531 | + 'label' => 'Switch on' |
|
1532 | + )); |
|
1533 | + |
|
1534 | + // switch example |
|
1535 | + $output .= aui()->input(array( |
|
1536 | + 'type' => 'checkbox', |
|
1537 | + 'id' => 'switch-example2', |
|
1538 | + 'name' => 'switch-example2', |
|
1539 | + 'placeholder' => 'checkbox-example', |
|
1540 | + 'title' => 'Switch example', |
|
1541 | + 'value' => '1', |
|
1542 | + 'checked' => false, |
|
1543 | + 'switch' => true, |
|
1544 | + 'required' => false, |
|
1545 | + 'help_text' => 'help text', |
|
1546 | + 'label' => 'Switch off' |
|
1547 | + )); |
|
1548 | + |
|
1549 | + // close form |
|
1550 | + $output .= "</form>"; |
|
1551 | + |
|
1552 | + return $output; |
|
1553 | + } |
|
1554 | + |
|
1555 | + } |
|
1556 | + |
|
1557 | + /** |
|
1558 | + * Run the class if found. |
|
1559 | + */ |
|
1560 | + AyeCode_UI_Settings::instance(); |
|
1561 | 1561 | } |
1562 | 1562 | \ No newline at end of file |
@@ -12,444 +12,444 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Invoice_Notification_Emails { |
14 | 14 | |
15 | - /** |
|
16 | - * The array of invoice email actions. |
|
17 | - * |
|
18 | - * @param array |
|
19 | - */ |
|
20 | - public $invoice_actions; |
|
21 | - |
|
22 | - /** |
|
23 | - * Class constructor |
|
24 | - * |
|
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - |
|
28 | - $this->invoice_actions = apply_filters( |
|
29 | - 'getpaid_notification_email_invoice_triggers', |
|
30 | - array( |
|
31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | - 'getpaid_new_customer_note' => 'user_note', |
|
40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
41 | - ) |
|
42 | - ); |
|
43 | - |
|
44 | - $this->init_hooks(); |
|
45 | - |
|
46 | - } |
|
47 | - |
|
48 | - /** |
|
49 | - * Registers email hooks. |
|
50 | - */ |
|
51 | - public function init_hooks() { |
|
52 | - |
|
53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
55 | - |
|
56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
58 | - } |
|
59 | - } |
|
60 | - |
|
61 | - /** |
|
62 | - * Registers an email hook for an invoice action. |
|
63 | - * |
|
64 | - * @param string $hook |
|
65 | - * @param string|array $email_type |
|
66 | - */ |
|
67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
68 | - |
|
69 | - $email_type = wpinv_parse_list( $email_type ); |
|
70 | - |
|
71 | - foreach ( $email_type as $type ) { |
|
72 | - |
|
73 | - $email = new GetPaid_Notification_Email( $type ); |
|
74 | - |
|
75 | - // Abort if it is not active. |
|
76 | - if ( ! $email->is_active() ) { |
|
77 | - continue; |
|
78 | - } |
|
79 | - |
|
80 | - if ( method_exists( $this, $type ) ) { |
|
81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
82 | - continue; |
|
83 | - } |
|
84 | - |
|
85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
86 | - } |
|
87 | - |
|
88 | - } |
|
89 | - |
|
90 | - /** |
|
91 | - * Filters invoice merge tags. |
|
92 | - * |
|
93 | - * @param array $merge_tags |
|
94 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
95 | - */ |
|
96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
97 | - |
|
98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
99 | - return array_merge( |
|
100 | - $merge_tags, |
|
101 | - $this->get_invoice_merge_tags( $object ) |
|
102 | - ); |
|
103 | - } |
|
104 | - |
|
105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
106 | - return array_merge( |
|
107 | - $merge_tags, |
|
108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
109 | - ); |
|
110 | - } |
|
111 | - |
|
112 | - return $merge_tags; |
|
113 | - |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Generates invoice merge tags. |
|
118 | - * |
|
119 | - * @param WPInv_Invoice $invoice |
|
120 | - * @return array |
|
121 | - */ |
|
122 | - public function get_invoice_merge_tags( $invoice ) { |
|
123 | - |
|
124 | - // Abort if it does not exist. |
|
125 | - if ( ! $invoice->get_id() ) { |
|
126 | - return array(); |
|
127 | - } |
|
128 | - |
|
129 | - $merge_tags = array( |
|
130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
137 | - '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
143 | - '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
148 | - ); |
|
149 | - |
|
150 | - return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
151 | - } |
|
152 | - |
|
153 | - /** |
|
154 | - * Helper function to send an email. |
|
155 | - * |
|
156 | - * @param WPInv_Invoice $invoice |
|
157 | - * @param GetPaid_Notification_Email $email |
|
158 | - * @param string $type |
|
159 | - * @param string|array $recipients |
|
160 | - * @param array $extra_args Extra template args. |
|
161 | - */ |
|
162 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
163 | - |
|
164 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
165 | - |
|
166 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
167 | - $merge_tags = $email->get_merge_tags(); |
|
168 | - |
|
169 | - $result = $mailer->send( |
|
170 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
172 | - $email->get_content( $merge_tags, $extra_args ), |
|
173 | - $email->get_attachments() |
|
174 | - ); |
|
175 | - |
|
176 | - // Maybe send a copy to the admin. |
|
177 | - if ( $email->include_admin_bcc() ) { |
|
178 | - $mailer->send( |
|
179 | - wpinv_get_admin_email(), |
|
180 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
181 | - $email->get_content( $merge_tags ), |
|
182 | - $email->get_attachments() |
|
183 | - ); |
|
184 | - } |
|
185 | - |
|
186 | - if ( ! $result ) { |
|
187 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
188 | - } |
|
189 | - |
|
190 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
191 | - |
|
192 | - return $result; |
|
193 | - } |
|
194 | - |
|
195 | - /** |
|
196 | - * Also send emails to any cc users. |
|
197 | - * |
|
198 | - * @param array $recipients |
|
199 | - * @param GetPaid_Notification_Email $email |
|
200 | - */ |
|
201 | - public function filter_email_recipients( $recipients, $email ) { |
|
202 | - |
|
203 | - if ( ! $email->is_admin_email() ) { |
|
204 | - $cc = $email->object->get_email_cc(); |
|
205 | - |
|
206 | - if ( ! empty( $cc ) ) { |
|
207 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
208 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
209 | - } |
|
210 | - |
|
211 | - } |
|
212 | - |
|
213 | - return $recipients; |
|
214 | - |
|
215 | - } |
|
216 | - |
|
217 | - /** |
|
218 | - * Sends a new invoice notification. |
|
219 | - * |
|
220 | - * @param WPInv_Invoice $invoice |
|
221 | - */ |
|
222 | - public function new_invoice( $invoice ) { |
|
223 | - |
|
224 | - // Only send this email for invoices created via the admin page. |
|
225 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
226 | - return; |
|
227 | - } |
|
228 | - |
|
229 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
230 | - $recipient = wpinv_get_admin_email(); |
|
231 | - |
|
232 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
233 | - |
|
234 | - } |
|
235 | - |
|
236 | - /** |
|
237 | - * Sends a cancelled invoice notification. |
|
238 | - * |
|
239 | - * @param WPInv_Invoice $invoice |
|
240 | - */ |
|
241 | - public function cancelled_invoice( $invoice ) { |
|
15 | + /** |
|
16 | + * The array of invoice email actions. |
|
17 | + * |
|
18 | + * @param array |
|
19 | + */ |
|
20 | + public $invoice_actions; |
|
21 | + |
|
22 | + /** |
|
23 | + * Class constructor |
|
24 | + * |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + |
|
28 | + $this->invoice_actions = apply_filters( |
|
29 | + 'getpaid_notification_email_invoice_triggers', |
|
30 | + array( |
|
31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
39 | + 'getpaid_new_customer_note' => 'user_note', |
|
40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
41 | + ) |
|
42 | + ); |
|
43 | + |
|
44 | + $this->init_hooks(); |
|
45 | + |
|
46 | + } |
|
47 | + |
|
48 | + /** |
|
49 | + * Registers email hooks. |
|
50 | + */ |
|
51 | + public function init_hooks() { |
|
52 | + |
|
53 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
54 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
55 | + |
|
56 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
57 | + $this->init_email_type_hook( $hook, $email_type ); |
|
58 | + } |
|
59 | + } |
|
60 | + |
|
61 | + /** |
|
62 | + * Registers an email hook for an invoice action. |
|
63 | + * |
|
64 | + * @param string $hook |
|
65 | + * @param string|array $email_type |
|
66 | + */ |
|
67 | + public function init_email_type_hook( $hook, $email_type ) { |
|
68 | + |
|
69 | + $email_type = wpinv_parse_list( $email_type ); |
|
70 | + |
|
71 | + foreach ( $email_type as $type ) { |
|
72 | + |
|
73 | + $email = new GetPaid_Notification_Email( $type ); |
|
74 | + |
|
75 | + // Abort if it is not active. |
|
76 | + if ( ! $email->is_active() ) { |
|
77 | + continue; |
|
78 | + } |
|
79 | + |
|
80 | + if ( method_exists( $this, $type ) ) { |
|
81 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
82 | + continue; |
|
83 | + } |
|
84 | + |
|
85 | + do_action( 'getpaid_invoice_init_email_type_hook', $type, $hook ); |
|
86 | + } |
|
87 | + |
|
88 | + } |
|
89 | + |
|
90 | + /** |
|
91 | + * Filters invoice merge tags. |
|
92 | + * |
|
93 | + * @param array $merge_tags |
|
94 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
95 | + */ |
|
96 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
97 | + |
|
98 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
99 | + return array_merge( |
|
100 | + $merge_tags, |
|
101 | + $this->get_invoice_merge_tags( $object ) |
|
102 | + ); |
|
103 | + } |
|
104 | + |
|
105 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
106 | + return array_merge( |
|
107 | + $merge_tags, |
|
108 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
109 | + ); |
|
110 | + } |
|
111 | + |
|
112 | + return $merge_tags; |
|
113 | + |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Generates invoice merge tags. |
|
118 | + * |
|
119 | + * @param WPInv_Invoice $invoice |
|
120 | + * @return array |
|
121 | + */ |
|
122 | + public function get_invoice_merge_tags( $invoice ) { |
|
123 | + |
|
124 | + // Abort if it does not exist. |
|
125 | + if ( ! $invoice->get_id() ) { |
|
126 | + return array(); |
|
127 | + } |
|
128 | + |
|
129 | + $merge_tags = array( |
|
130 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
131 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
132 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
133 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
134 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
135 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
136 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
137 | + '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
138 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
139 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
140 | + '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
141 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
142 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
143 | + '{invoice_quote}' => sanitize_text_field( strtolower( $invoice->get_label() ) ), |
|
144 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_label() ) ), |
|
145 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
146 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
147 | + '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
148 | + ); |
|
149 | + |
|
150 | + return apply_filters( 'getpaid_invoice_email_merge_tags', $merge_tags, $invoice ); |
|
151 | + } |
|
152 | + |
|
153 | + /** |
|
154 | + * Helper function to send an email. |
|
155 | + * |
|
156 | + * @param WPInv_Invoice $invoice |
|
157 | + * @param GetPaid_Notification_Email $email |
|
158 | + * @param string $type |
|
159 | + * @param string|array $recipients |
|
160 | + * @param array $extra_args Extra template args. |
|
161 | + */ |
|
162 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
163 | + |
|
164 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
165 | + |
|
166 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
167 | + $merge_tags = $email->get_merge_tags(); |
|
168 | + |
|
169 | + $result = $mailer->send( |
|
170 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
171 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
172 | + $email->get_content( $merge_tags, $extra_args ), |
|
173 | + $email->get_attachments() |
|
174 | + ); |
|
175 | + |
|
176 | + // Maybe send a copy to the admin. |
|
177 | + if ( $email->include_admin_bcc() ) { |
|
178 | + $mailer->send( |
|
179 | + wpinv_get_admin_email(), |
|
180 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
181 | + $email->get_content( $merge_tags ), |
|
182 | + $email->get_attachments() |
|
183 | + ); |
|
184 | + } |
|
185 | + |
|
186 | + if ( ! $result ) { |
|
187 | + $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
188 | + } |
|
189 | + |
|
190 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
191 | + |
|
192 | + return $result; |
|
193 | + } |
|
194 | + |
|
195 | + /** |
|
196 | + * Also send emails to any cc users. |
|
197 | + * |
|
198 | + * @param array $recipients |
|
199 | + * @param GetPaid_Notification_Email $email |
|
200 | + */ |
|
201 | + public function filter_email_recipients( $recipients, $email ) { |
|
202 | + |
|
203 | + if ( ! $email->is_admin_email() ) { |
|
204 | + $cc = $email->object->get_email_cc(); |
|
205 | + |
|
206 | + if ( ! empty( $cc ) ) { |
|
207 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
208 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
209 | + } |
|
210 | + |
|
211 | + } |
|
212 | + |
|
213 | + return $recipients; |
|
214 | + |
|
215 | + } |
|
216 | + |
|
217 | + /** |
|
218 | + * Sends a new invoice notification. |
|
219 | + * |
|
220 | + * @param WPInv_Invoice $invoice |
|
221 | + */ |
|
222 | + public function new_invoice( $invoice ) { |
|
223 | + |
|
224 | + // Only send this email for invoices created via the admin page. |
|
225 | + if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
226 | + return; |
|
227 | + } |
|
228 | + |
|
229 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
230 | + $recipient = wpinv_get_admin_email(); |
|
231 | + |
|
232 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
233 | + |
|
234 | + } |
|
235 | + |
|
236 | + /** |
|
237 | + * Sends a cancelled invoice notification. |
|
238 | + * |
|
239 | + * @param WPInv_Invoice $invoice |
|
240 | + */ |
|
241 | + public function cancelled_invoice( $invoice ) { |
|
242 | 242 | |
243 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
244 | - $recipient = wpinv_get_admin_email(); |
|
243 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
244 | + $recipient = wpinv_get_admin_email(); |
|
245 | 245 | |
246 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
246 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
247 | 247 | |
248 | - } |
|
248 | + } |
|
249 | 249 | |
250 | - /** |
|
251 | - * Sends a failed invoice notification. |
|
252 | - * |
|
253 | - * @param WPInv_Invoice $invoice |
|
254 | - */ |
|
255 | - public function failed_invoice( $invoice ) { |
|
250 | + /** |
|
251 | + * Sends a failed invoice notification. |
|
252 | + * |
|
253 | + * @param WPInv_Invoice $invoice |
|
254 | + */ |
|
255 | + public function failed_invoice( $invoice ) { |
|
256 | 256 | |
257 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
258 | - $recipient = wpinv_get_admin_email(); |
|
257 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
258 | + $recipient = wpinv_get_admin_email(); |
|
259 | 259 | |
260 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
260 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
261 | 261 | |
262 | - } |
|
262 | + } |
|
263 | 263 | |
264 | - /** |
|
265 | - * Sends a notification whenever an invoice is put on hold. |
|
266 | - * |
|
267 | - * @param WPInv_Invoice $invoice |
|
268 | - */ |
|
269 | - public function onhold_invoice( $invoice ) { |
|
264 | + /** |
|
265 | + * Sends a notification whenever an invoice is put on hold. |
|
266 | + * |
|
267 | + * @param WPInv_Invoice $invoice |
|
268 | + */ |
|
269 | + public function onhold_invoice( $invoice ) { |
|
270 | 270 | |
271 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | - $recipient = $invoice->get_email(); |
|
271 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
272 | + $recipient = $invoice->get_email(); |
|
273 | 273 | |
274 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
274 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
275 | 275 | |
276 | - } |
|
276 | + } |
|
277 | 277 | |
278 | - /** |
|
279 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
280 | - * |
|
281 | - * @param WPInv_Invoice $invoice |
|
282 | - */ |
|
283 | - public function processing_invoice( $invoice ) { |
|
278 | + /** |
|
279 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
280 | + * |
|
281 | + * @param WPInv_Invoice $invoice |
|
282 | + */ |
|
283 | + public function processing_invoice( $invoice ) { |
|
284 | 284 | |
285 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
286 | - $recipient = $invoice->get_email(); |
|
285 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
286 | + $recipient = $invoice->get_email(); |
|
287 | 287 | |
288 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
288 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
289 | 289 | |
290 | - } |
|
290 | + } |
|
291 | 291 | |
292 | - /** |
|
293 | - * Sends a notification whenever an invoice is paid. |
|
294 | - * |
|
295 | - * @param WPInv_Invoice $invoice |
|
296 | - */ |
|
297 | - public function completed_invoice( $invoice ) { |
|
292 | + /** |
|
293 | + * Sends a notification whenever an invoice is paid. |
|
294 | + * |
|
295 | + * @param WPInv_Invoice $invoice |
|
296 | + */ |
|
297 | + public function completed_invoice( $invoice ) { |
|
298 | 298 | |
299 | - // (Maybe) abort if it is a renewal invoice. |
|
300 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
301 | - return; |
|
302 | - } |
|
299 | + // (Maybe) abort if it is a renewal invoice. |
|
300 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
301 | + return; |
|
302 | + } |
|
303 | 303 | |
304 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
305 | - $recipient = $invoice->get_email(); |
|
304 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
305 | + $recipient = $invoice->get_email(); |
|
306 | 306 | |
307 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
307 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
308 | 308 | |
309 | - } |
|
309 | + } |
|
310 | 310 | |
311 | - /** |
|
312 | - * Sends a notification whenever an invoice is refunded. |
|
313 | - * |
|
314 | - * @param WPInv_Invoice $invoice |
|
315 | - */ |
|
316 | - public function refunded_invoice( $invoice ) { |
|
311 | + /** |
|
312 | + * Sends a notification whenever an invoice is refunded. |
|
313 | + * |
|
314 | + * @param WPInv_Invoice $invoice |
|
315 | + */ |
|
316 | + public function refunded_invoice( $invoice ) { |
|
317 | 317 | |
318 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
319 | - $recipient = $invoice->get_email(); |
|
318 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
319 | + $recipient = $invoice->get_email(); |
|
320 | 320 | |
321 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
321 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
322 | 322 | |
323 | - } |
|
323 | + } |
|
324 | 324 | |
325 | - /** |
|
326 | - * Notifies a user about new invoices |
|
327 | - * |
|
328 | - * @param WPInv_Invoice $invoice |
|
329 | - */ |
|
330 | - public function user_invoice( $invoice ) { |
|
325 | + /** |
|
326 | + * Notifies a user about new invoices |
|
327 | + * |
|
328 | + * @param WPInv_Invoice $invoice |
|
329 | + */ |
|
330 | + public function user_invoice( $invoice ) { |
|
331 | 331 | |
332 | - // Only send this email for invoices created via the admin page. |
|
333 | - if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
334 | - return; |
|
335 | - } |
|
332 | + // Only send this email for invoices created via the admin page. |
|
333 | + if ( ! $invoice->is_type( 'invoice' ) || $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
334 | + return; |
|
335 | + } |
|
336 | 336 | |
337 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
338 | - $recipient = $invoice->get_email(); |
|
337 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
338 | + $recipient = $invoice->get_email(); |
|
339 | 339 | |
340 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
340 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
341 | 341 | |
342 | - } |
|
342 | + } |
|
343 | 343 | |
344 | - /** |
|
345 | - * Checks if an invoice is a payment form invoice. |
|
346 | - * |
|
347 | - * @param int $invoice |
|
348 | - * @return bool |
|
349 | - */ |
|
350 | - public function is_payment_form_invoice( $invoice ) { |
|
351 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
352 | - } |
|
344 | + /** |
|
345 | + * Checks if an invoice is a payment form invoice. |
|
346 | + * |
|
347 | + * @param int $invoice |
|
348 | + * @return bool |
|
349 | + */ |
|
350 | + public function is_payment_form_invoice( $invoice ) { |
|
351 | + return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
352 | + } |
|
353 | 353 | |
354 | - /** |
|
355 | - * Notifies admin about new invoice notes |
|
356 | - * |
|
357 | - * @param WPInv_Invoice $invoice |
|
358 | - * @param string $note |
|
359 | - */ |
|
360 | - public function user_note( $invoice, $note ) { |
|
354 | + /** |
|
355 | + * Notifies admin about new invoice notes |
|
356 | + * |
|
357 | + * @param WPInv_Invoice $invoice |
|
358 | + * @param string $note |
|
359 | + */ |
|
360 | + public function user_note( $invoice, $note ) { |
|
361 | 361 | |
362 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
363 | - $recipient = $invoice->get_email(); |
|
364 | - |
|
365 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
366 | - |
|
367 | - } |
|
362 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
363 | + $recipient = $invoice->get_email(); |
|
364 | + |
|
365 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
366 | + |
|
367 | + } |
|
368 | 368 | |
369 | - /** |
|
370 | - * (Force) Sends overdue notices. |
|
371 | - * |
|
372 | - * @param WPInv_Invoice $invoice |
|
373 | - */ |
|
374 | - public function force_send_overdue_notice( $invoice ) { |
|
375 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
376 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
377 | - } |
|
378 | - |
|
379 | - /** |
|
380 | - * Sends overdue notices. |
|
381 | - * |
|
382 | - * @TODO: Create an invoices query class. |
|
383 | - */ |
|
384 | - public function overdue() { |
|
385 | - global $wpdb; |
|
386 | - |
|
387 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
388 | - |
|
389 | - // Fetch reminder days. |
|
390 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
391 | - |
|
392 | - // Abort if non is set. |
|
393 | - if ( empty( $reminder_days ) ) { |
|
394 | - return; |
|
395 | - } |
|
396 | - |
|
397 | - // Retrieve date query. |
|
398 | - $date_query = $this->get_date_query( $reminder_days ); |
|
399 | - |
|
400 | - // Invoices table. |
|
401 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
402 | - |
|
403 | - // Fetch invoices. |
|
404 | - $invoices = $wpdb->get_col( |
|
405 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
369 | + /** |
|
370 | + * (Force) Sends overdue notices. |
|
371 | + * |
|
372 | + * @param WPInv_Invoice $invoice |
|
373 | + */ |
|
374 | + public function force_send_overdue_notice( $invoice ) { |
|
375 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
376 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
377 | + } |
|
378 | + |
|
379 | + /** |
|
380 | + * Sends overdue notices. |
|
381 | + * |
|
382 | + * @TODO: Create an invoices query class. |
|
383 | + */ |
|
384 | + public function overdue() { |
|
385 | + global $wpdb; |
|
386 | + |
|
387 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
388 | + |
|
389 | + // Fetch reminder days. |
|
390 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
391 | + |
|
392 | + // Abort if non is set. |
|
393 | + if ( empty( $reminder_days ) ) { |
|
394 | + return; |
|
395 | + } |
|
396 | + |
|
397 | + // Retrieve date query. |
|
398 | + $date_query = $this->get_date_query( $reminder_days ); |
|
399 | + |
|
400 | + // Invoices table. |
|
401 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
402 | + |
|
403 | + // Fetch invoices. |
|
404 | + $invoices = $wpdb->get_col( |
|
405 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
406 | 406 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
407 | 407 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
408 | 408 | |
409 | - foreach ( $invoices as $invoice ) { |
|
409 | + foreach ( $invoices as $invoice ) { |
|
410 | 410 | |
411 | - // Only send this email for invoices created via the admin page. |
|
412 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
413 | - $invoice = new WPInv_Invoice( $invoice ); |
|
414 | - $email->object = $invoice; |
|
411 | + // Only send this email for invoices created via the admin page. |
|
412 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
413 | + $invoice = new WPInv_Invoice( $invoice ); |
|
414 | + $email->object = $invoice; |
|
415 | 415 | |
416 | - if ( $invoice->needs_payment() ) { |
|
417 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
418 | - } |
|
416 | + if ( $invoice->needs_payment() ) { |
|
417 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
418 | + } |
|
419 | 419 | |
420 | - } |
|
420 | + } |
|
421 | 421 | |
422 | - } |
|
422 | + } |
|
423 | 423 | |
424 | - } |
|
424 | + } |
|
425 | 425 | |
426 | - /** |
|
427 | - * Calculates the date query for an invoices query |
|
428 | - * |
|
429 | - * @param array $reminder_days |
|
430 | - * @return string |
|
431 | - */ |
|
432 | - public function get_date_query( $reminder_days ) { |
|
426 | + /** |
|
427 | + * Calculates the date query for an invoices query |
|
428 | + * |
|
429 | + * @param array $reminder_days |
|
430 | + * @return string |
|
431 | + */ |
|
432 | + public function get_date_query( $reminder_days ) { |
|
433 | 433 | |
434 | - $date_query = array( |
|
435 | - 'relation' => 'OR' |
|
436 | - ); |
|
434 | + $date_query = array( |
|
435 | + 'relation' => 'OR' |
|
436 | + ); |
|
437 | 437 | |
438 | - foreach ( $reminder_days as $days ) { |
|
439 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
438 | + foreach ( $reminder_days as $days ) { |
|
439 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
440 | 440 | |
441 | - $date_query[] = array( |
|
442 | - 'year' => $date['year'], |
|
443 | - 'month' => $date['month'], |
|
444 | - 'day' => $date['day'], |
|
445 | - ); |
|
441 | + $date_query[] = array( |
|
442 | + 'year' => $date['year'], |
|
443 | + 'month' => $date['month'], |
|
444 | + 'day' => $date['day'], |
|
445 | + ); |
|
446 | 446 | |
447 | - } |
|
447 | + } |
|
448 | 448 | |
449 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
449 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
450 | 450 | |
451 | - return $date_query->get_sql(); |
|
451 | + return $date_query->get_sql(); |
|
452 | 452 | |
453 | - } |
|
453 | + } |
|
454 | 454 | |
455 | 455 | } |
@@ -36,36 +36,36 @@ discard block |
||
36 | 36 | 'desc_tip' => true, |
37 | 37 | 'default' => '', |
38 | 38 | 'advanced' => false |
39 | - ), |
|
39 | + ), |
|
40 | 40 | |
41 | 41 | 'form' => array( |
42 | - 'title' => __( 'Form', 'invoicing' ), |
|
43 | - 'desc' => __( 'Enter a form id in case you want to display a specific payment form', 'invoicing' ), |
|
44 | - 'type' => 'text', |
|
45 | - 'desc_tip' => true, |
|
46 | - 'default' => '', |
|
47 | - 'placeholder' => __('1','invoicing'), |
|
48 | - 'advanced' => false |
|
49 | - ), |
|
50 | - |
|
51 | - 'item' => array( |
|
52 | - 'title' => __( 'Items', 'invoicing' ), |
|
53 | - 'desc' => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2. This will be ignored in case you specify a form above. Enter 0 as the quantity to let users select their own quantities', 'invoicing' ), |
|
54 | - 'type' => 'text', |
|
55 | - 'desc_tip' => true, |
|
56 | - 'default' => '', |
|
57 | - 'placeholder' => __('1','invoicing'), |
|
58 | - 'advanced' => false |
|
59 | - ), |
|
42 | + 'title' => __( 'Form', 'invoicing' ), |
|
43 | + 'desc' => __( 'Enter a form id in case you want to display a specific payment form', 'invoicing' ), |
|
44 | + 'type' => 'text', |
|
45 | + 'desc_tip' => true, |
|
46 | + 'default' => '', |
|
47 | + 'placeholder' => __('1','invoicing'), |
|
48 | + 'advanced' => false |
|
49 | + ), |
|
50 | + |
|
51 | + 'item' => array( |
|
52 | + 'title' => __( 'Items', 'invoicing' ), |
|
53 | + 'desc' => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2. This will be ignored in case you specify a form above. Enter 0 as the quantity to let users select their own quantities', 'invoicing' ), |
|
54 | + 'type' => 'text', |
|
55 | + 'desc_tip' => true, |
|
56 | + 'default' => '', |
|
57 | + 'placeholder' => __('1','invoicing'), |
|
58 | + 'advanced' => false |
|
59 | + ), |
|
60 | 60 | |
61 | 61 | 'button' => array( |
62 | - 'title' => __( 'Button', 'invoicing' ), |
|
63 | - 'desc' => __( 'Enter button label in case you would like to display the forms in a popup.', 'invoicing' ), |
|
64 | - 'type' => 'text', |
|
65 | - 'desc_tip' => true, |
|
66 | - 'default' => '', |
|
67 | - 'advanced' => false |
|
68 | - ) |
|
62 | + 'title' => __( 'Button', 'invoicing' ), |
|
63 | + 'desc' => __( 'Enter button label in case you would like to display the forms in a popup.', 'invoicing' ), |
|
64 | + 'type' => 'text', |
|
65 | + 'desc_tip' => true, |
|
66 | + 'default' => '', |
|
67 | + 'advanced' => false |
|
68 | + ) |
|
69 | 69 | |
70 | 70 | ) |
71 | 71 | |
@@ -75,96 +75,96 @@ discard block |
||
75 | 75 | parent::__construct( $options ); |
76 | 76 | } |
77 | 77 | |
78 | - /** |
|
79 | - * The Super block output function. |
|
80 | - * |
|
81 | - * @param array $args |
|
82 | - * @param array $widget_args |
|
83 | - * @param string $content |
|
84 | - * |
|
85 | - * @return string |
|
86 | - */ |
|
78 | + /** |
|
79 | + * The Super block output function. |
|
80 | + * |
|
81 | + * @param array $args |
|
82 | + * @param array $widget_args |
|
83 | + * @param string $content |
|
84 | + * |
|
85 | + * @return string |
|
86 | + */ |
|
87 | 87 | public function output( $args = array(), $widget_args = array(), $content = '' ) { |
88 | 88 | |
89 | - // Is the shortcode set up correctly? |
|
90 | - if ( empty( $args['form'] ) && empty( $args['item'] ) ) { |
|
91 | - return aui()->alert( |
|
92 | - array( |
|
93 | - 'type' => 'warning', |
|
94 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
95 | - ) |
|
96 | - ); |
|
97 | - } |
|
98 | - |
|
99 | - // Payment form or button? |
|
100 | - if ( ! empty( $args['form'] ) ) { |
|
101 | - return $this->handle_payment_form( $args ); |
|
102 | - } else { |
|
103 | - return $this->handle_buy_item( $args ); |
|
104 | - } |
|
105 | - |
|
106 | - } |
|
107 | - |
|
108 | - /** |
|
109 | - * Displaying a payment form |
|
110 | - * |
|
111 | - * @return string |
|
112 | - */ |
|
89 | + // Is the shortcode set up correctly? |
|
90 | + if ( empty( $args['form'] ) && empty( $args['item'] ) ) { |
|
91 | + return aui()->alert( |
|
92 | + array( |
|
93 | + 'type' => 'warning', |
|
94 | + 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
95 | + ) |
|
96 | + ); |
|
97 | + } |
|
98 | + |
|
99 | + // Payment form or button? |
|
100 | + if ( ! empty( $args['form'] ) ) { |
|
101 | + return $this->handle_payment_form( $args ); |
|
102 | + } else { |
|
103 | + return $this->handle_buy_item( $args ); |
|
104 | + } |
|
105 | + |
|
106 | + } |
|
107 | + |
|
108 | + /** |
|
109 | + * Displaying a payment form |
|
110 | + * |
|
111 | + * @return string |
|
112 | + */ |
|
113 | 113 | protected function handle_payment_form( $args = array() ) { |
114 | 114 | |
115 | - if ( empty( $args['button'] ) ) { |
|
116 | - ob_start(); |
|
117 | - getpaid_display_payment_form( $args['form'] ); |
|
118 | - return ob_get_clean(); |
|
119 | - } |
|
115 | + if ( empty( $args['button'] ) ) { |
|
116 | + ob_start(); |
|
117 | + getpaid_display_payment_form( $args['form'] ); |
|
118 | + return ob_get_clean(); |
|
119 | + } |
|
120 | 120 | |
121 | - return $this->payment_form_button( $args['form'], $args['button'] ); |
|
122 | - } |
|
121 | + return $this->payment_form_button( $args['form'], $args['button'] ); |
|
122 | + } |
|
123 | 123 | |
124 | - /** |
|
125 | - * Displays a payment form button. |
|
126 | - * |
|
127 | - * @return string |
|
128 | - */ |
|
124 | + /** |
|
125 | + * Displays a payment form button. |
|
126 | + * |
|
127 | + * @return string |
|
128 | + */ |
|
129 | 129 | protected function payment_form_button( $form, $button ) { |
130 | - return getpaid_get_payment_button( $button, $form ); |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Selling an item |
|
135 | - * |
|
136 | - * @return string |
|
137 | - */ |
|
130 | + return getpaid_get_payment_button( $button, $form ); |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Selling an item |
|
135 | + * |
|
136 | + * @return string |
|
137 | + */ |
|
138 | 138 | protected function handle_buy_item( $args = array() ) { |
139 | 139 | |
140 | - if ( empty( $args['button'] ) ) { |
|
141 | - return $this->buy_item_form( $args['item'] ); |
|
142 | - } |
|
140 | + if ( empty( $args['button'] ) ) { |
|
141 | + return $this->buy_item_form( $args['item'] ); |
|
142 | + } |
|
143 | 143 | |
144 | - return $this->buy_item_button( $args['item'], $args['button'] ); |
|
144 | + return $this->buy_item_button( $args['item'], $args['button'] ); |
|
145 | 145 | |
146 | - } |
|
146 | + } |
|
147 | 147 | |
148 | - /** |
|
149 | - * Displays a buy item form. |
|
150 | - * |
|
151 | - * @return string |
|
152 | - */ |
|
148 | + /** |
|
149 | + * Displays a buy item form. |
|
150 | + * |
|
151 | + * @return string |
|
152 | + */ |
|
153 | 153 | protected function buy_item_form( $item ) { |
154 | - $items = getpaid_convert_items_to_array( $item ); |
|
155 | - ob_start(); |
|
156 | - getpaid_display_item_payment_form( $items ); |
|
157 | - return ob_get_clean(); |
|
158 | - } |
|
159 | - |
|
160 | - /** |
|
161 | - * Displays a buy item button. |
|
162 | - * |
|
163 | - * @return string |
|
164 | - */ |
|
154 | + $items = getpaid_convert_items_to_array( $item ); |
|
155 | + ob_start(); |
|
156 | + getpaid_display_item_payment_form( $items ); |
|
157 | + return ob_get_clean(); |
|
158 | + } |
|
159 | + |
|
160 | + /** |
|
161 | + * Displays a buy item button. |
|
162 | + * |
|
163 | + * @return string |
|
164 | + */ |
|
165 | 165 | protected function buy_item_button( $item, $button ) { |
166 | - $button = getpaid_get_payment_button( $button, null, $item ); |
|
167 | - return apply_filters( 'getpaid_buy_item_button_widget', $button, $item ); |
|
166 | + $button = getpaid_get_payment_button( $button, null, $item ); |
|
167 | + return apply_filters( 'getpaid_buy_item_button_widget', $button, $item ); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | } |
@@ -13,58 +13,58 @@ discard block |
||
13 | 13 | class GetPaid_Authorize_Net_Gateway extends GetPaid_Authorize_Net_Legacy_Gateway { |
14 | 14 | |
15 | 15 | /** |
16 | - * Payment method id. |
|
17 | - * |
|
18 | - * @var string |
|
19 | - */ |
|
16 | + * Payment method id. |
|
17 | + * |
|
18 | + * @var string |
|
19 | + */ |
|
20 | 20 | public $id = 'authorizenet'; |
21 | 21 | |
22 | 22 | /** |
23 | - * An array of features that this gateway supports. |
|
24 | - * |
|
25 | - * @var array |
|
26 | - */ |
|
23 | + * An array of features that this gateway supports. |
|
24 | + * |
|
25 | + * @var array |
|
26 | + */ |
|
27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'tokens', 'addons' ); |
28 | 28 | |
29 | 29 | /** |
30 | - * Payment method order. |
|
31 | - * |
|
32 | - * @var int |
|
33 | - */ |
|
30 | + * Payment method order. |
|
31 | + * |
|
32 | + * @var int |
|
33 | + */ |
|
34 | 34 | public $order = 4; |
35 | 35 | |
36 | 36 | /** |
37 | - * Endpoint for requests from Authorize.net. |
|
38 | - * |
|
39 | - * @var string |
|
40 | - */ |
|
41 | - protected $notify_url; |
|
42 | - |
|
43 | - /** |
|
44 | - * Endpoint for requests to Authorize.net. |
|
45 | - * |
|
46 | - * @var string |
|
47 | - */ |
|
37 | + * Endpoint for requests from Authorize.net. |
|
38 | + * |
|
39 | + * @var string |
|
40 | + */ |
|
41 | + protected $notify_url; |
|
42 | + |
|
43 | + /** |
|
44 | + * Endpoint for requests to Authorize.net. |
|
45 | + * |
|
46 | + * @var string |
|
47 | + */ |
|
48 | 48 | protected $endpoint; |
49 | 49 | |
50 | 50 | /** |
51 | - * Currencies this gateway is allowed for. |
|
52 | - * |
|
53 | - * @var array |
|
54 | - */ |
|
55 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
51 | + * Currencies this gateway is allowed for. |
|
52 | + * |
|
53 | + * @var array |
|
54 | + */ |
|
55 | + public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
56 | 56 | |
57 | 57 | /** |
58 | - * URL to view a transaction. |
|
59 | - * |
|
60 | - * @var string |
|
61 | - */ |
|
58 | + * URL to view a transaction. |
|
59 | + * |
|
60 | + * @var string |
|
61 | + */ |
|
62 | 62 | public $view_transaction_url = 'https://{sandbox}authorize.net/ui/themes/sandbox/Transaction/TransactionReceipt.aspx?transid=%s'; |
63 | 63 | |
64 | 64 | /** |
65 | - * Class constructor. |
|
66 | - */ |
|
67 | - public function __construct() { |
|
65 | + * Class constructor. |
|
66 | + */ |
|
67 | + public function __construct() { |
|
68 | 68 | |
69 | 69 | $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
70 | 70 | $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Displays the payment method select field. |
|
80 | - * |
|
81 | - * @param int $invoice_id 0 or invoice id. |
|
82 | - * @param GetPaid_Payment_Form $form Current payment form. |
|
83 | - */ |
|
79 | + * Displays the payment method select field. |
|
80 | + * |
|
81 | + * @param int $invoice_id 0 or invoice id. |
|
82 | + * @param GetPaid_Payment_Form $form Current payment form. |
|
83 | + */ |
|
84 | 84 | public function payment_fields( $invoice_id, $form ) { |
85 | 85 | |
86 | 86 | // Let the user select a payment method. |
@@ -91,16 +91,16 @@ discard block |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * Creates a customer profile. |
|
95 | - * |
|
96 | - * |
|
97 | - * @param WPInv_Invoice $invoice Invoice. |
|
94 | + * Creates a customer profile. |
|
95 | + * |
|
96 | + * |
|
97 | + * @param WPInv_Invoice $invoice Invoice. |
|
98 | 98 | * @param array $submission_data Posted checkout fields. |
99 | 99 | * @param bool $save Whether or not to save the payment as a token. |
100 | 100 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
101 | - * @return string|WP_Error Payment profile id. |
|
102 | - */ |
|
103 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
101 | + * @return string|WP_Error Payment profile id. |
|
102 | + */ |
|
103 | + public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
104 | 104 | |
105 | 105 | // Remove non-digits from the number |
106 | 106 | $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -167,14 +167,14 @@ discard block |
||
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
170 | - * Retrieves a customer profile. |
|
171 | - * |
|
172 | - * |
|
173 | - * @param string $profile_id profile id. |
|
174 | - * @return string|WP_Error Profile id. |
|
170 | + * Retrieves a customer profile. |
|
171 | + * |
|
172 | + * |
|
173 | + * @param string $profile_id profile id. |
|
174 | + * @return string|WP_Error Profile id. |
|
175 | 175 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
176 | - */ |
|
177 | - public function get_customer_profile( $profile_id ) { |
|
176 | + */ |
|
177 | + public function get_customer_profile( $profile_id ) { |
|
178 | 178 | |
179 | 179 | // Generate args. |
180 | 180 | $args = array( |
@@ -189,17 +189,17 @@ discard block |
||
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
192 | - * Creates a customer profile. |
|
193 | - * |
|
194 | - * |
|
192 | + * Creates a customer profile. |
|
193 | + * |
|
194 | + * |
|
195 | 195 | * @param string $profile_id profile id. |
196 | - * @param WPInv_Invoice $invoice Invoice. |
|
196 | + * @param WPInv_Invoice $invoice Invoice. |
|
197 | 197 | * @param array $submission_data Posted checkout fields. |
198 | 198 | * @param bool $save Whether or not to save the payment as a token. |
199 | 199 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
200 | - * @return string|WP_Error Profile id. |
|
201 | - */ |
|
202 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
200 | + * @return string|WP_Error Profile id. |
|
201 | + */ |
|
202 | + public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
203 | 203 | |
204 | 204 | // Remove non-digits from the number |
205 | 205 | $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -259,15 +259,15 @@ discard block |
||
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
262 | - * Retrieves a customer payment profile. |
|
263 | - * |
|
264 | - * |
|
265 | - * @param string $customer_profile_id customer profile id. |
|
262 | + * Retrieves a customer payment profile. |
|
263 | + * |
|
264 | + * |
|
265 | + * @param string $customer_profile_id customer profile id. |
|
266 | 266 | * @param string $payment_profile_id payment profile id. |
267 | - * @return string|WP_Error Profile id. |
|
267 | + * @return string|WP_Error Profile id. |
|
268 | 268 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
269 | - */ |
|
270 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
269 | + */ |
|
270 | + public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
271 | 271 | |
272 | 272 | // Generate args. |
273 | 273 | $args = array( |
@@ -283,15 +283,15 @@ discard block |
||
283 | 283 | } |
284 | 284 | |
285 | 285 | /** |
286 | - * Charges a customer payment profile. |
|
287 | - * |
|
286 | + * Charges a customer payment profile. |
|
287 | + * |
|
288 | 288 | * @param string $customer_profile_id customer profile id. |
289 | 289 | * @param string $payment_profile_id payment profile id. |
290 | - * @param WPInv_Invoice $invoice Invoice. |
|
290 | + * @param WPInv_Invoice $invoice Invoice. |
|
291 | 291 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
292 | - * @return WP_Error|object |
|
293 | - */ |
|
294 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
292 | + * @return WP_Error|object |
|
293 | + */ |
|
294 | + public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
295 | 295 | |
296 | 296 | // Generate args. |
297 | 297 | $args = array( |
@@ -337,41 +337,41 @@ discard block |
||
337 | 337 | } |
338 | 338 | |
339 | 339 | /** |
340 | - * Processes a customer charge. |
|
341 | - * |
|
340 | + * Processes a customer charge. |
|
341 | + * |
|
342 | 342 | * @param stdClass $result Api response. |
343 | - * @param WPInv_Invoice $invoice Invoice. |
|
344 | - */ |
|
345 | - public function process_charge_response( $result, $invoice ) { |
|
343 | + * @param WPInv_Invoice $invoice Invoice. |
|
344 | + */ |
|
345 | + public function process_charge_response( $result, $invoice ) { |
|
346 | 346 | |
347 | 347 | wpinv_clear_errors(); |
348 | - $response_code = (int) $result->transactionResponse->responseCode; |
|
348 | + $response_code = (int) $result->transactionResponse->responseCode; |
|
349 | 349 | |
350 | - // Succeeded. |
|
351 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
350 | + // Succeeded. |
|
351 | + if ( 1 == $response_code || 4 == $response_code ) { |
|
352 | 352 | |
353 | - // Maybe set a transaction id. |
|
354 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
355 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
356 | - } |
|
353 | + // Maybe set a transaction id. |
|
354 | + if ( ! empty( $result->transactionResponse->transId ) ) { |
|
355 | + $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
356 | + } |
|
357 | 357 | |
358 | - $invoice->add_note( sprintf( __( 'Authentication code: %s (%s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
358 | + $invoice->add_note( sprintf( __( 'Authentication code: %s (%s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
359 | 359 | |
360 | - if ( 1 == $response_code ) { |
|
361 | - return $invoice->mark_paid(); |
|
362 | - } |
|
360 | + if ( 1 == $response_code ) { |
|
361 | + return $invoice->mark_paid(); |
|
362 | + } |
|
363 | 363 | |
364 | - $invoice->set_status( 'wpi-onhold' ); |
|
365 | - $invoice->add_note( |
|
364 | + $invoice->set_status( 'wpi-onhold' ); |
|
365 | + $invoice->add_note( |
|
366 | 366 | sprintf( |
367 | 367 | __( 'Held for review: %s', 'invoicing' ), |
368 | 368 | $result->transactionResponse->messages->message[0]->description |
369 | 369 | ) |
370 | - ); |
|
370 | + ); |
|
371 | 371 | |
372 | - return $invoice->save(); |
|
372 | + return $invoice->save(); |
|
373 | 373 | |
374 | - } |
|
374 | + } |
|
375 | 375 | |
376 | 376 | wpinv_set_error( 'card_declined', __( 'Credit card declined.', 'invoicing' ) ); |
377 | 377 | |
@@ -383,13 +383,13 @@ discard block |
||
383 | 383 | } |
384 | 384 | |
385 | 385 | /** |
386 | - * Returns payment information. |
|
387 | - * |
|
388 | - * |
|
389 | - * @param array $card Card details. |
|
390 | - * @return array |
|
391 | - */ |
|
392 | - public function get_payment_information( $card ) { |
|
386 | + * Returns payment information. |
|
387 | + * |
|
388 | + * |
|
389 | + * @param array $card Card details. |
|
390 | + * @return array |
|
391 | + */ |
|
392 | + public function get_payment_information( $card ) { |
|
393 | 393 | return array( |
394 | 394 | |
395 | 395 | 'creditCard' => array ( |
@@ -402,25 +402,25 @@ discard block |
||
402 | 402 | } |
403 | 403 | |
404 | 404 | /** |
405 | - * Returns the customer profile meta name. |
|
406 | - * |
|
407 | - * |
|
408 | - * @param WPInv_Invoice $invoice Invoice. |
|
409 | - * @return string |
|
410 | - */ |
|
411 | - public function get_customer_profile_meta_name( $invoice ) { |
|
405 | + * Returns the customer profile meta name. |
|
406 | + * |
|
407 | + * |
|
408 | + * @param WPInv_Invoice $invoice Invoice. |
|
409 | + * @return string |
|
410 | + */ |
|
411 | + public function get_customer_profile_meta_name( $invoice ) { |
|
412 | 412 | return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
413 | 413 | } |
414 | 414 | |
415 | 415 | /** |
416 | - * Validates the submitted data. |
|
417 | - * |
|
418 | - * |
|
419 | - * @param array $submission_data Posted checkout fields. |
|
416 | + * Validates the submitted data. |
|
417 | + * |
|
418 | + * |
|
419 | + * @param array $submission_data Posted checkout fields. |
|
420 | 420 | * @param WPInv_Invoice $invoice |
421 | - * @return WP_Error|string The payment profile id |
|
422 | - */ |
|
423 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
421 | + * @return WP_Error|string The payment profile id |
|
422 | + */ |
|
423 | + public function validate_submission_data( $submission_data, $invoice ) { |
|
424 | 424 | |
425 | 425 | // Validate authentication details. |
426 | 426 | $auth = $this->get_auth_params(); |
@@ -452,13 +452,13 @@ discard block |
||
452 | 452 | } |
453 | 453 | |
454 | 454 | /** |
455 | - * Returns invoice line items. |
|
456 | - * |
|
457 | - * |
|
458 | - * @param WPInv_Invoice $invoice Invoice. |
|
459 | - * @return array |
|
460 | - */ |
|
461 | - public function get_line_items( $invoice ) { |
|
455 | + * Returns invoice line items. |
|
456 | + * |
|
457 | + * |
|
458 | + * @param WPInv_Invoice $invoice Invoice. |
|
459 | + * @return array |
|
460 | + */ |
|
461 | + public function get_line_items( $invoice ) { |
|
462 | 462 | $items = array(); |
463 | 463 | |
464 | 464 | foreach ( $invoice->get_items() as $item ) { |
@@ -496,15 +496,15 @@ discard block |
||
496 | 496 | } |
497 | 497 | |
498 | 498 | /** |
499 | - * Process Payment. |
|
500 | - * |
|
501 | - * |
|
502 | - * @param WPInv_Invoice $invoice Invoice. |
|
503 | - * @param array $submission_data Posted checkout fields. |
|
504 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
505 | - * @return array |
|
506 | - */ |
|
507 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
499 | + * Process Payment. |
|
500 | + * |
|
501 | + * |
|
502 | + * @param WPInv_Invoice $invoice Invoice. |
|
503 | + * @param array $submission_data Posted checkout fields. |
|
504 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
505 | + * @return array |
|
506 | + */ |
|
507 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
508 | 508 | |
509 | 509 | // Validate the submitted data. |
510 | 510 | $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
@@ -537,69 +537,69 @@ discard block |
||
537 | 537 | |
538 | 538 | exit; |
539 | 539 | |
540 | - } |
|
540 | + } |
|
541 | 541 | |
542 | - /** |
|
543 | - * Processes the initial payment. |
|
544 | - * |
|
542 | + /** |
|
543 | + * Processes the initial payment. |
|
544 | + * |
|
545 | 545 | * @param WPInv_Invoice $invoice Invoice. |
546 | - */ |
|
547 | - protected function process_initial_payment( $invoice ) { |
|
546 | + */ |
|
547 | + protected function process_initial_payment( $invoice ) { |
|
548 | 548 | |
549 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
549 | + $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
550 | 550 | $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
551 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
551 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
552 | 552 | |
553 | - // Do we have an error? |
|
554 | - if ( is_wp_error( $result ) ) { |
|
555 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
556 | - wpinv_send_back_to_checkout( $invoice ); |
|
557 | - } |
|
553 | + // Do we have an error? |
|
554 | + if ( is_wp_error( $result ) ) { |
|
555 | + wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
556 | + wpinv_send_back_to_checkout( $invoice ); |
|
557 | + } |
|
558 | 558 | |
559 | - // Process the response. |
|
560 | - $this->process_charge_response( $result, $invoice ); |
|
559 | + // Process the response. |
|
560 | + $this->process_charge_response( $result, $invoice ); |
|
561 | 561 | |
562 | - if ( wpinv_get_errors() ) { |
|
563 | - wpinv_send_back_to_checkout( $invoice ); |
|
564 | - } |
|
562 | + if ( wpinv_get_errors() ) { |
|
563 | + wpinv_send_back_to_checkout( $invoice ); |
|
564 | + } |
|
565 | 565 | |
566 | - } |
|
566 | + } |
|
567 | 567 | |
568 | 568 | /** |
569 | - * Processes recurring payments. |
|
570 | - * |
|
569 | + * Processes recurring payments. |
|
570 | + * |
|
571 | 571 | * @param WPInv_Invoice $invoice Invoice. |
572 | 572 | * @param WPInv_Subscription $subscription Subscription. |
573 | - */ |
|
574 | - public function process_subscription( $invoice, $subscription ) { |
|
573 | + */ |
|
574 | + public function process_subscription( $invoice, $subscription ) { |
|
575 | 575 | |
576 | 576 | // Check if there is an initial amount to charge. |
577 | 577 | if ( (float) $invoice->get_total() > 0 ) { |
578 | - $this->process_initial_payment( $invoice ); |
|
578 | + $this->process_initial_payment( $invoice ); |
|
579 | 579 | } |
580 | 580 | |
581 | 581 | // Activate the subscription. |
582 | 582 | $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
583 | 583 | $expiry = date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ); |
584 | 584 | |
585 | - $subscription->set_next_renewal_date( $expiry ); |
|
586 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
587 | - $subscription->set_profile_id( $invoice->generate_key() ); |
|
588 | - $subscription->activate(); |
|
585 | + $subscription->set_next_renewal_date( $expiry ); |
|
586 | + $subscription->set_date_created( current_time( 'mysql' ) ); |
|
587 | + $subscription->set_profile_id( $invoice->generate_key() ); |
|
588 | + $subscription->activate(); |
|
589 | 589 | |
590 | - // Redirect to the success page. |
|
590 | + // Redirect to the success page. |
|
591 | 591 | wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
592 | 592 | |
593 | 593 | } |
594 | 594 | |
595 | - /** |
|
596 | - * (Maybe) renews an authorize.net subscription profile. |
|
597 | - * |
|
598 | - * |
|
599 | - * @param bool $should_expire |
|
595 | + /** |
|
596 | + * (Maybe) renews an authorize.net subscription profile. |
|
597 | + * |
|
598 | + * |
|
599 | + * @param bool $should_expire |
|
600 | 600 | * @param WPInv_Subscription $subscription |
601 | - */ |
|
602 | - public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
601 | + */ |
|
602 | + public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
603 | 603 | |
604 | 604 | // Ensure its our subscription && it's active. |
605 | 605 | if ( $this->id != $subscription->get_gateway() || ! $subscription->has_status( 'active trialling' ) ) { |
@@ -616,18 +616,18 @@ discard block |
||
616 | 616 | |
617 | 617 | return false; |
618 | 618 | |
619 | - } |
|
619 | + } |
|
620 | 620 | |
621 | 621 | /** |
622 | - * Renews a subscription. |
|
623 | - * |
|
622 | + * Renews a subscription. |
|
623 | + * |
|
624 | 624 | * @param WPInv_Subscription $subscription |
625 | - */ |
|
626 | - public function renew_subscription( $subscription ) { |
|
625 | + */ |
|
626 | + public function renew_subscription( $subscription ) { |
|
627 | 627 | |
628 | - // Generate the renewal invoice. |
|
629 | - $new_invoice = $subscription->create_payment(); |
|
630 | - $old_invoice = $subscription->get_parent_payment(); |
|
628 | + // Generate the renewal invoice. |
|
629 | + $new_invoice = $subscription->create_payment(); |
|
630 | + $old_invoice = $subscription->get_parent_payment(); |
|
631 | 631 | |
632 | 632 | if ( empty( $new_invoice ) ) { |
633 | 633 | $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
@@ -636,37 +636,37 @@ discard block |
||
636 | 636 | } |
637 | 637 | |
638 | 638 | // Charge the payment method. |
639 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
640 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
641 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
642 | - |
|
643 | - // Do we have an error? |
|
644 | - if ( is_wp_error( $result ) ) { |
|
645 | - |
|
646 | - $old_invoice->add_note( |
|
647 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
648 | - true, |
|
649 | - false, |
|
650 | - true |
|
651 | - ); |
|
652 | - $subscription->failing(); |
|
653 | - return; |
|
654 | - |
|
655 | - } |
|
656 | - |
|
657 | - // Process the response. |
|
658 | - $this->process_charge_response( $result, $new_invoice ); |
|
659 | - |
|
660 | - if ( wpinv_get_errors() ) { |
|
661 | - |
|
662 | - $old_invoice->add_note( |
|
663 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
664 | - true, |
|
665 | - false, |
|
666 | - true |
|
667 | - ); |
|
668 | - $subscription->failing(); |
|
669 | - return; |
|
639 | + $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
640 | + $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
641 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
642 | + |
|
643 | + // Do we have an error? |
|
644 | + if ( is_wp_error( $result ) ) { |
|
645 | + |
|
646 | + $old_invoice->add_note( |
|
647 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
648 | + true, |
|
649 | + false, |
|
650 | + true |
|
651 | + ); |
|
652 | + $subscription->failing(); |
|
653 | + return; |
|
654 | + |
|
655 | + } |
|
656 | + |
|
657 | + // Process the response. |
|
658 | + $this->process_charge_response( $result, $new_invoice ); |
|
659 | + |
|
660 | + if ( wpinv_get_errors() ) { |
|
661 | + |
|
662 | + $old_invoice->add_note( |
|
663 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
664 | + true, |
|
665 | + false, |
|
666 | + true |
|
667 | + ); |
|
668 | + $subscription->failing(); |
|
669 | + return; |
|
670 | 670 | |
671 | 671 | } |
672 | 672 | |
@@ -675,13 +675,13 @@ discard block |
||
675 | 675 | } |
676 | 676 | |
677 | 677 | /** |
678 | - * Processes invoice addons. |
|
679 | - * |
|
680 | - * @param WPInv_Invoice $invoice |
|
681 | - * @param GetPaid_Form_Item[] $items |
|
682 | - * @return WPInv_Invoice |
|
683 | - */ |
|
684 | - public function process_addons( $invoice, $items ) { |
|
678 | + * Processes invoice addons. |
|
679 | + * |
|
680 | + * @param WPInv_Invoice $invoice |
|
681 | + * @param GetPaid_Form_Item[] $items |
|
682 | + * @return WPInv_Invoice |
|
683 | + */ |
|
684 | + public function process_addons( $invoice, $items ) { |
|
685 | 685 | |
686 | 686 | global $getpaid_authorize_addons; |
687 | 687 | |
@@ -701,7 +701,7 @@ discard block |
||
701 | 701 | $invoice->recalculate_total(); |
702 | 702 | |
703 | 703 | $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
704 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
704 | + $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
705 | 705 | |
706 | 706 | add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
707 | 707 | $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
@@ -716,11 +716,11 @@ discard block |
||
716 | 716 | } |
717 | 717 | |
718 | 718 | /** |
719 | - * Processes invoice addons. |
|
720 | - * |
|
719 | + * Processes invoice addons. |
|
720 | + * |
|
721 | 721 | * @param array $args |
722 | - * @return array |
|
723 | - */ |
|
722 | + * @return array |
|
723 | + */ |
|
724 | 724 | public function filter_addons_request( $args ) { |
725 | 725 | |
726 | 726 | global $getpaid_authorize_addons; |
@@ -754,11 +754,11 @@ discard block |
||
754 | 754 | } |
755 | 755 | |
756 | 756 | /** |
757 | - * Filters the gateway settings. |
|
758 | - * |
|
759 | - * @param array $admin_settings |
|
760 | - */ |
|
761 | - public function admin_settings( $admin_settings ) { |
|
757 | + * Filters the gateway settings. |
|
758 | + * |
|
759 | + * @param array $admin_settings |
|
760 | + */ |
|
761 | + public function admin_settings( $admin_settings ) { |
|
762 | 762 | |
763 | 763 | $currencies = sprintf( |
764 | 764 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -798,7 +798,7 @@ discard block |
||
798 | 798 | 'readonly' => true, |
799 | 799 | ); |
800 | 800 | |
801 | - return $admin_settings; |
|
802 | - } |
|
801 | + return $admin_settings; |
|
802 | + } |
|
803 | 803 | |
804 | 804 | } |
@@ -235,7 +235,7 @@ |
||
235 | 235 | do_action( 'getpaid_checkout_invoice_exception', $invoice ); |
236 | 236 | } |
237 | 237 | |
238 | - // Do we have any errors? |
|
238 | + // Do we have any errors? |
|
239 | 239 | if ( wpinv_get_errors() ) { |
240 | 240 | wp_send_json_error( getpaid_get_errors_html( true, false ) ); |
241 | 241 | } |
@@ -12,176 +12,176 @@ discard block |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Checkout { |
14 | 14 | |
15 | - /** |
|
16 | - * @var GetPaid_Payment_Form_Submission |
|
17 | - */ |
|
18 | - protected $payment_form_submission; |
|
19 | - |
|
20 | - /** |
|
21 | - * Class constructor. |
|
22 | - * |
|
23 | - * @param GetPaid_Payment_Form_Submission $submission |
|
24 | - */ |
|
25 | - public function __construct( $submission ) { |
|
26 | - $this->payment_form_submission = $submission; |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Processes the checkout. |
|
31 | - * |
|
32 | - */ |
|
33 | - public function process_checkout() { |
|
34 | - |
|
35 | - // Validate the submission. |
|
36 | - $this->validate_submission(); |
|
37 | - |
|
38 | - // Prepare the invoice. |
|
39 | - $items = $this->get_submission_items(); |
|
40 | - $invoice = $this->get_submission_invoice(); |
|
41 | - $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
42 | - $prepared = $this->prepare_submission_data_for_saving(); |
|
43 | - |
|
44 | - $this->prepare_billing_info( $invoice ); |
|
45 | - |
|
46 | - $shipping = $this->prepare_shipping_info( $invoice ); |
|
47 | - |
|
48 | - // Save the invoice. |
|
49 | - $invoice->recalculate_total(); |
|
15 | + /** |
|
16 | + * @var GetPaid_Payment_Form_Submission |
|
17 | + */ |
|
18 | + protected $payment_form_submission; |
|
19 | + |
|
20 | + /** |
|
21 | + * Class constructor. |
|
22 | + * |
|
23 | + * @param GetPaid_Payment_Form_Submission $submission |
|
24 | + */ |
|
25 | + public function __construct( $submission ) { |
|
26 | + $this->payment_form_submission = $submission; |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Processes the checkout. |
|
31 | + * |
|
32 | + */ |
|
33 | + public function process_checkout() { |
|
34 | + |
|
35 | + // Validate the submission. |
|
36 | + $this->validate_submission(); |
|
37 | + |
|
38 | + // Prepare the invoice. |
|
39 | + $items = $this->get_submission_items(); |
|
40 | + $invoice = $this->get_submission_invoice(); |
|
41 | + $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
42 | + $prepared = $this->prepare_submission_data_for_saving(); |
|
43 | + |
|
44 | + $this->prepare_billing_info( $invoice ); |
|
45 | + |
|
46 | + $shipping = $this->prepare_shipping_info( $invoice ); |
|
47 | + |
|
48 | + // Save the invoice. |
|
49 | + $invoice->recalculate_total(); |
|
50 | 50 | $invoice->save(); |
51 | 51 | |
52 | - do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
52 | + do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
53 | 53 | |
54 | - // Send to the gateway. |
|
55 | - $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
56 | - } |
|
54 | + // Send to the gateway. |
|
55 | + $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Validates the submission. |
|
60 | - * |
|
61 | - */ |
|
62 | - protected function validate_submission() { |
|
58 | + /** |
|
59 | + * Validates the submission. |
|
60 | + * |
|
61 | + */ |
|
62 | + protected function validate_submission() { |
|
63 | 63 | |
64 | - $submission = $this->payment_form_submission; |
|
65 | - $data = $submission->get_data(); |
|
64 | + $submission = $this->payment_form_submission; |
|
65 | + $data = $submission->get_data(); |
|
66 | 66 | |
67 | - // Do we have an error? |
|
67 | + // Do we have an error? |
|
68 | 68 | if ( ! empty( $submission->last_error ) ) { |
69 | - wp_send_json_error( $submission->last_error ); |
|
69 | + wp_send_json_error( $submission->last_error ); |
|
70 | 70 | } |
71 | 71 | |
72 | - // We need a billing email. |
|
72 | + // We need a billing email. |
|
73 | 73 | if ( ! $submission->has_billing_email() ) { |
74 | 74 | wp_send_json_error( __( 'Provide a valid billing email.', 'invoicing' ) ); |
75 | - } |
|
75 | + } |
|
76 | 76 | |
77 | - // Non-recurring gateways should not be allowed to process recurring invoices. |
|
78 | - if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
79 | - wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
80 | - } |
|
77 | + // Non-recurring gateways should not be allowed to process recurring invoices. |
|
78 | + if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
79 | + wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
80 | + } |
|
81 | 81 | |
82 | - // Ensure the gateway is active. |
|
83 | - if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
84 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
85 | - } |
|
82 | + // Ensure the gateway is active. |
|
83 | + if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
84 | + wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
85 | + } |
|
86 | 86 | |
87 | - // Clear any existing errors. |
|
88 | - wpinv_clear_errors(); |
|
87 | + // Clear any existing errors. |
|
88 | + wpinv_clear_errors(); |
|
89 | 89 | |
90 | - // Allow themes and plugins to hook to errors |
|
91 | - do_action( 'getpaid_checkout_error_checks', $submission ); |
|
90 | + // Allow themes and plugins to hook to errors |
|
91 | + do_action( 'getpaid_checkout_error_checks', $submission ); |
|
92 | 92 | |
93 | - // Do we have any errors? |
|
93 | + // Do we have any errors? |
|
94 | 94 | if ( wpinv_get_errors() ) { |
95 | 95 | wp_send_json_error( getpaid_get_errors_html() ); |
96 | - } |
|
96 | + } |
|
97 | 97 | |
98 | - } |
|
98 | + } |
|
99 | 99 | |
100 | - /** |
|
101 | - * Retrieves submission items. |
|
102 | - * |
|
103 | - * @return GetPaid_Form_Item[] |
|
104 | - */ |
|
105 | - protected function get_submission_items() { |
|
100 | + /** |
|
101 | + * Retrieves submission items. |
|
102 | + * |
|
103 | + * @return GetPaid_Form_Item[] |
|
104 | + */ |
|
105 | + protected function get_submission_items() { |
|
106 | 106 | |
107 | - $items = $this->payment_form_submission->get_items(); |
|
107 | + $items = $this->payment_form_submission->get_items(); |
|
108 | 108 | |
109 | 109 | // Ensure that we have items. |
110 | 110 | if ( empty( $items ) && ! $this->payment_form_submission->has_fees() ) { |
111 | 111 | wp_send_json_error( __( 'Please provide at least one item or amount.', 'invoicing' ) ); |
112 | - } |
|
113 | - |
|
114 | - return $items; |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * Retrieves submission invoice. |
|
119 | - * |
|
120 | - * @return WPInv_Invoice |
|
121 | - */ |
|
122 | - protected function get_submission_invoice() { |
|
123 | - $submission = $this->payment_form_submission; |
|
124 | - |
|
125 | - if ( ! $submission->has_invoice() ) { |
|
126 | - $invoice = new WPInv_Invoice(); |
|
127 | - $invoice->created_via( 'payment_form' ); |
|
128 | - return $invoice; |
|
129 | 112 | } |
130 | 113 | |
131 | - $invoice = $submission->get_invoice(); |
|
114 | + return $items; |
|
115 | + } |
|
132 | 116 | |
133 | - // Make sure that it is neither paid or refunded. |
|
134 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
135 | - wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
136 | - } |
|
117 | + /** |
|
118 | + * Retrieves submission invoice. |
|
119 | + * |
|
120 | + * @return WPInv_Invoice |
|
121 | + */ |
|
122 | + protected function get_submission_invoice() { |
|
123 | + $submission = $this->payment_form_submission; |
|
137 | 124 | |
138 | - return $invoice; |
|
139 | - } |
|
125 | + if ( ! $submission->has_invoice() ) { |
|
126 | + $invoice = new WPInv_Invoice(); |
|
127 | + $invoice->created_via( 'payment_form' ); |
|
128 | + return $invoice; |
|
129 | + } |
|
140 | 130 | |
141 | - /** |
|
142 | - * Processes the submission invoice. |
|
143 | - * |
|
144 | - * @param WPInv_Invoice $invoice |
|
145 | - * @param GetPaid_Form_Item[] $items |
|
146 | - * @return WPInv_Invoice |
|
147 | - */ |
|
148 | - protected function process_submission_invoice( $invoice, $items ) { |
|
131 | + $invoice = $submission->get_invoice(); |
|
149 | 132 | |
150 | - $submission = $this->payment_form_submission; |
|
151 | - $data = $submission->get_data(); |
|
133 | + // Make sure that it is neither paid or refunded. |
|
134 | + if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
135 | + wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
136 | + } |
|
152 | 137 | |
153 | - // Set-up the invoice details. |
|
154 | - $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
155 | - $invoice->set_user_id( $this->get_submission_customer() ); |
|
156 | - $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
138 | + return $invoice; |
|
139 | + } |
|
140 | + |
|
141 | + /** |
|
142 | + * Processes the submission invoice. |
|
143 | + * |
|
144 | + * @param WPInv_Invoice $invoice |
|
145 | + * @param GetPaid_Form_Item[] $items |
|
146 | + * @return WPInv_Invoice |
|
147 | + */ |
|
148 | + protected function process_submission_invoice( $invoice, $items ) { |
|
149 | + |
|
150 | + $submission = $this->payment_form_submission; |
|
151 | + $data = $submission->get_data(); |
|
152 | + |
|
153 | + // Set-up the invoice details. |
|
154 | + $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
155 | + $invoice->set_user_id( $this->get_submission_customer() ); |
|
156 | + $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
157 | 157 | $invoice->set_items( $items ); |
158 | 158 | $invoice->set_fees( $submission->get_fees() ); |
159 | 159 | $invoice->set_taxes( $submission->get_taxes() ); |
160 | - $invoice->set_discounts( $submission->get_discounts() ); |
|
161 | - $invoice->set_gateway( $data['wpi-gateway'] ); |
|
160 | + $invoice->set_discounts( $submission->get_discounts() ); |
|
161 | + $invoice->set_gateway( $data['wpi-gateway'] ); |
|
162 | 162 | |
163 | - if ( $submission->has_discount_code() ) { |
|
163 | + if ( $submission->has_discount_code() ) { |
|
164 | 164 | $invoice->set_discount_code( $submission->get_discount_code() ); |
165 | - } |
|
166 | - |
|
167 | - getpaid_maybe_add_default_address( $invoice ); |
|
168 | - return $invoice; |
|
169 | - } |
|
170 | - |
|
171 | - /** |
|
172 | - * Retrieves the submission's customer. |
|
173 | - * |
|
174 | - * @return int The customer id. |
|
175 | - */ |
|
176 | - protected function get_submission_customer() { |
|
177 | - $submission = $this->payment_form_submission; |
|
178 | - |
|
179 | - // If this is an existing invoice... |
|
180 | - if ( $submission->has_invoice() ) { |
|
181 | - return $submission->get_invoice()->get_user_id(); |
|
182 | - } |
|
183 | - |
|
184 | - // (Maybe) create the user. |
|
165 | + } |
|
166 | + |
|
167 | + getpaid_maybe_add_default_address( $invoice ); |
|
168 | + return $invoice; |
|
169 | + } |
|
170 | + |
|
171 | + /** |
|
172 | + * Retrieves the submission's customer. |
|
173 | + * |
|
174 | + * @return int The customer id. |
|
175 | + */ |
|
176 | + protected function get_submission_customer() { |
|
177 | + $submission = $this->payment_form_submission; |
|
178 | + |
|
179 | + // If this is an existing invoice... |
|
180 | + if ( $submission->has_invoice() ) { |
|
181 | + return $submission->get_invoice()->get_user_id(); |
|
182 | + } |
|
183 | + |
|
184 | + // (Maybe) create the user. |
|
185 | 185 | $user = get_current_user_id(); |
186 | 186 | |
187 | 187 | if ( empty( $user ) ) { |
@@ -198,31 +198,31 @@ discard block |
||
198 | 198 | |
199 | 199 | if ( is_numeric( $user ) ) { |
200 | 200 | return $user; |
201 | - } |
|
201 | + } |
|
202 | 202 | |
203 | - return $user->ID; |
|
203 | + return $user->ID; |
|
204 | 204 | |
205 | - } |
|
205 | + } |
|
206 | 206 | |
207 | - /** |
|
207 | + /** |
|
208 | 208 | * Prepares submission data for saving to the database. |
209 | 209 | * |
210 | - * @return array |
|
210 | + * @return array |
|
211 | 211 | */ |
212 | 212 | public function prepare_submission_data_for_saving() { |
213 | 213 | |
214 | - $submission = $this->payment_form_submission; |
|
214 | + $submission = $this->payment_form_submission; |
|
215 | 215 | |
216 | - // Prepared submission details. |
|
216 | + // Prepared submission details. |
|
217 | 217 | $prepared = array(); |
218 | 218 | |
219 | 219 | // Raw submission details. |
220 | - $data = $submission->get_data(); |
|
220 | + $data = $submission->get_data(); |
|
221 | 221 | |
222 | - // Loop through the submitted details. |
|
222 | + // Loop through the submitted details. |
|
223 | 223 | foreach ( $submission->get_payment_form()->get_elements() as $field ) { |
224 | 224 | |
225 | - // Skip premade fields. |
|
225 | + // Skip premade fields. |
|
226 | 226 | if ( ! empty( $field['premade'] ) || $field['type'] == 'address' ) { |
227 | 227 | continue; |
228 | 228 | } |
@@ -240,93 +240,93 @@ discard block |
||
240 | 240 | $label = $field['label']; |
241 | 241 | } |
242 | 242 | |
243 | - $prepared[ wpinv_clean( $label ) ] = wp_kses_post( $data[ $field['id'] ] ); |
|
243 | + $prepared[ wpinv_clean( $label ) ] = wp_kses_post( $data[ $field['id'] ] ); |
|
244 | 244 | |
245 | 245 | } |
246 | 246 | |
247 | - } |
|
247 | + } |
|
248 | 248 | |
249 | - return $prepared; |
|
249 | + return $prepared; |
|
250 | 250 | |
251 | - } |
|
251 | + } |
|
252 | 252 | |
253 | - /** |
|
253 | + /** |
|
254 | 254 | * Retrieves address details. |
255 | 255 | * |
256 | - * @return array |
|
257 | - * @param WPInv_Invoice $invoice |
|
258 | - * @param string $type |
|
256 | + * @return array |
|
257 | + * @param WPInv_Invoice $invoice |
|
258 | + * @param string $type |
|
259 | 259 | */ |
260 | 260 | public function prepare_address_details( $invoice, $type = 'billing' ) { |
261 | 261 | |
262 | - $data = $this->payment_form_submission->get_data(); |
|
263 | - $type = sanitize_key( $type ); |
|
264 | - $address = array(); |
|
265 | - $prepared = array(); |
|
262 | + $data = $this->payment_form_submission->get_data(); |
|
263 | + $type = sanitize_key( $type ); |
|
264 | + $address = array(); |
|
265 | + $prepared = array(); |
|
266 | 266 | |
267 | - if ( ! empty( $data[ $type ] ) ) { |
|
268 | - $address = $data[ $type ]; |
|
269 | - } |
|
267 | + if ( ! empty( $data[ $type ] ) ) { |
|
268 | + $address = $data[ $type ]; |
|
269 | + } |
|
270 | 270 | |
271 | - // Clean address details. |
|
272 | - foreach ( $address as $key => $value ) { |
|
273 | - $key = sanitize_key( $key ); |
|
274 | - $key = str_replace( 'wpinv_', '', $key ); |
|
275 | - $value = wpinv_clean( $value ); |
|
276 | - $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
277 | - } |
|
271 | + // Clean address details. |
|
272 | + foreach ( $address as $key => $value ) { |
|
273 | + $key = sanitize_key( $key ); |
|
274 | + $key = str_replace( 'wpinv_', '', $key ); |
|
275 | + $value = wpinv_clean( $value ); |
|
276 | + $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
277 | + } |
|
278 | 278 | |
279 | - // Filter address details. |
|
280 | - $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
279 | + // Filter address details. |
|
280 | + $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
281 | 281 | |
282 | - // Remove non-whitelisted values. |
|
283 | - return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
282 | + // Remove non-whitelisted values. |
|
283 | + return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
284 | 284 | |
285 | - } |
|
285 | + } |
|
286 | 286 | |
287 | - /** |
|
287 | + /** |
|
288 | 288 | * Prepares the billing details. |
289 | 289 | * |
290 | - * @return array |
|
291 | - * @param WPInv_Invoice $invoice |
|
290 | + * @return array |
|
291 | + * @param WPInv_Invoice $invoice |
|
292 | 292 | */ |
293 | 293 | protected function prepare_billing_info( &$invoice ) { |
294 | 294 | |
295 | - $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
295 | + $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
296 | 296 | |
297 | - // Update the invoice with the billing details. |
|
298 | - $invoice->set_props( $billing_address ); |
|
297 | + // Update the invoice with the billing details. |
|
298 | + $invoice->set_props( $billing_address ); |
|
299 | 299 | |
300 | - } |
|
300 | + } |
|
301 | 301 | |
302 | - /** |
|
302 | + /** |
|
303 | 303 | * Prepares the shipping details. |
304 | 304 | * |
305 | - * @return array |
|
306 | - * @param WPInv_Invoice $invoice |
|
305 | + * @return array |
|
306 | + * @param WPInv_Invoice $invoice |
|
307 | 307 | */ |
308 | 308 | protected function prepare_shipping_info( $invoice ) { |
309 | 309 | |
310 | - $data = $this->payment_form_submission->get_data(); |
|
310 | + $data = $this->payment_form_submission->get_data(); |
|
311 | 311 | |
312 | - if ( empty( $data['same-shipping-address'] ) ) { |
|
313 | - return $this->prepare_address_details( $invoice, 'shipping' ); |
|
314 | - } |
|
312 | + if ( empty( $data['same-shipping-address'] ) ) { |
|
313 | + return $this->prepare_address_details( $invoice, 'shipping' ); |
|
314 | + } |
|
315 | 315 | |
316 | - return $this->prepare_address_details( $invoice, 'billing' ); |
|
316 | + return $this->prepare_address_details( $invoice, 'billing' ); |
|
317 | 317 | |
318 | - } |
|
318 | + } |
|
319 | 319 | |
320 | - /** |
|
321 | - * Confirms the submission is valid and send users to the gateway. |
|
322 | - * |
|
323 | - * @param WPInv_Invoice $invoice |
|
324 | - * @param array $prepared_payment_form_data |
|
325 | - * @param array $shipping |
|
326 | - */ |
|
327 | - protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
320 | + /** |
|
321 | + * Confirms the submission is valid and send users to the gateway. |
|
322 | + * |
|
323 | + * @param WPInv_Invoice $invoice |
|
324 | + * @param array $prepared_payment_form_data |
|
325 | + * @param array $shipping |
|
326 | + */ |
|
327 | + protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
328 | 328 | |
329 | - // Ensure the invoice exists. |
|
329 | + // Ensure the invoice exists. |
|
330 | 330 | if ( ! $invoice->exists() ) { |
331 | 331 | wp_send_json_error( __( 'An error occured while saving your invoice. Please try again.', 'invoicing' ) ); |
332 | 332 | } |
@@ -334,81 +334,81 @@ discard block |
||
334 | 334 | // Save payment form data. |
335 | 335 | if ( ! empty( $prepared_payment_form_data ) ) { |
336 | 336 | update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data ); |
337 | - } |
|
337 | + } |
|
338 | 338 | |
339 | - // Save payment form data. |
|
339 | + // Save payment form data. |
|
340 | 340 | if ( ! empty( $shipping ) ) { |
341 | 341 | update_post_meta( $invoice->get_id(), 'shipping_address', $shipping ); |
342 | - } |
|
342 | + } |
|
343 | 343 | |
344 | - // Backwards compatibility. |
|
344 | + // Backwards compatibility. |
|
345 | 345 | add_filter( 'wp_redirect', array( $this, 'send_redirect_response' ) ); |
346 | 346 | |
347 | - $this->process_payment( $invoice ); |
|
347 | + $this->process_payment( $invoice ); |
|
348 | 348 | |
349 | 349 | // If we are here, there was an error. |
350 | - wpinv_send_back_to_checkout( $invoice ); |
|
350 | + wpinv_send_back_to_checkout( $invoice ); |
|
351 | 351 | |
352 | - } |
|
352 | + } |
|
353 | 353 | |
354 | - /** |
|
355 | - * Processes the actual payment. |
|
356 | - * |
|
357 | - * @param WPInv_Invoice $invoice |
|
358 | - */ |
|
359 | - protected function process_payment( $invoice ) { |
|
354 | + /** |
|
355 | + * Processes the actual payment. |
|
356 | + * |
|
357 | + * @param WPInv_Invoice $invoice |
|
358 | + */ |
|
359 | + protected function process_payment( $invoice ) { |
|
360 | 360 | |
361 | - // Clear any checkout errors. |
|
362 | - wpinv_clear_errors(); |
|
361 | + // Clear any checkout errors. |
|
362 | + wpinv_clear_errors(); |
|
363 | 363 | |
364 | - // No need to send free invoices to the gateway. |
|
365 | - if ( $invoice->is_free() ) { |
|
366 | - $this->process_free_payment( $invoice ); |
|
367 | - } |
|
364 | + // No need to send free invoices to the gateway. |
|
365 | + if ( $invoice->is_free() ) { |
|
366 | + $this->process_free_payment( $invoice ); |
|
367 | + } |
|
368 | 368 | |
369 | - $submission = $this->payment_form_submission; |
|
369 | + $submission = $this->payment_form_submission; |
|
370 | 370 | |
371 | - // Fires before sending to the gateway. |
|
372 | - do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
371 | + // Fires before sending to the gateway. |
|
372 | + do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
373 | 373 | |
374 | - // Allow the sumission data to be modified before it is sent to the gateway. |
|
375 | - $submission_data = $submission->get_data(); |
|
376 | - $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
377 | - $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
374 | + // Allow the sumission data to be modified before it is sent to the gateway. |
|
375 | + $submission_data = $submission->get_data(); |
|
376 | + $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
377 | + $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
378 | 378 | |
379 | - // Validate the currency. |
|
380 | - if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
381 | - wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
382 | - } |
|
379 | + // Validate the currency. |
|
380 | + if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
381 | + wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
382 | + } |
|
383 | 383 | |
384 | - // Check to see if we have any errors. |
|
385 | - if ( wpinv_get_errors() ) { |
|
386 | - wpinv_send_back_to_checkout( $invoice ); |
|
387 | - } |
|
384 | + // Check to see if we have any errors. |
|
385 | + if ( wpinv_get_errors() ) { |
|
386 | + wpinv_send_back_to_checkout( $invoice ); |
|
387 | + } |
|
388 | 388 | |
389 | - // Send info to the gateway for payment processing |
|
390 | - do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
389 | + // Send info to the gateway for payment processing |
|
390 | + do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
391 | 391 | |
392 | - // Backwards compatibility. |
|
393 | - wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
392 | + // Backwards compatibility. |
|
393 | + wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
394 | 394 | |
395 | - } |
|
395 | + } |
|
396 | 396 | |
397 | - /** |
|
398 | - * Marks the invoice as paid in case the checkout is free. |
|
399 | - * |
|
400 | - * @param WPInv_Invoice $invoice |
|
401 | - */ |
|
402 | - protected function process_free_payment( $invoice ) { |
|
397 | + /** |
|
398 | + * Marks the invoice as paid in case the checkout is free. |
|
399 | + * |
|
400 | + * @param WPInv_Invoice $invoice |
|
401 | + */ |
|
402 | + protected function process_free_payment( $invoice ) { |
|
403 | 403 | |
404 | - $invoice->set_gateway( 'none' ); |
|
405 | - $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
406 | - $invoice->mark_paid(); |
|
407 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
404 | + $invoice->set_gateway( 'none' ); |
|
405 | + $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
406 | + $invoice->mark_paid(); |
|
407 | + wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
408 | 408 | |
409 | - } |
|
409 | + } |
|
410 | 410 | |
411 | - /** |
|
411 | + /** |
|
412 | 412 | * Sends a redrect response to payment details. |
413 | 413 | * |
414 | 414 | */ |
@@ -13,264 +13,264 @@ |
||
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 | - } |
|
88 | - |
|
89 | - } |
|
90 | - |
|
91 | - set_transient( $transient_name, $external_ip_address, WEEK_IN_SECONDS ); |
|
92 | - } |
|
93 | - |
|
94 | - return $external_ip_address; |
|
95 | - } |
|
96 | - |
|
97 | - /** |
|
98 | - * Geolocate an IP address. |
|
99 | - * |
|
100 | - * @param string $ip_address IP Address. |
|
101 | - * @param bool $fallback If true, fallbacks to alternative IP detection (can be slower). |
|
102 | - * @param bool $api_fallback If true, uses geolocation APIs if the database file doesn't exist (can be slower). |
|
103 | - * @return array |
|
104 | - */ |
|
105 | - public static function geolocate_ip( $ip_address = '', $fallback = false, $api_fallback = true ) { |
|
106 | - |
|
107 | - if ( empty( $ip_address ) ) { |
|
108 | - $ip_address = self::get_ip_address(); |
|
109 | - } |
|
110 | - |
|
111 | - // Update the current user's IP Address. |
|
112 | - self::$current_user_ip = $ip_address; |
|
113 | - |
|
114 | - // Filter to allow custom geolocation of the IP address. |
|
115 | - $country_code = apply_filters( 'getpaid_geolocate_ip', false, $ip_address, $fallback, $api_fallback ); |
|
116 | - |
|
117 | - if ( false !== $country_code ) { |
|
118 | - |
|
119 | - return array( |
|
120 | - 'country' => $country_code, |
|
121 | - 'state' => '', |
|
122 | - 'city' => '', |
|
123 | - 'postcode' => '', |
|
124 | - ); |
|
125 | - |
|
126 | - } |
|
127 | - |
|
128 | - $country_code = self::get_country_code_from_headers(); |
|
129 | - |
|
130 | - /** |
|
131 | - * Get geolocation filter. |
|
132 | - * |
|
133 | - * @since 1.0.19 |
|
134 | - * @param array $geolocation Geolocation data, including country, state, city, and postcode. |
|
135 | - * @param string $ip_address IP Address. |
|
136 | - */ |
|
137 | - $geolocation = apply_filters( |
|
138 | - 'getpaid_get_geolocation', |
|
139 | - array( |
|
140 | - 'country' => $country_code, |
|
141 | - 'state' => '', |
|
142 | - 'city' => '', |
|
143 | - 'postcode' => '', |
|
144 | - ), |
|
145 | - $ip_address |
|
146 | - ); |
|
147 | - |
|
148 | - // If we still haven't found a country code, let's consider doing an API lookup. |
|
149 | - if ( '' === $geolocation['country'] && $api_fallback ) { |
|
150 | - $geolocation['country'] = self::geolocate_via_api( $ip_address ); |
|
151 | - } |
|
152 | - |
|
153 | - // It's possible that we're in a local environment, in which case the geolocation needs to be done from the |
|
154 | - // external address. |
|
155 | - if ( '' === $geolocation['country'] && $fallback ) { |
|
156 | - $external_ip_address = self::get_external_ip_address(); |
|
157 | - |
|
158 | - // Only bother with this if the external IP differs. |
|
159 | - if ( '0.0.0.0' !== $external_ip_address && $external_ip_address !== $ip_address ) { |
|
160 | - return self::geolocate_ip( $external_ip_address, false, $api_fallback ); |
|
161 | - } |
|
162 | - |
|
163 | - } |
|
164 | - |
|
165 | - return array( |
|
166 | - 'country' => $geolocation['country'], |
|
167 | - 'state' => $geolocation['state'], |
|
168 | - 'city' => $geolocation['city'], |
|
169 | - 'postcode' => $geolocation['postcode'], |
|
170 | - ); |
|
171 | - |
|
172 | - } |
|
173 | - |
|
174 | - /** |
|
175 | - * Fetches the country code from the request headers, if one is available. |
|
176 | - * |
|
177 | - * @since 1.0.19 |
|
178 | - * @return string The country code pulled from the headers, or empty string if one was not found. |
|
179 | - */ |
|
180 | - protected static function get_country_code_from_headers() { |
|
181 | - $country_code = ''; |
|
182 | - |
|
183 | - $headers = array( |
|
184 | - 'MM_COUNTRY_CODE', |
|
185 | - 'GEOIP_COUNTRY_CODE', |
|
186 | - 'HTTP_CF_IPCOUNTRY', |
|
187 | - 'HTTP_X_COUNTRY_CODE', |
|
188 | - ); |
|
189 | - |
|
190 | - foreach ( $headers as $header ) { |
|
191 | - if ( empty( $_SERVER[ $header ] ) ) { |
|
192 | - continue; |
|
193 | - } |
|
194 | - |
|
195 | - $country_code = strtoupper( sanitize_text_field( wp_unslash( $_SERVER[ $header ] ) ) ); |
|
196 | - break; |
|
197 | - } |
|
198 | - |
|
199 | - return $country_code; |
|
200 | - } |
|
201 | - |
|
202 | - /** |
|
203 | - * Use APIs to Geolocate the user. |
|
204 | - * |
|
205 | - * Geolocation APIs can be added through the use of the getpaid_geolocation_geoip_apis filter. |
|
206 | - * Provide a name=>value pair for service-slug=>endpoint. |
|
207 | - * |
|
208 | - * If APIs are defined, one will be chosen at random to fulfil the request. After completing, the result |
|
209 | - * will be cached in a transient. |
|
210 | - * |
|
211 | - * @param string $ip_address IP address. |
|
212 | - * @return string |
|
213 | - */ |
|
214 | - protected static function geolocate_via_api( $ip_address ) { |
|
215 | - |
|
216 | - // Retrieve from cache... |
|
217 | - $country_code = get_transient( 'geoip_' . $ip_address ); |
|
218 | - |
|
219 | - // If missing, retrieve from the API. |
|
220 | - if ( false === $country_code ) { |
|
221 | - $geoip_services = apply_filters( 'getpaid_geolocation_geoip_apis', self::$geoip_apis ); |
|
222 | - |
|
223 | - if ( empty( $geoip_services ) ) { |
|
224 | - return ''; |
|
225 | - } |
|
226 | - |
|
227 | - $geoip_services_keys = array_keys( $geoip_services ); |
|
228 | - |
|
229 | - shuffle( $geoip_services_keys ); |
|
230 | - |
|
231 | - foreach ( $geoip_services_keys as $service_name ) { |
|
232 | - |
|
233 | - $service_endpoint = $geoip_services[ $service_name ]; |
|
234 | - $response = wp_safe_remote_get( sprintf( $service_endpoint, $ip_address ), array( 'timeout' => 2 ) ); |
|
235 | - $country_code = sanitize_text_field( strtoupper( self::handle_geolocation_response( $response, $service_name ) ) ); |
|
236 | - |
|
237 | - if ( ! empty( $country_code ) ) { |
|
238 | - break; |
|
239 | - } |
|
240 | - |
|
241 | - } |
|
242 | - |
|
243 | - set_transient( 'geoip_' . $ip_address, $country_code, WEEK_IN_SECONDS ); |
|
244 | - } |
|
245 | - |
|
246 | - return $country_code; |
|
247 | - } |
|
248 | - |
|
249 | - /** |
|
250 | - * Handles geolocation response |
|
251 | - * |
|
252 | - * @param WP_Error|String $geolocation_response |
|
253 | - * @param String $geolocation_service |
|
254 | - * @return string Country code |
|
255 | - */ |
|
256 | - protected static function handle_geolocation_response( $geolocation_response, $geolocation_service ) { |
|
257 | - |
|
258 | - if ( is_wp_error( $geolocation_response ) || empty( $geolocation_response['body'] ) ) { |
|
259 | - return ''; |
|
260 | - } |
|
261 | - |
|
262 | - if ( $geolocation_service === 'ipinfo.io' ) { |
|
263 | - $data = json_decode( $geolocation_response['body'] ); |
|
264 | - return empty( $data ) ? '' : $data->country; |
|
265 | - } |
|
266 | - |
|
267 | - if ( $geolocation_service === 'ip-api.com' ) { |
|
268 | - $data = json_decode( $geolocation_response['body'] ); |
|
269 | - return empty( $data ) ? '' : $data->countryCode; |
|
270 | - } |
|
271 | - |
|
272 | - return apply_filters( 'getpaid_geolocation_geoip_response_' . $geolocation_service, '', $geolocation_response['body'] ); |
|
273 | - |
|
274 | - } |
|
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 | + |
|
89 | + } |
|
90 | + |
|
91 | + set_transient( $transient_name, $external_ip_address, WEEK_IN_SECONDS ); |
|
92 | + } |
|
93 | + |
|
94 | + return $external_ip_address; |
|
95 | + } |
|
96 | + |
|
97 | + /** |
|
98 | + * Geolocate an IP address. |
|
99 | + * |
|
100 | + * @param string $ip_address IP Address. |
|
101 | + * @param bool $fallback If true, fallbacks to alternative IP detection (can be slower). |
|
102 | + * @param bool $api_fallback If true, uses geolocation APIs if the database file doesn't exist (can be slower). |
|
103 | + * @return array |
|
104 | + */ |
|
105 | + public static function geolocate_ip( $ip_address = '', $fallback = false, $api_fallback = true ) { |
|
106 | + |
|
107 | + if ( empty( $ip_address ) ) { |
|
108 | + $ip_address = self::get_ip_address(); |
|
109 | + } |
|
110 | + |
|
111 | + // Update the current user's IP Address. |
|
112 | + self::$current_user_ip = $ip_address; |
|
113 | + |
|
114 | + // Filter to allow custom geolocation of the IP address. |
|
115 | + $country_code = apply_filters( 'getpaid_geolocate_ip', false, $ip_address, $fallback, $api_fallback ); |
|
116 | + |
|
117 | + if ( false !== $country_code ) { |
|
118 | + |
|
119 | + return array( |
|
120 | + 'country' => $country_code, |
|
121 | + 'state' => '', |
|
122 | + 'city' => '', |
|
123 | + 'postcode' => '', |
|
124 | + ); |
|
125 | + |
|
126 | + } |
|
127 | + |
|
128 | + $country_code = self::get_country_code_from_headers(); |
|
129 | + |
|
130 | + /** |
|
131 | + * Get geolocation filter. |
|
132 | + * |
|
133 | + * @since 1.0.19 |
|
134 | + * @param array $geolocation Geolocation data, including country, state, city, and postcode. |
|
135 | + * @param string $ip_address IP Address. |
|
136 | + */ |
|
137 | + $geolocation = apply_filters( |
|
138 | + 'getpaid_get_geolocation', |
|
139 | + array( |
|
140 | + 'country' => $country_code, |
|
141 | + 'state' => '', |
|
142 | + 'city' => '', |
|
143 | + 'postcode' => '', |
|
144 | + ), |
|
145 | + $ip_address |
|
146 | + ); |
|
147 | + |
|
148 | + // If we still haven't found a country code, let's consider doing an API lookup. |
|
149 | + if ( '' === $geolocation['country'] && $api_fallback ) { |
|
150 | + $geolocation['country'] = self::geolocate_via_api( $ip_address ); |
|
151 | + } |
|
152 | + |
|
153 | + // It's possible that we're in a local environment, in which case the geolocation needs to be done from the |
|
154 | + // external address. |
|
155 | + if ( '' === $geolocation['country'] && $fallback ) { |
|
156 | + $external_ip_address = self::get_external_ip_address(); |
|
157 | + |
|
158 | + // Only bother with this if the external IP differs. |
|
159 | + if ( '0.0.0.0' !== $external_ip_address && $external_ip_address !== $ip_address ) { |
|
160 | + return self::geolocate_ip( $external_ip_address, false, $api_fallback ); |
|
161 | + } |
|
162 | + |
|
163 | + } |
|
164 | + |
|
165 | + return array( |
|
166 | + 'country' => $geolocation['country'], |
|
167 | + 'state' => $geolocation['state'], |
|
168 | + 'city' => $geolocation['city'], |
|
169 | + 'postcode' => $geolocation['postcode'], |
|
170 | + ); |
|
171 | + |
|
172 | + } |
|
173 | + |
|
174 | + /** |
|
175 | + * Fetches the country code from the request headers, if one is available. |
|
176 | + * |
|
177 | + * @since 1.0.19 |
|
178 | + * @return string The country code pulled from the headers, or empty string if one was not found. |
|
179 | + */ |
|
180 | + protected static function get_country_code_from_headers() { |
|
181 | + $country_code = ''; |
|
182 | + |
|
183 | + $headers = array( |
|
184 | + 'MM_COUNTRY_CODE', |
|
185 | + 'GEOIP_COUNTRY_CODE', |
|
186 | + 'HTTP_CF_IPCOUNTRY', |
|
187 | + 'HTTP_X_COUNTRY_CODE', |
|
188 | + ); |
|
189 | + |
|
190 | + foreach ( $headers as $header ) { |
|
191 | + if ( empty( $_SERVER[ $header ] ) ) { |
|
192 | + continue; |
|
193 | + } |
|
194 | + |
|
195 | + $country_code = strtoupper( sanitize_text_field( wp_unslash( $_SERVER[ $header ] ) ) ); |
|
196 | + break; |
|
197 | + } |
|
198 | + |
|
199 | + return $country_code; |
|
200 | + } |
|
201 | + |
|
202 | + /** |
|
203 | + * Use APIs to Geolocate the user. |
|
204 | + * |
|
205 | + * Geolocation APIs can be added through the use of the getpaid_geolocation_geoip_apis filter. |
|
206 | + * Provide a name=>value pair for service-slug=>endpoint. |
|
207 | + * |
|
208 | + * If APIs are defined, one will be chosen at random to fulfil the request. After completing, the result |
|
209 | + * will be cached in a transient. |
|
210 | + * |
|
211 | + * @param string $ip_address IP address. |
|
212 | + * @return string |
|
213 | + */ |
|
214 | + protected static function geolocate_via_api( $ip_address ) { |
|
215 | + |
|
216 | + // Retrieve from cache... |
|
217 | + $country_code = get_transient( 'geoip_' . $ip_address ); |
|
218 | + |
|
219 | + // If missing, retrieve from the API. |
|
220 | + if ( false === $country_code ) { |
|
221 | + $geoip_services = apply_filters( 'getpaid_geolocation_geoip_apis', self::$geoip_apis ); |
|
222 | + |
|
223 | + if ( empty( $geoip_services ) ) { |
|
224 | + return ''; |
|
225 | + } |
|
226 | + |
|
227 | + $geoip_services_keys = array_keys( $geoip_services ); |
|
228 | + |
|
229 | + shuffle( $geoip_services_keys ); |
|
230 | + |
|
231 | + foreach ( $geoip_services_keys as $service_name ) { |
|
232 | + |
|
233 | + $service_endpoint = $geoip_services[ $service_name ]; |
|
234 | + $response = wp_safe_remote_get( sprintf( $service_endpoint, $ip_address ), array( 'timeout' => 2 ) ); |
|
235 | + $country_code = sanitize_text_field( strtoupper( self::handle_geolocation_response( $response, $service_name ) ) ); |
|
236 | + |
|
237 | + if ( ! empty( $country_code ) ) { |
|
238 | + break; |
|
239 | + } |
|
240 | + |
|
241 | + } |
|
242 | + |
|
243 | + set_transient( 'geoip_' . $ip_address, $country_code, WEEK_IN_SECONDS ); |
|
244 | + } |
|
245 | + |
|
246 | + return $country_code; |
|
247 | + } |
|
248 | + |
|
249 | + /** |
|
250 | + * Handles geolocation response |
|
251 | + * |
|
252 | + * @param WP_Error|String $geolocation_response |
|
253 | + * @param String $geolocation_service |
|
254 | + * @return string Country code |
|
255 | + */ |
|
256 | + protected static function handle_geolocation_response( $geolocation_response, $geolocation_service ) { |
|
257 | + |
|
258 | + if ( is_wp_error( $geolocation_response ) || empty( $geolocation_response['body'] ) ) { |
|
259 | + return ''; |
|
260 | + } |
|
261 | + |
|
262 | + if ( $geolocation_service === 'ipinfo.io' ) { |
|
263 | + $data = json_decode( $geolocation_response['body'] ); |
|
264 | + return empty( $data ) ? '' : $data->country; |
|
265 | + } |
|
266 | + |
|
267 | + if ( $geolocation_service === 'ip-api.com' ) { |
|
268 | + $data = json_decode( $geolocation_response['body'] ); |
|
269 | + return empty( $data ) ? '' : $data->countryCode; |
|
270 | + } |
|
271 | + |
|
272 | + return apply_filters( 'getpaid_geolocation_geoip_response_' . $geolocation_service, '', $geolocation_response['body'] ); |
|
273 | + |
|
274 | + } |
|
275 | 275 | |
276 | 276 | } |
@@ -14,70 +14,70 @@ discard block |
||
14 | 14 | class WPInv_Ajax { |
15 | 15 | |
16 | 16 | /** |
17 | - * Hook in ajax handlers. |
|
18 | - */ |
|
19 | - public static function init() { |
|
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | - self::add_ajax_events(); |
|
17 | + * Hook in ajax handlers. |
|
18 | + */ |
|
19 | + public static function init() { |
|
20 | + add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | + add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | + self::add_ajax_events(); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | - * Set GetPaid AJAX constant and headers. |
|
27 | - */ |
|
28 | - public static function define_ajax() { |
|
29 | - |
|
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | - } |
|
36 | - $GLOBALS['wpdb']->hide_errors(); |
|
37 | - } |
|
26 | + * Set GetPaid AJAX constant and headers. |
|
27 | + */ |
|
28 | + public static function define_ajax() { |
|
29 | + |
|
30 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | + getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | + getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | + if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | + } |
|
36 | + $GLOBALS['wpdb']->hide_errors(); |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * Send headers for GetPaid Ajax Requests. |
|
43 | - * |
|
44 | - * @since 1.0.18 |
|
45 | - */ |
|
46 | - private static function wpinv_ajax_headers() { |
|
47 | - if ( ! headers_sent() ) { |
|
48 | - send_origin_headers(); |
|
49 | - send_nosniff_header(); |
|
50 | - nocache_headers(); |
|
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
54 | - } |
|
42 | + * Send headers for GetPaid Ajax Requests. |
|
43 | + * |
|
44 | + * @since 1.0.18 |
|
45 | + */ |
|
46 | + private static function wpinv_ajax_headers() { |
|
47 | + if ( ! headers_sent() ) { |
|
48 | + send_origin_headers(); |
|
49 | + send_nosniff_header(); |
|
50 | + nocache_headers(); |
|
51 | + header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | + header( 'X-Robots-Tag: noindex' ); |
|
53 | + status_header( 200 ); |
|
54 | + } |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | - * Check for GetPaid Ajax request and fire action. |
|
59 | - */ |
|
60 | - public static function do_wpinv_ajax() { |
|
61 | - global $wp_query; |
|
58 | + * Check for GetPaid Ajax request and fire action. |
|
59 | + */ |
|
60 | + public static function do_wpinv_ajax() { |
|
61 | + global $wp_query; |
|
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | - } |
|
63 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | + $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | + } |
|
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get( 'wpinv-ajax' ); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
70 | - self::wpinv_ajax_headers(); |
|
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
73 | - wp_die(); |
|
74 | - } |
|
69 | + if ( $action ) { |
|
70 | + self::wpinv_ajax_headers(); |
|
71 | + $action = sanitize_text_field( $action ); |
|
72 | + do_action( 'wpinv_ajax_' . $action ); |
|
73 | + wp_die(); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Hook in ajax methods. |
|
80 | - */ |
|
79 | + * Hook in ajax methods. |
|
80 | + */ |
|
81 | 81 | public static function add_ajax_events() { |
82 | 82 | |
83 | 83 | // array( 'event' => is_frontend ) |
@@ -255,24 +255,24 @@ discard block |
||
255 | 255 | check_ajax_referer( 'getpaid_form_nonce' ); |
256 | 256 | |
257 | 257 | // Is the request set up correctly? |
258 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
259 | - echo aui()->alert( |
|
260 | - array( |
|
261 | - 'type' => 'warning', |
|
262 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
263 | - ) |
|
258 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
259 | + echo aui()->alert( |
|
260 | + array( |
|
261 | + 'type' => 'warning', |
|
262 | + 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
263 | + ) |
|
264 | 264 | ); |
265 | 265 | exit; |
266 | 266 | } |
267 | 267 | |
268 | 268 | // Payment form or button? |
269 | - if ( ! empty( $_GET['form'] ) ) { |
|
269 | + if ( ! empty( $_GET['form'] ) ) { |
|
270 | 270 | getpaid_display_payment_form( urldecode( $_GET['form'] ) ); |
271 | - } else if( ! empty( $_GET['invoice'] ) ) { |
|
272 | - getpaid_display_invoice_payment_form( urldecode( $_GET['invoice'] ) ); |
|
271 | + } else if( ! empty( $_GET['invoice'] ) ) { |
|
272 | + getpaid_display_invoice_payment_form( urldecode( $_GET['invoice'] ) ); |
|
273 | 273 | } else { |
274 | - $items = getpaid_convert_items_to_array( urldecode( $_GET['item'] ) ); |
|
275 | - getpaid_display_item_payment_form( $items ); |
|
274 | + $items = getpaid_convert_items_to_array( urldecode( $_GET['item'] ) ); |
|
275 | + getpaid_display_item_payment_form( $items ); |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | exit; |
@@ -159,11 +159,11 @@ discard block |
||
159 | 159 | */ |
160 | 160 | function wpinv_get_capability( $capalibilty = 'manage_invoicing' ) { |
161 | 161 | |
162 | - if ( current_user_can( 'manage_options' ) ) { |
|
163 | - return 'manage_options'; |
|
164 | - }; |
|
162 | + if ( current_user_can( 'manage_options' ) ) { |
|
163 | + return 'manage_options'; |
|
164 | + }; |
|
165 | 165 | |
166 | - return $capalibilty; |
|
166 | + return $capalibilty; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | /** |
@@ -185,10 +185,10 @@ discard block |
||
185 | 185 | function wpinv_create_user( $email ) { |
186 | 186 | |
187 | 187 | // Prepare user values. |
188 | - $args = array( |
|
189 | - 'user_login' => wpinv_generate_user_name( $email ), |
|
190 | - 'user_pass' => wp_generate_password(), |
|
191 | - 'user_email' => $email, |
|
188 | + $args = array( |
|
189 | + 'user_login' => wpinv_generate_user_name( $email ), |
|
190 | + 'user_pass' => wp_generate_password(), |
|
191 | + 'user_email' => $email, |
|
192 | 192 | 'role' => 'subscriber', |
193 | 193 | ); |
194 | 194 | |
@@ -205,20 +205,20 @@ discard block |
||
205 | 205 | function wpinv_generate_user_name( $prefix = '' ) { |
206 | 206 | |
207 | 207 | // If prefix is an email, retrieve the part before the email. |
208 | - $prefix = strtok( $prefix, '@' ); |
|
208 | + $prefix = strtok( $prefix, '@' ); |
|
209 | 209 | |
210 | - // Trim to 4 characters max. |
|
211 | - $prefix = sanitize_user( $prefix ); |
|
210 | + // Trim to 4 characters max. |
|
211 | + $prefix = sanitize_user( $prefix ); |
|
212 | 212 | |
213 | - $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
|
214 | - if ( empty( $prefix ) || in_array( strtolower( $prefix ), array_map( 'strtolower', $illegal_logins ), true ) ) { |
|
215 | - $prefix = 'gtp'; |
|
216 | - } |
|
213 | + $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
|
214 | + if ( empty( $prefix ) || in_array( strtolower( $prefix ), array_map( 'strtolower', $illegal_logins ), true ) ) { |
|
215 | + $prefix = 'gtp'; |
|
216 | + } |
|
217 | 217 | |
218 | - $username = $prefix . '_' . zeroise( wp_rand( 0, 9999 ), 4 ); |
|
219 | - if ( username_exists( $username ) ) { |
|
220 | - return wpinv_generate_user_name( $username ); |
|
221 | - } |
|
218 | + $username = $prefix . '_' . zeroise( wp_rand( 0, 9999 ), 4 ); |
|
219 | + if ( username_exists( $username ) ) { |
|
220 | + return wpinv_generate_user_name( $username ); |
|
221 | + } |
|
222 | 222 | |
223 | 223 | return $username; |
224 | 224 | } |