@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * Don't exit if we're running test suite. |
37 | 37 | * @since 1.15 |
38 | 38 | */ |
39 | - if( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) { |
|
39 | + if ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) { |
|
40 | 40 | return $mixed; |
41 | 41 | } |
42 | 42 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @return void |
51 | 51 | */ |
52 | 52 | function check_ajax_nonce() { |
53 | - if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxviews' ) ) { |
|
53 | + if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxviews' ) ) { |
|
54 | 54 | $this->_exit( false ); |
55 | 55 | } |
56 | 56 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $context = rgpost( 'context' ); |
70 | 70 | |
71 | 71 | // Return markup for a single or multiple contexts |
72 | - if( $context ) { |
|
72 | + if ( $context ) { |
|
73 | 73 | $data = array( |
74 | 74 | esc_attr( $context ) => '' |
75 | 75 | ); |
@@ -113,17 +113,17 @@ discard block |
||
113 | 113 | function get_active_areas() { |
114 | 114 | $this->check_ajax_nonce(); |
115 | 115 | |
116 | - if( empty( $_POST['template_id'] ) ) { |
|
116 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
117 | 117 | $this->_exit( false ); |
118 | 118 | } |
119 | 119 | |
120 | 120 | ob_start(); |
121 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'directory', '', true ); |
|
122 | - $response['directory'] = ob_get_clean(); |
|
121 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'directory', '', true ); |
|
122 | + $response[ 'directory' ] = ob_get_clean(); |
|
123 | 123 | |
124 | 124 | ob_start(); |
125 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'single', '', true ); |
|
126 | - $response['single'] = ob_get_clean(); |
|
125 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'single', '', true ); |
|
126 | + $response[ 'single' ] = ob_get_clean(); |
|
127 | 127 | |
128 | 128 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
129 | 129 | |
@@ -138,20 +138,20 @@ discard block |
||
138 | 138 | |
139 | 139 | $this->check_ajax_nonce(); |
140 | 140 | |
141 | - if( empty( $_POST['template_id'] ) ) { |
|
141 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
142 | 142 | $this->_exit( false ); |
143 | 143 | } |
144 | 144 | |
145 | 145 | // get the fields xml config file for this specific preset |
146 | - $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST['template_id'] ); |
|
146 | + $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST[ 'template_id' ] ); |
|
147 | 147 | // import fields |
148 | - if( !empty( $preset_fields_path ) ) { |
|
148 | + if ( ! empty( $preset_fields_path ) ) { |
|
149 | 149 | $presets = $this->import_fields( $preset_fields_path ); |
150 | 150 | } else { |
151 | 151 | $presets = array( 'widgets' => array(), 'fields' => array() ); |
152 | 152 | } |
153 | 153 | |
154 | - $template_id = esc_attr( $_POST['template_id'] ); |
|
154 | + $template_id = esc_attr( $_POST[ 'template_id' ] ); |
|
155 | 155 | |
156 | 156 | // template areas |
157 | 157 | $template_areas_directory = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'directory' ); |
@@ -161,20 +161,20 @@ discard block |
||
161 | 161 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
162 | 162 | |
163 | 163 | ob_start(); |
164 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets['widgets'] ); |
|
165 | - $response['header'] = ob_get_clean(); |
|
164 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets[ 'widgets' ] ); |
|
165 | + $response[ 'header' ] = ob_get_clean(); |
|
166 | 166 | |
167 | 167 | ob_start(); |
168 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets['widgets'] ); |
|
169 | - $response['footer'] = ob_get_clean(); |
|
168 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets[ 'widgets' ] ); |
|
169 | + $response[ 'footer' ] = ob_get_clean(); |
|
170 | 170 | |
171 | 171 | ob_start(); |
172 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets['fields'] ); |
|
173 | - $response['directory'] = ob_get_clean(); |
|
172 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets[ 'fields' ] ); |
|
173 | + $response[ 'directory' ] = ob_get_clean(); |
|
174 | 174 | |
175 | 175 | ob_start(); |
176 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets['fields'] ); |
|
177 | - $response['single'] = ob_get_clean(); |
|
176 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets[ 'fields' ] ); |
|
177 | + $response[ 'single' ] = ob_get_clean(); |
|
178 | 178 | |
179 | 179 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
180 | 180 | |
@@ -192,26 +192,26 @@ discard block |
||
192 | 192 | |
193 | 193 | $this->check_ajax_nonce(); |
194 | 194 | |
195 | - if( empty( $_POST['template_id'] ) ) { |
|
195 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
196 | 196 | gravityview()->log->error( 'Cannot create preset form; the template_id is empty.' ); |
197 | 197 | $this->_exit( false ); |
198 | 198 | } |
199 | 199 | |
200 | 200 | // get the xml for this specific template_id |
201 | - $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST['template_id'] ); |
|
201 | + $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST[ 'template_id' ] ); |
|
202 | 202 | |
203 | 203 | // import form |
204 | 204 | $form = $this->import_form( $preset_form_xml_path ); |
205 | 205 | |
206 | 206 | // get the form ID |
207 | - if( false === $form ) { |
|
207 | + if ( false === $form ) { |
|
208 | 208 | // send error to user |
209 | - gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int) $_POST['template_id'] ) ); |
|
209 | + gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int)$_POST[ 'template_id' ] ) ); |
|
210 | 210 | |
211 | 211 | $this->_exit( false ); |
212 | 212 | } |
213 | 213 | |
214 | - $this->_exit( '<option value="'.esc_attr( $form['id'] ).'" selected="selected">'.esc_html( $form['title'] ).'</option>' ); |
|
214 | + $this->_exit( '<option value="' . esc_attr( $form[ 'id' ] ) . '" selected="selected">' . esc_html( $form[ 'title' ] ) . '</option>' ); |
|
215 | 215 | |
216 | 216 | } |
217 | 217 | |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | |
226 | 226 | gravityview()->log->debug( '[import_form] Import Preset Form. (File) {path}', array( 'path' => $xml_or_json_path ) ); |
227 | 227 | |
228 | - if( empty( $xml_or_json_path ) || !class_exists('GFExport') || !file_exists( $xml_or_json_path ) ) { |
|
228 | + if ( empty( $xml_or_json_path ) || ! class_exists( 'GFExport' ) || ! file_exists( $xml_or_json_path ) ) { |
|
229 | 229 | gravityview()->log->error( 'Class GFExport or file not found. file: {path}', array( 'path' => $xml_or_json_path ) ); |
230 | 230 | return false; |
231 | 231 | } |
@@ -237,13 +237,13 @@ discard block |
||
237 | 237 | gravityview()->log->debug( '[import_form] Importing form (Result) {count}', array( 'count' => $count ) ); |
238 | 238 | gravityview()->log->debug( '[import_form] Importing form (Form) ', array( 'data' => $forms ) ); |
239 | 239 | |
240 | - if( $count != 1 || empty( $forms[0]['id'] ) ) { |
|
240 | + if ( $count != 1 || empty( $forms[ 0 ][ 'id' ] ) ) { |
|
241 | 241 | gravityview()->log->error( 'Form Import Failed!' ); |
242 | 242 | return false; |
243 | 243 | } |
244 | 244 | |
245 | 245 | // import success - return form id |
246 | - return $forms[0]; |
|
246 | + return $forms[ 0 ]; |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | function get_field_options() { |
258 | 258 | $this->check_ajax_nonce(); |
259 | 259 | |
260 | - if( empty( $_POST['template'] ) || empty( $_POST['area'] ) || empty( $_POST['field_id'] ) || empty( $_POST['field_type'] ) ) { |
|
260 | + if ( empty( $_POST[ 'template' ] ) || empty( $_POST[ 'area' ] ) || empty( $_POST[ 'field_id' ] ) || empty( $_POST[ 'field_type' ] ) ) { |
|
261 | 261 | gravityview()->log->error( 'Required fields were not set in the $_POST request. ' ); |
262 | 262 | $this->_exit( false ); |
263 | 263 | } |
@@ -269,11 +269,11 @@ discard block |
||
269 | 269 | $_post = array_map( 'esc_attr', $_post ); |
270 | 270 | |
271 | 271 | // The GF type of field: `product`, `name`, `creditcard`, `id`, `text` |
272 | - $input_type = isset($_post['input_type']) ? esc_attr( $_post['input_type'] ) : NULL; |
|
273 | - $context = isset($_post['context']) ? esc_attr( $_post['context'] ) : NULL; |
|
272 | + $input_type = isset( $_post[ 'input_type' ] ) ? esc_attr( $_post[ 'input_type' ] ) : NULL; |
|
273 | + $context = isset( $_post[ 'context' ] ) ? esc_attr( $_post[ 'context' ] ) : NULL; |
|
274 | 274 | |
275 | - $form_id = empty( $_post['form_id'] ) ? null : $_post['form_id']; |
|
276 | - $response = GravityView_Render_Settings::render_field_options( $form_id, $_post['field_type'], $_post['template'], $_post['field_id'], $_post['field_label'], $_post['area'], $input_type, '', '', $context ); |
|
275 | + $form_id = empty( $_post[ 'form_id' ] ) ? null : $_post[ 'form_id' ]; |
|
276 | + $response = GravityView_Render_Settings::render_field_options( $form_id, $_post[ 'field_type' ], $_post[ 'template' ], $_post[ 'field_id' ], $_post[ 'field_label' ], $_post[ 'area' ], $input_type, '', '', $context ); |
|
277 | 277 | |
278 | 278 | $response = gravityview_strip_whitespace( $response ); |
279 | 279 | |
@@ -294,15 +294,15 @@ discard block |
||
294 | 294 | $form = ''; |
295 | 295 | |
296 | 296 | // if form id is set, use it, else, get form from preset |
297 | - if( !empty( $_POST['form_id'] ) ) { |
|
297 | + if ( ! empty( $_POST[ 'form_id' ] ) ) { |
|
298 | 298 | |
299 | - $form = (int) $_POST['form_id']; |
|
299 | + $form = (int)$_POST[ 'form_id' ]; |
|
300 | 300 | |
301 | 301 | } |
302 | 302 | // get form from preset |
303 | - elseif( !empty( $_POST['template_id'] ) ) { |
|
303 | + elseif ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
304 | 304 | |
305 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
305 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
306 | 306 | |
307 | 307 | } |
308 | 308 | |
@@ -318,27 +318,27 @@ discard block |
||
318 | 318 | * @param string $template_id Preset template |
319 | 319 | * |
320 | 320 | */ |
321 | - static function pre_get_form_fields( $template_id = '') { |
|
321 | + static function pre_get_form_fields( $template_id = '' ) { |
|
322 | 322 | |
323 | - if( empty( $template_id ) ) { |
|
323 | + if ( empty( $template_id ) ) { |
|
324 | 324 | gravityview()->log->error( 'Template ID not set.' ); |
325 | 325 | return false; |
326 | 326 | } else { |
327 | 327 | $form_file = apply_filters( 'gravityview_template_formxml', '', $template_id ); |
328 | - if( !file_exists( $form_file ) ) { |
|
328 | + if ( ! file_exists( $form_file ) ) { |
|
329 | 329 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. File not found. file: {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
330 | 330 | return false; |
331 | 331 | } |
332 | 332 | } |
333 | 333 | |
334 | 334 | // Load xml parser (from GravityForms) |
335 | - if( class_exists( 'GFCommon' ) ) { |
|
335 | + if ( class_exists( 'GFCommon' ) ) { |
|
336 | 336 | $xml_parser = GFCommon::get_base_path() . '/xml.php'; |
337 | 337 | } else { |
338 | 338 | $xml_parser = trailingslashit( WP_PLUGIN_DIR ) . 'gravityforms/xml.php'; |
339 | 339 | } |
340 | 340 | |
341 | - if( file_exists( $xml_parser ) ) { |
|
341 | + if ( file_exists( $xml_parser ) ) { |
|
342 | 342 | require_once( $xml_parser ); |
343 | 343 | } else { |
344 | 344 | gravityview()->log->debug( ' - Gravity Forms XML Parser not found {path}.', array( 'path' => $xml_parser ) ); |
@@ -349,32 +349,32 @@ discard block |
||
349 | 349 | $xmlstr = file_get_contents( $form_file ); |
350 | 350 | |
351 | 351 | $options = array( |
352 | - "page" => array("unserialize_as_array" => true), |
|
353 | - "form"=> array("unserialize_as_array" => true), |
|
354 | - "field"=> array("unserialize_as_array" => true), |
|
355 | - "rule"=> array("unserialize_as_array" => true), |
|
356 | - "choice"=> array("unserialize_as_array" => true), |
|
357 | - "input"=> array("unserialize_as_array" => true), |
|
358 | - "routing_item"=> array("unserialize_as_array" => true), |
|
359 | - "creditCard"=> array("unserialize_as_array" => true), |
|
360 | - "routin"=> array("unserialize_as_array" => true), |
|
361 | - "confirmation" => array("unserialize_as_array" => true), |
|
362 | - "notification" => array("unserialize_as_array" => true) |
|
352 | + "page" => array( "unserialize_as_array" => true ), |
|
353 | + "form"=> array( "unserialize_as_array" => true ), |
|
354 | + "field"=> array( "unserialize_as_array" => true ), |
|
355 | + "rule"=> array( "unserialize_as_array" => true ), |
|
356 | + "choice"=> array( "unserialize_as_array" => true ), |
|
357 | + "input"=> array( "unserialize_as_array" => true ), |
|
358 | + "routing_item"=> array( "unserialize_as_array" => true ), |
|
359 | + "creditCard"=> array( "unserialize_as_array" => true ), |
|
360 | + "routin"=> array( "unserialize_as_array" => true ), |
|
361 | + "confirmation" => array( "unserialize_as_array" => true ), |
|
362 | + "notification" => array( "unserialize_as_array" => true ) |
|
363 | 363 | ); |
364 | 364 | |
365 | - $xml = new RGXML($options); |
|
366 | - $forms = $xml->unserialize($xmlstr); |
|
365 | + $xml = new RGXML( $options ); |
|
366 | + $forms = $xml->unserialize( $xmlstr ); |
|
367 | 367 | |
368 | - if( !$forms ) { |
|
368 | + if ( ! $forms ) { |
|
369 | 369 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. Error importing file. (File) {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
370 | 370 | return false; |
371 | 371 | } |
372 | 372 | |
373 | - if( !empty( $forms[0] ) && is_array( $forms[0] ) ) { |
|
374 | - $form = $forms[0]; |
|
373 | + if ( ! empty( $forms[ 0 ] ) && is_array( $forms[ 0 ] ) ) { |
|
374 | + $form = $forms[ 0 ]; |
|
375 | 375 | } |
376 | 376 | |
377 | - if( empty( $form ) ) { |
|
377 | + if ( empty( $form ) ) { |
|
378 | 378 | gravityview()->log->error( '$form not set.', array( 'data' => $forms ) ); |
379 | 379 | return false; |
380 | 380 | } |
@@ -393,38 +393,38 @@ discard block |
||
393 | 393 | */ |
394 | 394 | function import_fields( $file ) { |
395 | 395 | |
396 | - if( empty( $file ) || !file_exists( $file ) ) { |
|
396 | + if ( empty( $file ) || ! file_exists( $file ) ) { |
|
397 | 397 | gravityview()->log->error( 'Importing Preset Fields. File not found. (File) {path}', array( 'path' => $file ) ); |
398 | 398 | return false; |
399 | 399 | } |
400 | 400 | |
401 | - if( !class_exists('WXR_Parser') ) { |
|
401 | + if ( ! class_exists( 'WXR_Parser' ) ) { |
|
402 | 402 | include_once GRAVITYVIEW_DIR . 'includes/lib/xml-parsers/parsers.php'; |
403 | 403 | } |
404 | 404 | |
405 | 405 | $parser = new WXR_Parser(); |
406 | 406 | $presets = $parser->parse( $file ); |
407 | 407 | |
408 | - if(is_wp_error( $presets )) { |
|
408 | + if ( is_wp_error( $presets ) ) { |
|
409 | 409 | gravityview()->log->error( 'Importing Preset Fields failed. Threw WP_Error.', array( 'data' => $presets ) ); |
410 | 410 | return false; |
411 | 411 | } |
412 | 412 | |
413 | - if( empty( $presets['posts'][0]['postmeta'] ) && !is_array( $presets['posts'][0]['postmeta'] ) ) { |
|
413 | + if ( empty( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) && ! is_array( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ) { |
|
414 | 414 | gravityview()->log->error( 'Importing Preset Fields failed. Meta not found in file. {path}', array( 'path' => $file ) ); |
415 | 415 | return false; |
416 | 416 | } |
417 | 417 | |
418 | - gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets['posts'][0]['postmeta'] ) ); |
|
418 | + gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ); |
|
419 | 419 | |
420 | 420 | $fields = $widgets = array(); |
421 | - foreach( $presets['posts'][0]['postmeta'] as $meta ) { |
|
422 | - switch ($meta['key']) { |
|
421 | + foreach ( $presets[ 'posts' ][ 0 ][ 'postmeta' ] as $meta ) { |
|
422 | + switch ( $meta[ 'key' ] ) { |
|
423 | 423 | case '_gravityview_directory_fields': |
424 | - $fields = maybe_unserialize( $meta['value'] ); |
|
424 | + $fields = maybe_unserialize( $meta[ 'value' ] ); |
|
425 | 425 | break; |
426 | 426 | case '_gravityview_directory_widgets': |
427 | - $widgets = maybe_unserialize( $meta['value'] ); |
|
427 | + $widgets = maybe_unserialize( $meta[ 'value' ] ); |
|
428 | 428 | break; |
429 | 429 | } |
430 | 430 | } |
@@ -67,20 +67,20 @@ discard block |
||
67 | 67 | $result = array(); |
68 | 68 | if ( ! $lock_holder_user_id ) { |
69 | 69 | $this->set_lock( $object_id ); |
70 | - $result['html'] = __( 'You now have control', 'gravityview' ); |
|
71 | - $result['status'] = 'lock_obtained'; |
|
70 | + $result[ 'html' ] = __( 'You now have control', 'gravityview' ); |
|
71 | + $result[ 'status' ] = 'lock_obtained'; |
|
72 | 72 | } else { |
73 | 73 | |
74 | - if( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
74 | + if ( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
75 | 75 | $user = get_userdata( $lock_holder_user_id ); |
76 | - $result['html'] = sprintf( __( 'Your request has been sent to %s.', 'gravityview' ), $user->display_name ); |
|
76 | + $result[ 'html' ] = sprintf( __( 'Your request has been sent to %s.', 'gravityview' ), $user->display_name ); |
|
77 | 77 | } else { |
78 | - $result['html'] = __( 'Your request has been sent.', 'gravityview' ); |
|
78 | + $result[ 'html' ] = __( 'Your request has been sent.', 'gravityview' ); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | $this->update_lock_request_meta( $object_id, $user_id ); |
82 | 82 | |
83 | - $result['status'] = 'lock_requested'; |
|
83 | + $result[ 'status' ] = 'lock_requested'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | return $result; |
@@ -122,19 +122,19 @@ discard block |
||
122 | 122 | $continue_enqueuing = false; |
123 | 123 | |
124 | 124 | // If any Views being loaded have entry locking, enqueue the scripts |
125 | - foreach( $views->all() as $view ) { |
|
125 | + foreach ( $views->all() as $view ) { |
|
126 | 126 | |
127 | 127 | // Make sure the View has edit locking enabled |
128 | - if( ! $view->settings->get( 'edit_locking' ) ) { |
|
128 | + if ( ! $view->settings->get( 'edit_locking' ) ) { |
|
129 | 129 | continue; |
130 | 130 | } |
131 | 131 | |
132 | 132 | // Make sure that the entry belongs to one of the forms connected to one of the Views in this request |
133 | 133 | $joined_forms = $view::get_joined_forms( $view->ID ); |
134 | 134 | |
135 | - $entry_form_id = $entry_array['form_id']; |
|
135 | + $entry_form_id = $entry_array[ 'form_id' ]; |
|
136 | 136 | |
137 | - if( ! isset( $joined_forms[ $entry_form_id ] ) ) { |
|
137 | + if ( ! isset( $joined_forms[ $entry_form_id ] ) ) { |
|
138 | 138 | continue; |
139 | 139 | } |
140 | 140 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | break; |
144 | 144 | } |
145 | 145 | |
146 | - if( ! $continue_enqueuing ) { |
|
146 | + if ( ! $continue_enqueuing ) { |
|
147 | 147 | return; |
148 | 148 | } |
149 | 149 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | */ |
164 | 164 | protected function enqueue_scripts( $entry ) { |
165 | 165 | |
166 | - $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || isset( $_GET['gform_debug'] ) ? '' : '.min'; |
|
166 | + $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || isset( $_GET[ 'gform_debug' ] ) ? '' : '.min'; |
|
167 | 167 | $locking_path = GFCommon::get_base_url() . '/includes/locking/'; |
168 | 168 | |
169 | 169 | wp_enqueue_script( 'gforms_locking', $locking_path . "js/locking{$min}.js", array( 'jquery', 'heartbeat' ), GFCommon::$version ); |
@@ -172,20 +172,20 @@ discard block |
||
172 | 172 | $translations = array_map( 'wp_strip_all_tags', $this->get_strings() ); |
173 | 173 | |
174 | 174 | $strings = array( |
175 | - 'noResponse' => $translations['no_response'], |
|
176 | - 'requestAgain' => $translations['request_again'], |
|
177 | - 'requestError' => $translations['request_error'], |
|
178 | - 'gainedControl' => $translations['gained_control'], |
|
179 | - 'rejected' => $translations['request_rejected'], |
|
180 | - 'pending' => $translations['request_pending'], |
|
175 | + 'noResponse' => $translations[ 'no_response' ], |
|
176 | + 'requestAgain' => $translations[ 'request_again' ], |
|
177 | + 'requestError' => $translations[ 'request_error' ], |
|
178 | + 'gainedControl' => $translations[ 'gained_control' ], |
|
179 | + 'rejected' => $translations[ 'request_rejected' ], |
|
180 | + 'pending' => $translations[ 'request_pending' ], |
|
181 | 181 | ); |
182 | 182 | |
183 | - $lock_user_id = $this->check_lock( $entry['id'] ); |
|
183 | + $lock_user_id = $this->check_lock( $entry[ 'id' ] ); |
|
184 | 184 | |
185 | 185 | $vars = array( |
186 | 186 | 'hasLock' => ! $lock_user_id ? 1 : 0, |
187 | 187 | 'lockUI' => $this->get_lock_ui( $lock_user_id ), |
188 | - 'objectID' => $entry['id'], |
|
188 | + 'objectID' => $entry[ 'id' ], |
|
189 | 189 | 'objectType' => 'entry', |
190 | 190 | 'strings' => $strings, |
191 | 191 | ); |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $hidden = $locked ? '' : ' hidden'; |
216 | 216 | if ( $locked ) { |
217 | 217 | |
218 | - if( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
218 | + if ( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
219 | 219 | $avatar = get_avatar( $user->ID, 64 ); |
220 | 220 | $person_editing_text = $user->display_name; |
221 | 221 | } else { |
@@ -322,11 +322,11 @@ discard block |
||
322 | 322 | |
323 | 323 | $current_url = add_query_arg( $wp->query_string, '', home_url( $wp->request ) ); |
324 | 324 | |
325 | - if ( isset( $_GET['get-edit-lock'] ) ) { |
|
325 | + if ( isset( $_GET[ 'get-edit-lock' ] ) ) { |
|
326 | 326 | $this->set_lock( $entry_id ); |
327 | 327 | echo '<script>window.location = ' . json_encode( remove_query_arg( 'get-edit-lock', $current_url ) ) . ';</script>'; |
328 | 328 | exit(); |
329 | - } else if ( isset( $_GET['release-edit-lock'] ) ) { |
|
329 | + } else if ( isset( $_GET[ 'release-edit-lock' ] ) ) { |
|
330 | 330 | $this->delete_lock_meta( $entry_id ); |
331 | 331 | $current_url = remove_query_arg( 'edit', $current_url ); |
332 | 332 | echo '<script>window.location = ' . json_encode( remove_query_arg( 'release-edit-lock', $current_url ) ) . ';</script>'; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | /** @var WP_Admin_Bar $wp_admin_bar */ |
39 | 39 | global $wp_admin_bar; |
40 | 40 | |
41 | - if( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
41 | + if ( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
42 | 42 | return; |
43 | 43 | } |
44 | 44 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | 'meta' => array( |
104 | 104 | 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), $entry->get_slug() ), |
105 | 105 | ), |
106 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry['form_id'], $entry['id'] ) ) ), |
|
106 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry[ 'form_id' ], $entry[ 'id' ] ) ) ), |
|
107 | 107 | ) ); |
108 | 108 | |
109 | 109 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | /** @var WP_Admin_Bar $wp_admin_bar */ |
120 | 120 | global $wp_admin_bar; |
121 | 121 | |
122 | - if( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
122 | + if ( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
123 | 123 | |
124 | 124 | $view_data = GravityView_View_Data::getInstance(); |
125 | 125 | $views = $view_data->get_views(); |
@@ -131,21 +131,21 @@ discard block |
||
131 | 131 | $added_views = array(); |
132 | 132 | |
133 | 133 | foreach ( $views as $view ) { |
134 | - $view = \GV\View::by_id( $view['id'] ); |
|
134 | + $view = \GV\View::by_id( $view[ 'id' ] ); |
|
135 | 135 | $view_id = $view->ID; |
136 | 136 | $form_id = $view->form ? $view->form->ID : null; |
137 | 137 | |
138 | 138 | $edit_view_title = __( 'Edit View', 'gravityview' ); |
139 | 139 | $edit_form_title = __( 'Edit Form', 'gravityview' ); |
140 | 140 | |
141 | - if( sizeof( $views ) > 1 ) { |
|
141 | + if ( sizeof( $views ) > 1 ) { |
|
142 | 142 | $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view_id ); |
143 | 143 | $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $form_id ); |
144 | 144 | } |
145 | 145 | |
146 | - if( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
146 | + if ( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
147 | 147 | |
148 | - $added_views[] = $view_id; |
|
148 | + $added_views[ ] = $view_id; |
|
149 | 149 | |
150 | 150 | $wp_admin_bar->add_menu( array( |
151 | 151 | 'id' => 'edit-view-' . $view_id, |
@@ -155,9 +155,9 @@ discard block |
||
155 | 155 | ) ); |
156 | 156 | } |
157 | 157 | |
158 | - if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
158 | + if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
159 | 159 | |
160 | - $added_forms[] = $form_id; |
|
160 | + $added_forms[ ] = $form_id; |
|
161 | 161 | |
162 | 162 | $wp_admin_bar->add_menu( array( |
163 | 163 | 'id' => 'edit-form-' . $form_id, |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | $args = array(); |
115 | 115 | |
116 | - $view_id = is_null ( $view ) ? null : $view->ID; |
|
116 | + $view_id = is_null( $view ) ? null : $view->ID; |
|
117 | 117 | |
118 | 118 | $permalink = null; |
119 | 119 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | |
127 | 127 | $view_collection = View_Collection::from_post( $post ); |
128 | 128 | |
129 | - if( 1 < $view_collection->count() ) { |
|
130 | - $args['gvid'] = $view_id; |
|
129 | + if ( 1 < $view_collection->count() ) { |
|
130 | + $args[ 'gvid' ] = $view_id; |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | } |
@@ -157,21 +157,21 @@ discard block |
||
157 | 157 | */ |
158 | 158 | $link_parts = explode( '?', $permalink ); |
159 | 159 | |
160 | - $query = ! empty( $link_parts[1] ) ? '?' . $link_parts[1] : ''; |
|
160 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
161 | 161 | |
162 | - $permalink = trailingslashit( $link_parts[0] ) . $entry_endpoint_name . '/'. $entry_slug .'/' . $query; |
|
162 | + $permalink = trailingslashit( $link_parts[ 0 ] ) . $entry_endpoint_name . '/' . $entry_slug . '/' . $query; |
|
163 | 163 | } else { |
164 | 164 | $args[ $entry_endpoint_name ] = $entry_slug; |
165 | 165 | } |
166 | 166 | |
167 | 167 | if ( $track_directory ) { |
168 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
169 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
168 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
169 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | if ( $sort = Utils::_GET( 'sort' ) ) { |
173 | - $args['sort'] = $sort; |
|
174 | - $args['dir'] = Utils::_GET( 'dir' ); |
|
173 | + $args[ 'sort' ] = $sort; |
|
174 | + $args[ 'dir' ] = Utils::_GET( 'dir' ); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | |
210 | 210 | $entry_slug = \GravityView_API::get_entry_slug( $this->ID, $this->as_entry() ); |
211 | 211 | |
212 | - if( ! $apply_filter ) { |
|
212 | + if ( ! $apply_filter ) { |
|
213 | 213 | return $entry_slug; |
214 | 214 | } |
215 | 215 |
@@ -106,14 +106,14 @@ discard block |
||
106 | 106 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
107 | 107 | */ |
108 | 108 | public static function from_entry( $entry ) { |
109 | - if ( empty( $entry['id'] ) ) { |
|
109 | + if ( empty( $entry[ 'id' ] ) ) { |
|
110 | 110 | return null; |
111 | 111 | } |
112 | 112 | |
113 | 113 | $self = new self(); |
114 | 114 | $self->entry = $entry; |
115 | 115 | |
116 | - $self->ID = $self->entry['id']; |
|
116 | + $self->ID = $self->entry[ 'id' ]; |
|
117 | 117 | $self->slug = $self->get_slug(); |
118 | 118 | |
119 | 119 | return $self; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * @return bool Whether the offset exists or not. |
129 | 129 | */ |
130 | 130 | public function offsetExists( $offset ) { |
131 | - return isset( $this->entry[$offset] ); |
|
131 | + return isset( $this->entry[ $offset ] ); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @return mixed The value of the requested entry data. |
144 | 144 | */ |
145 | 145 | public function offsetGet( $offset ) { |
146 | - return $this->entry[$offset]; |
|
146 | + return $this->entry[ $offset ]; |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | wp_nonce_field( 'gravityview_select_form', 'gravityview_select_form_nonce' ); |
11 | 11 | |
12 | 12 | //current value |
13 | -$current_form = (int) \GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
13 | +$current_form = (int)\GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
14 | 14 | |
15 | 15 | // If form is in trash or not existing, show error |
16 | 16 | GravityView_Admin::connected_form_warning( $current_form ); |
17 | 17 | |
18 | 18 | // check for available gravity forms |
19 | -$forms = gravityview_get_forms('any', false, 'title' ); |
|
19 | +$forms = gravityview_get_forms( 'any', false, 'title' ); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * @param int $current_form Form currently selected in the View (0 if none selected) |
@@ -35,24 +35,24 @@ discard block |
||
35 | 35 | ?> |
36 | 36 | <a class="button button-primary" href="#gv_start_fresh" title="<?php esc_attr_e( 'Use a Form Preset', 'gravityview' ); ?>"><?php esc_html_e( 'Use a Form Preset', 'gravityview' ); ?></a> |
37 | 37 | |
38 | - <?php if( !empty( $forms ) ) { ?> |
|
38 | + <?php if ( ! empty( $forms ) ) { ?> |
|
39 | 39 | <span> <?php esc_html_e( 'or use an existing form', 'gravityview' ); ?> </span> |
40 | 40 | <?php } |
41 | 41 | } |
42 | 42 | |
43 | 43 | // If there are no forms to select, show no forms. |
44 | - if( !empty( $forms ) ) { ?> |
|
44 | + if ( ! empty( $forms ) ) { ?> |
|
45 | 45 | <select name="gravityview_form_id" id="gravityview_form_id"> |
46 | 46 | <option value="" <?php selected( '', $current_form, true ); ?>>— <?php esc_html_e( 'list of forms', 'gravityview' ); ?> —</option> |
47 | - <?php foreach( $forms as $form ) { ?> |
|
48 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
47 | + <?php foreach ( $forms as $form ) { ?> |
|
48 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
49 | 49 | <?php } ?> |
50 | 50 | </select> |
51 | 51 | <?php } else { ?> |
52 | 52 | <select name="gravityview_form_id" id="gravityview_form_id" class="hidden"><option selected="selected" value=""></option></select> |
53 | 53 | <?php } ?> |
54 | 54 | |
55 | - <button class="button button-primary" <?php if( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
55 | + <button class="button button-primary" <?php if ( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
56 | 56 | </p> |
57 | 57 | |
58 | 58 | <?php // confirm dialog box ?> |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function register_noconflict( $items ) { |
55 | 55 | |
56 | - $items[] = 'gravityview-admin-installer'; |
|
56 | + $items[ ] = 'gravityview-admin-installer'; |
|
57 | 57 | |
58 | 58 | return $items; |
59 | 59 | } |
@@ -68,21 +68,21 @@ discard block |
||
68 | 68 | |
69 | 69 | $downloads_data = get_site_transient( self::DOWNLOADS_DATA_TRANSIENT ); |
70 | 70 | |
71 | - if ( ! $downloads_data && ! isset( $_GET['cache'] ) ) { |
|
71 | + if ( ! $downloads_data && ! isset( $_GET[ 'cache' ] ) ) { |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | - add_filter( 'plugins_api', function ( $data, $action, $args ) use ( $downloads_data ) { |
|
75 | + add_filter( 'plugins_api', function( $data, $action, $args ) use ( $downloads_data ) { |
|
76 | 76 | foreach ( $downloads_data as $extension ) { |
77 | - if ( empty( $extension['info'] ) || empty( $args->slug ) || $args->slug !== $extension['info']['slug'] ) { |
|
77 | + if ( empty( $extension[ 'info' ] ) || empty( $args->slug ) || $args->slug !== $extension[ 'info' ][ 'slug' ] ) { |
|
78 | 78 | continue; |
79 | 79 | } |
80 | 80 | |
81 | - return (object) array( |
|
82 | - 'slug' => $extension['info']['slug'], |
|
83 | - 'name' => $extension['info']['title'], |
|
84 | - 'version' => $extension['licensing']['version'], |
|
85 | - 'download_link' => $extension['files'][0]['file'], |
|
81 | + return (object)array( |
|
82 | + 'slug' => $extension[ 'info' ][ 'slug' ], |
|
83 | + 'name' => $extension[ 'info' ][ 'title' ], |
|
84 | + 'version' => $extension[ 'licensing' ][ 'version' ], |
|
85 | + 'download_link' => $extension[ 'files' ][ 0 ][ 'file' ], |
|
86 | 86 | ); |
87 | 87 | } |
88 | 88 | |
@@ -144,13 +144,13 @@ discard block |
||
144 | 144 | |
145 | 145 | foreach ( $all_plugins as $path => $plugin ) { |
146 | 146 | |
147 | - if ( empty( $plugin['TextDomain'] ) ) { |
|
147 | + if ( empty( $plugin[ 'TextDomain' ] ) ) { |
|
148 | 148 | continue; |
149 | 149 | } |
150 | 150 | |
151 | - $wp_plugins[ $plugin['TextDomain'] ] = array( |
|
151 | + $wp_plugins[ $plugin[ 'TextDomain' ] ] = array( |
|
152 | 152 | 'path' => $path, |
153 | - 'version' => $plugin['Version'], |
|
153 | + 'version' => $plugin[ 'Version' ], |
|
154 | 154 | 'activated' => is_plugin_active( $path ) |
155 | 155 | ); |
156 | 156 | } |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | return $downloads_data; |
209 | 209 | } |
210 | 210 | |
211 | - if( \GV\Plugin::is_network_activated() ) { |
|
211 | + if ( \GV\Plugin::is_network_activated() ) { |
|
212 | 212 | $home_url = network_home_url(); |
213 | 213 | } else { |
214 | 214 | $home_url = home_url(); |
@@ -236,13 +236,13 @@ discard block |
||
236 | 236 | |
237 | 237 | $downloads_data = json_decode( wp_remote_retrieve_body( $response ), true ); |
238 | 238 | |
239 | - if ( empty( $downloads_data['products'] ) ) { |
|
239 | + if ( empty( $downloads_data[ 'products' ] ) ) { |
|
240 | 240 | return array(); |
241 | 241 | } |
242 | 242 | |
243 | - $this->set_downloads_data( $downloads_data['products'] ); |
|
243 | + $this->set_downloads_data( $downloads_data[ 'products' ] ); |
|
244 | 244 | |
245 | - return $downloads_data['products']; |
|
245 | + return $downloads_data[ 'products' ]; |
|
246 | 246 | } |
247 | 247 | |
248 | 248 | /** |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | |
316 | 316 | foreach ( $downloads_data as $extension ) { |
317 | 317 | |
318 | - if ( empty( $extension['info'] ) ) { |
|
318 | + if ( empty( $extension[ 'info' ] ) ) { |
|
319 | 319 | continue; |
320 | 320 | } |
321 | 321 | |
@@ -344,29 +344,29 @@ discard block |
||
344 | 344 | |
345 | 345 | $details = $this->get_download_display_details( $download, $wp_plugins ); |
346 | 346 | |
347 | - $download_info = $details['download_info']; |
|
347 | + $download_info = $details[ 'download_info' ]; |
|
348 | 348 | |
349 | 349 | ?> |
350 | - <div class="item <?php echo esc_attr( $details['item_class'] ); ?>"> |
|
350 | + <div class="item <?php echo esc_attr( $details[ 'item_class' ] ); ?>"> |
|
351 | 351 | <div class="addon-inner"> |
352 | - <a href="<?php echo esc_url( $download_info['link'] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info['thumbnail'] ); ?>" alt="" /></a> |
|
353 | - <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info['title'] ) ); ?></h3> |
|
352 | + <a href="<?php echo esc_url( $download_info[ 'link' ] ); ?>" rel="external noreferrer noopener" title="<?php esc_html_e( 'Visit the plugin page', 'gravityview' ); ?>"><img class="thumbnail" src="<?php echo esc_attr( $download_info[ 'thumbnail' ] ); ?>" alt="" /></a> |
|
353 | + <h3><?php echo esc_html( \GV\Utils::get( $download_info, 'installer_title', $download_info[ 'title' ] ) ); ?></h3> |
|
354 | 354 | <div> |
355 | - <?php if( ! empty( $details['status_label'] ) ) { ?> |
|
356 | - <div class="status <?php echo esc_attr( $details['status'] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details['status_label'] ) ); ?>"> |
|
357 | - <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details['status_label'] ); ?></span> |
|
355 | + <?php if ( ! empty( $details[ 'status_label' ] ) ) { ?> |
|
356 | + <div class="status <?php echo esc_attr( $details[ 'status' ] ); ?>" title="<?php printf( esc_attr__( 'Plugin status: %s', 'gravityview' ), esc_html( $details[ 'status_label' ] ) ); ?>"> |
|
357 | + <span class="dashicons dashicons-admin-plugins"></span> <span class="status-label"><?php echo esc_html( $details[ 'status_label' ] ); ?></span> |
|
358 | 358 | </div> |
359 | 359 | <?php } ?> |
360 | 360 | |
361 | - <a data-status="<?php echo esc_attr( $details['status'] ); ?>" data-plugin-path="<?php echo esc_attr( $details['plugin_path'] ); ?>" href="<?php echo esc_url( $details['href'] ); ?>" class="button <?php echo esc_attr( $details['button_class'] ); ?>" title="<?php echo esc_attr( $details['button_title'] ); ?>"> |
|
362 | - <span class="title"><?php echo esc_html( $details['button_label'] ); ?></span> |
|
363 | - <?php if( $details['spinner'] ) { ?><span class="spinner"></span><?php } ?> |
|
361 | + <a data-status="<?php echo esc_attr( $details[ 'status' ] ); ?>" data-plugin-path="<?php echo esc_attr( $details[ 'plugin_path' ] ); ?>" href="<?php echo esc_url( $details[ 'href' ] ); ?>" class="button <?php echo esc_attr( $details[ 'button_class' ] ); ?>" title="<?php echo esc_attr( $details[ 'button_title' ] ); ?>"> |
|
362 | + <span class="title"><?php echo esc_html( $details[ 'button_label' ] ); ?></span> |
|
363 | + <?php if ( $details[ 'spinner' ] ) { ?><span class="spinner"></span><?php } ?> |
|
364 | 364 | </a> |
365 | 365 | </div> |
366 | 366 | |
367 | 367 | <div class="addon-excerpt"><?php |
368 | 368 | |
369 | - $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info['excerpt'] ); |
|
369 | + $excerpt = \GV\Utils::get( $download_info, 'installer_excerpt', $download_info[ 'excerpt' ] ); |
|
370 | 370 | |
371 | 371 | // Allow some pure HTML tags, but remove everything else from the excerpt. |
372 | 372 | $tags = array( '<strong>', '</strong>', '<em>', '</em>', '<code>', '</code>' ); |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | */ |
407 | 407 | private function get_download_display_details( $download, $wp_plugins ) { |
408 | 408 | |
409 | - $download_info = wp_parse_args( (array) $download['info'], array( |
|
409 | + $download_info = wp_parse_args( (array)$download[ 'info' ], array( |
|
410 | 410 | 'thumbnail' => '', |
411 | 411 | 'title' => '', |
412 | 412 | 'textdomain' => '', |
@@ -418,9 +418,9 @@ discard block |
||
418 | 418 | 'installer_excerpt' => null, // May not be defined |
419 | 419 | ) ); |
420 | 420 | |
421 | - $wp_plugin = \GV\Utils::get( $wp_plugins, $download_info['textdomain'], false ); |
|
421 | + $wp_plugin = \GV\Utils::get( $wp_plugins, $download_info[ 'textdomain' ], false ); |
|
422 | 422 | |
423 | - $has_access = ! empty( $download['files'] ); |
|
423 | + $has_access = ! empty( $download[ 'files' ] ); |
|
424 | 424 | $spinner = true; |
425 | 425 | $href = $plugin_path = '#'; |
426 | 426 | $status = $item_class = $button_title = $button_class = ''; |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | $required_license = $galactic_only ? __( 'All Access', 'gravityview' ) : __( 'Core + Extensions', 'gravityview' ); |
431 | 431 | |
432 | 432 | // The license is not active - no matter what level, this should not work |
433 | - if( ! $is_active && empty( $base_price ) ) { |
|
433 | + if ( ! $is_active && empty( $base_price ) ) { |
|
434 | 434 | $spinner = false; |
435 | 435 | $status_label = ''; |
436 | 436 | $button_class = 'disabled disabled-license'; |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | $status_label = ''; |
444 | 444 | $button_label = sprintf( __( 'Purchase Now for %s', 'gravityview' ), '$' . $base_price ); |
445 | 445 | $button_class = 'button-primary button-large'; |
446 | - $href = $download_info['link']; |
|
446 | + $href = $download_info[ 'link' ]; |
|
447 | 447 | $item_class = 'featured'; |
448 | 448 | } |
449 | 449 | |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | $href = 'https://gravityview.co/pricing/?utm_source=admin-installer&utm_medium=admin&utm_campaign=Admin%20Notice&utm_content=' . $required_license; |
457 | 457 | } |
458 | 458 | |
459 | - elseif ( ! empty( $download_info['coming_soon'] ) ) { |
|
459 | + elseif ( ! empty( $download_info[ 'coming_soon' ] ) ) { |
|
460 | 460 | $spinner = false; |
461 | 461 | $status = 'notinstalled'; |
462 | 462 | $status_label = __( 'Coming Soon', 'gravityview' ); |
@@ -471,8 +471,8 @@ discard block |
||
471 | 471 | $href = add_query_arg( |
472 | 472 | array( |
473 | 473 | 'action' => 'install-plugin', |
474 | - 'plugin' => $download_info['slug'], |
|
475 | - '_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info['slug'] ), |
|
474 | + 'plugin' => $download_info[ 'slug' ], |
|
475 | + '_wpnonce' => wp_create_nonce( 'install-plugin_' . $download_info[ 'slug' ] ), |
|
476 | 476 | ), |
477 | 477 | self_admin_url( 'update.php' ) |
478 | 478 | ); |
@@ -484,25 +484,25 @@ discard block |
||
484 | 484 | } |
485 | 485 | |
486 | 486 | // Access and the plugin is installed but not active |
487 | - elseif ( false === $wp_plugin['activated'] ) { |
|
487 | + elseif ( false === $wp_plugin[ 'activated' ] ) { |
|
488 | 488 | $status = 'inactive'; |
489 | 489 | $status_label = __( 'Inactive', 'gravityview' ); |
490 | 490 | $button_label = __( 'Activate', 'gravityview' ); |
491 | - $plugin_path = $wp_plugin['path']; |
|
491 | + $plugin_path = $wp_plugin[ 'path' ]; |
|
492 | 492 | |
493 | 493 | } |
494 | 494 | |
495 | 495 | // Access and the plugin is installed and active |
496 | 496 | else { |
497 | 497 | |
498 | - $plugin_path = $wp_plugin['path']; |
|
498 | + $plugin_path = $wp_plugin[ 'path' ]; |
|
499 | 499 | $status = 'active'; |
500 | 500 | $status_label = __( 'Active', 'gravityview' ); |
501 | 501 | $button_label = __( 'Deactivate', 'gravityview' ); |
502 | 502 | |
503 | 503 | } |
504 | 504 | |
505 | - return compact( 'download_info','plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' ); |
|
505 | + return compact( 'download_info', 'plugin_path', 'status', 'status_label', 'button_title', 'button_class', 'button_label', 'href', 'spinner', 'item_class', 'required_license', 'is_active' ); |
|
506 | 506 | } |
507 | 507 | |
508 | 508 | /** |
@@ -517,11 +517,11 @@ discard block |
||
517 | 517 | $base_price = \GV\Utils::get( $download, 'pricing/amount', 0 ); |
518 | 518 | $base_price = \GFCommon::to_number( $base_price ); |
519 | 519 | |
520 | - unset( $download['pricing']['amount'] ); |
|
520 | + unset( $download[ 'pricing' ][ 'amount' ] ); |
|
521 | 521 | |
522 | 522 | // Price options array, not single price |
523 | - if ( ! $base_price && ! empty( $download['pricing'] ) ) { |
|
524 | - $base_price = array_shift( $download['pricing'] ); |
|
523 | + if ( ! $base_price && ! empty( $download[ 'pricing' ] ) ) { |
|
524 | + $base_price = array_shift( $download[ 'pricing' ] ); |
|
525 | 525 | } |
526 | 526 | |
527 | 527 | return floatval( $base_price ); |
@@ -535,13 +535,13 @@ discard block |
||
535 | 535 | public function activate_download() { |
536 | 536 | $data = \GV\Utils::_POST( 'data', array() ); |
537 | 537 | |
538 | - if ( empty( $data['path'] ) ) { |
|
538 | + if ( empty( $data[ 'path' ] ) ) { |
|
539 | 539 | return; |
540 | 540 | } |
541 | 541 | |
542 | - $result = activate_plugin( $data['path'] ); |
|
542 | + $result = activate_plugin( $data[ 'path' ] ); |
|
543 | 543 | |
544 | - if ( is_wp_error( $result ) || ! is_plugin_active( $data['path'] ) ) { |
|
544 | + if ( is_wp_error( $result ) || ! is_plugin_active( $data[ 'path' ] ) ) { |
|
545 | 545 | wp_send_json_error( array( |
546 | 546 | 'error' => sprintf( __( 'Plugin activation failed: %s', 'gravityview' ), $result->get_error_message() ) |
547 | 547 | ) ); |
@@ -558,13 +558,13 @@ discard block |
||
558 | 558 | public function deactivate_download() { |
559 | 559 | $data = \GV\Utils::_POST( 'data', array() ); |
560 | 560 | |
561 | - if ( empty( $data['path'] ) ) { |
|
561 | + if ( empty( $data[ 'path' ] ) ) { |
|
562 | 562 | return; |
563 | 563 | } |
564 | 564 | |
565 | - deactivate_plugins( $data['path'] ); |
|
565 | + deactivate_plugins( $data[ 'path' ] ); |
|
566 | 566 | |
567 | - if( is_plugin_active( $data['path'] ) ) { |
|
567 | + if ( is_plugin_active( $data[ 'path' ] ) ) { |
|
568 | 568 | wp_send_json_error( array( |
569 | 569 | 'error' => sprintf( __( 'Plugin deactivation failed.', 'gravityview' ) ) |
570 | 570 | ) ); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | static public function get_email( $field_settings, $entry ) { |
72 | 72 | |
73 | 73 | // There was no logged in user. |
74 | - switch ( $field_settings['email_field'] ) { |
|
74 | + switch ( $field_settings[ 'email_field' ] ) { |
|
75 | 75 | case 'created_by_email': |
76 | 76 | |
77 | 77 | $created_by = \GV\Utils::get( $entry, 'created_by', null ); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | return $field_options; |
103 | 103 | } |
104 | 104 | |
105 | - $field_options['email_field'] = array( |
|
105 | + $field_options[ 'email_field' ] = array( |
|
106 | 106 | 'type' => 'select', |
107 | 107 | 'label' => __( 'Email to Use', 'gravityview' ), |
108 | 108 | 'value' => 'created_by_email', |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'choices' => $this->_get_email_field_choices( $form_id ), |
111 | 111 | ); |
112 | 112 | |
113 | - $field_options['default'] = array( |
|
113 | + $field_options[ 'default' ] = array( |
|
114 | 114 | 'type' => 'select', |
115 | 115 | 'label' => __( 'Default Image', 'gravityview' ), |
116 | 116 | 'desc' => __( 'Choose the default image to be shown when an email has no Gravatar.', 'gravityview' ) . ' <a href="https://en.gravatar.com/site/implement/images/">' . esc_html( sprintf( __( 'Read more about %s', 'gravityview' ), __( 'Default Image', 'gravityview' ) ) ) . '</a>', |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | ), |
127 | 127 | ); |
128 | 128 | |
129 | - $field_options['size'] = array( |
|
129 | + $field_options[ 'size' ] = array( |
|
130 | 130 | 'type' => 'number', |
131 | 131 | 'label' => __( 'Size in Pixels', 'gravityview' ), |
132 | 132 | 'value' => 80, |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $email_fields = GFAPI::get_fields_by_type( $form, array( 'email' ) ); |
160 | 160 | |
161 | 161 | foreach ( $email_fields as $email_field ) { |
162 | - $email_field_id = $email_field['id']; |
|
162 | + $email_field_id = $email_field[ 'id' ]; |
|
163 | 163 | $email_field_label = GVCommon::get_field_label( $form, $email_field_id ); |
164 | 164 | $email_field_label = sprintf( __( 'Field: %s', 'gravityview' ), $email_field_label ); |
165 | 165 | $field_choices[ $email_field_id ] = esc_html( $email_field_label ); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public static function is_add_oembed_preview() { |
71 | 71 | /** The preview request is a parse-embed AJAX call without a type set. */ |
72 | - return ( self::is_ajax() && ! empty( $_POST['action'] ) && $_POST['action'] == 'parse-embed' && ! isset( $_POST['type'] ) ); |
|
72 | + return ( self::is_ajax() && ! empty( $_POST[ 'action' ] ) && $_POST[ 'action' ] == 'parse-embed' && ! isset( $_POST[ 'type' ] ) ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @return boolean |
88 | 88 | */ |
89 | 89 | public static function is_rest() { |
90 | - return ! empty( $GLOBALS['wp']->query_vars['rest_route'] ); |
|
90 | + return ! empty( $GLOBALS[ 'wp' ]->query_vars[ 'rest_route' ] ); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | return false; |
158 | 158 | } |
159 | 159 | |
160 | - if ( ! in_array( $e['form_id'], $valid_forms ) ) { |
|
160 | + if ( ! in_array( $e[ 'form_id' ], $valid_forms ) ) { |
|
161 | 161 | return false; |
162 | 162 | } |
163 | 163 | |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | } |
174 | 174 | |
175 | 175 | $entry = Multi_Entry::from_entries( array_filter( $multientry ) ); |
176 | - } else { |
|
176 | + } else { |
|
177 | 177 | /** |
178 | 178 | * A regular one. |
179 | 179 | */ |
@@ -231,15 +231,15 @@ discard block |
||
231 | 231 | $get = $_GET; |
232 | 232 | } |
233 | 233 | |
234 | - unset( $get['mode'] ); |
|
234 | + unset( $get[ 'mode' ] ); |
|
235 | 235 | |
236 | 236 | $get = array_filter( $get, 'gravityview_is_not_empty_string' ); |
237 | 237 | |
238 | - if( $has_field_key = $this->_has_field_key( $get ) ) { |
|
238 | + if ( $has_field_key = $this->_has_field_key( $get ) ) { |
|
239 | 239 | return true; |
240 | 240 | } |
241 | 241 | |
242 | - return isset( $get['gv_search'] ) || isset( $get['gv_start'] ) || isset( $get['gv_end'] ) || isset( $get['gv_by'] ) || isset( $get['gv_id'] ); |
|
242 | + return isset( $get[ 'gv_search' ] ) || isset( $get[ 'gv_start' ] ) || isset( $get[ 'gv_end' ] ) || isset( $get[ 'gv_by' ] ) || isset( $get[ 'gv_id' ] ); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | /** |
@@ -262,13 +262,13 @@ discard block |
||
262 | 262 | |
263 | 263 | $meta = array(); |
264 | 264 | foreach ( $fields as $field ) { |
265 | - if( empty( $field->_gf_field_class_name ) ) { |
|
266 | - $meta[] = preg_quote( $field->name ); |
|
265 | + if ( empty( $field->_gf_field_class_name ) ) { |
|
266 | + $meta[ ] = preg_quote( $field->name ); |
|
267 | 267 | } |
268 | 268 | } |
269 | 269 | |
270 | 270 | foreach ( $get as $key => $value ) { |
271 | - if ( preg_match('/^filter_(([0-9_]+)|'. implode( '|', $meta ) .')$/sm', $key ) ) { |
|
271 | + if ( preg_match( '/^filter_(([0-9_]+)|' . implode( '|', $meta ) . ')$/sm', $key ) ) { |
|
272 | 272 | $has_field_key = true; |
273 | 273 | break; |
274 | 274 | } |