@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | /** gf_entries page - entries table screen */ |
45 | 45 | |
46 | 46 | // capture bulk actions |
47 | - add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
47 | + add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
48 | 48 | |
49 | 49 | // add hidden field with approve status |
50 | 50 | add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
53 | 53 | |
54 | 54 | // adding styles and scripts |
55 | - add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
55 | + add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
56 | 56 | // bypass Gravity Forms no-conflict mode |
57 | 57 | add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
58 | 58 | add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | * @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
82 | 82 | * @param array $form GF Form object of current form |
83 | 83 | */ |
84 | - if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
84 | + if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
85 | 85 | return $filter_links; |
86 | 86 | } |
87 | 87 | |
@@ -109,27 +109,27 @@ discard block |
||
109 | 109 | $approved_count = $disapproved_count = $unapproved_count = 0; |
110 | 110 | |
111 | 111 | // Only count if necessary |
112 | - if( $include_counts ) { |
|
113 | - $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | - $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | - $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
112 | + if ( $include_counts ) { |
|
113 | + $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114 | + $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115 | + $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
116 | 116 | } |
117 | 117 | |
118 | - $filter_links[] = array( |
|
118 | + $filter_links[ ] = array( |
|
119 | 119 | 'id' => 'gv_approved', |
120 | 120 | 'field_filters' => $field_filters_approved, |
121 | 121 | 'count' => $approved_count, |
122 | 122 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
123 | 123 | ); |
124 | 124 | |
125 | - $filter_links[] = array( |
|
125 | + $filter_links[ ] = array( |
|
126 | 126 | 'id' => 'gv_disapproved', |
127 | 127 | 'field_filters' => $field_filters_disapproved, |
128 | 128 | 'count' => $disapproved_count, |
129 | 129 | 'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
130 | 130 | ); |
131 | 131 | |
132 | - $filter_links[] = array( |
|
132 | + $filter_links[ ] = array( |
|
133 | 133 | 'id' => 'gv_unapproved', |
134 | 134 | 'field_filters' => $field_filters_unapproved, |
135 | 135 | 'count' => $unapproved_count, |
@@ -148,9 +148,9 @@ discard block |
||
148 | 148 | */ |
149 | 149 | function tooltips( $tooltips ) { |
150 | 150 | |
151 | - $tooltips['form_gravityview_fields'] = array( |
|
152 | - 'title' => __('GravityView Fields', 'gravityview'), |
|
153 | - 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
151 | + $tooltips[ 'form_gravityview_fields' ] = array( |
|
152 | + 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
153 | + 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
154 | 154 | ); |
155 | 155 | |
156 | 156 | return $tooltips; |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | $gv_bulk_action = false; |
263 | 263 | |
264 | - if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
264 | + if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
265 | 265 | $bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
266 | 266 | } else { |
267 | 267 | // GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | |
271 | 271 | // Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
272 | - if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
272 | + if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
273 | 273 | $gv_bulk_action = $bulk_action; |
274 | 274 | } |
275 | 275 | |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | |
295 | 295 | // gforms_entry_list is the nonce that confirms we're on the right page |
296 | 296 | // gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
297 | - if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
297 | + if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
298 | 298 | |
299 | 299 | check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
300 | 300 | |
@@ -312,13 +312,13 @@ discard block |
||
312 | 312 | } |
313 | 313 | |
314 | 314 | // All entries are set to be updated, not just the visible ones |
315 | - if ( ! empty( $_POST['all_entries'] ) ) { |
|
315 | + if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
316 | 316 | |
317 | 317 | // Convert the current entry search into GF-formatted search criteria |
318 | 318 | $search = array( |
319 | - 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
320 | - 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
321 | - 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
319 | + 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
320 | + 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
321 | + 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
322 | 322 | ); |
323 | 323 | |
324 | 324 | $search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | } else { |
330 | 330 | |
331 | 331 | // Changed from 'lead' to 'entry' in 2.0 |
332 | - $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
332 | + $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
333 | 333 | |
334 | 334 | } |
335 | 335 | |
@@ -341,15 +341,15 @@ discard block |
||
341 | 341 | $entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
342 | 342 | |
343 | 343 | switch ( $approved_status ) { |
344 | - case $this->bulk_action_prefixes['approve']: |
|
344 | + case $this->bulk_action_prefixes[ 'approve' ]: |
|
345 | 345 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
346 | 346 | $this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
347 | 347 | break; |
348 | - case $this->bulk_action_prefixes['unapprove']: |
|
348 | + case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
349 | 349 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
350 | 350 | $this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
351 | 351 | break; |
352 | - case $this->bulk_action_prefixes['disapprove']: |
|
352 | + case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
353 | 353 | GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
354 | 354 | $this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
355 | 355 | break; |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @return boolean True: It worked; False: it failed |
373 | 373 | */ |
374 | - public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
374 | + public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
375 | 375 | return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
376 | 376 | } |
377 | 377 | |
@@ -401,20 +401,20 @@ discard block |
||
401 | 401 | * |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
404 | + static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
405 | 405 | |
406 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
406 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
407 | 407 | return; |
408 | 408 | } |
409 | 409 | |
410 | - if( empty( $entry['id'] ) ) { |
|
410 | + if ( empty( $entry[ 'id' ] ) ) { |
|
411 | 411 | return; |
412 | 412 | } |
413 | 413 | |
414 | 414 | $status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
415 | 415 | |
416 | - if( $status_value ) { |
|
417 | - echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
416 | + if ( $status_value ) { |
|
417 | + echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
418 | 418 | } |
419 | 419 | } |
420 | 420 | |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | */ |
428 | 428 | private function get_form_id() { |
429 | 429 | |
430 | - $form_id = GFForms::get('id'); |
|
430 | + $form_id = GFForms::get( 'id' ); |
|
431 | 431 | |
432 | 432 | // If there are no forms identified, use the first form. That's how GF does it. |
433 | - if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
433 | + if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
434 | 434 | $form_id = $this->get_first_form_id(); |
435 | 435 | } |
436 | 436 | |
@@ -450,14 +450,14 @@ discard block |
||
450 | 450 | |
451 | 451 | $forms = RGFormsModel::get_forms( null, 'title' ); |
452 | 452 | |
453 | - if( ! isset( $forms[0] ) ) { |
|
453 | + if ( ! isset( $forms[ 0 ] ) ) { |
|
454 | 454 | gravityview()->log->error( 'No forms were found' ); |
455 | 455 | return 0; |
456 | 456 | } |
457 | 457 | |
458 | - $first_form = $forms[0]; |
|
458 | + $first_form = $forms[ 0 ]; |
|
459 | 459 | |
460 | - $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
460 | + $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
461 | 461 | |
462 | 462 | return intval( $form_id ); |
463 | 463 | } |
@@ -465,37 +465,37 @@ discard block |
||
465 | 465 | |
466 | 466 | function add_scripts_and_styles( $hook ) { |
467 | 467 | |
468 | - if( ! class_exists( 'GFForms' ) ) { |
|
468 | + if ( ! class_exists( 'GFForms' ) ) { |
|
469 | 469 | gravityview()->log->error( 'GFForms does not exist.' ); |
470 | 470 | return; |
471 | 471 | } |
472 | 472 | |
473 | 473 | // enqueue styles & scripts gf_entries |
474 | 474 | // But only if we're on the main Entries page, not on reports pages |
475 | - if( GFForms::get_page() !== 'entry_list' ) { |
|
475 | + if ( GFForms::get_page() !== 'entry_list' ) { |
|
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | 479 | $form_id = $this->get_form_id(); |
480 | 480 | |
481 | 481 | // Things are broken; no forms were found |
482 | - if( empty( $form_id ) ) { |
|
482 | + if ( empty( $form_id ) ) { |
|
483 | 483 | return; |
484 | 484 | } |
485 | 485 | |
486 | - wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
486 | + wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
487 | 487 | |
488 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
488 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
489 | 489 | |
490 | - wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
490 | + wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
491 | 491 | |
492 | 492 | wp_enqueue_script( 'gravityview_entries_list-popper', plugins_url( 'assets/lib/tippy/popper.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
493 | 493 | wp_enqueue_script( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.min.js', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
494 | 494 | wp_enqueue_style( 'gravityview_entries_list-tippy', plugins_url( 'assets/lib/tippy/tippy.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
495 | 495 | |
496 | 496 | wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
497 | - 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
498 | - 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
497 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
498 | + 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
499 | 499 | 'form_id' => $form_id, |
500 | 500 | 'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
501 | 501 | 'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
@@ -504,10 +504,10 @@ discard block |
||
504 | 504 | 'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
505 | 505 | 'bulk_actions' => $this->get_bulk_actions( $form_id ), |
506 | 506 | 'bulk_message' => $this->bulk_update_message, |
507 | - 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
508 | - 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
509 | - 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
510 | - 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
507 | + 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
508 | + 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
509 | + 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
510 | + 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
511 | 511 | 'column_link' => esc_url( $this->get_sort_link() ), |
512 | 512 | 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
513 | 513 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
@@ -551,16 +551,16 @@ discard block |
||
551 | 551 | $bulk_actions = array( |
552 | 552 | 'GravityView' => array( |
553 | 553 | array( |
554 | - 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
555 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
554 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
555 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
556 | 556 | ), |
557 | 557 | array( |
558 | - 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
559 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
558 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
559 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
560 | 560 | ), |
561 | 561 | array( |
562 | - 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
563 | - 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
562 | + 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
563 | + 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
564 | 564 | ), |
565 | 565 | ), |
566 | 566 | ); |
@@ -577,13 +577,13 @@ discard block |
||
577 | 577 | // Sanitize the values, just to be sure. |
578 | 578 | foreach ( $bulk_actions as $key => $group ) { |
579 | 579 | |
580 | - if( empty( $group ) ) { |
|
580 | + if ( empty( $group ) ) { |
|
581 | 581 | continue; |
582 | 582 | } |
583 | 583 | |
584 | 584 | foreach ( $group as $i => $action ) { |
585 | - $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
586 | - $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
585 | + $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
586 | + $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
587 | 587 | } |
588 | 588 | } |
589 | 589 | |
@@ -608,13 +608,13 @@ discard block |
||
608 | 608 | * @since 1.7.2 |
609 | 609 | * @param boolean $hide_if_no_connections |
610 | 610 | */ |
611 | - $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
611 | + $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
612 | 612 | |
613 | - if( $hide_if_no_connections ) { |
|
613 | + if ( $hide_if_no_connections ) { |
|
614 | 614 | |
615 | 615 | $connected_views = gravityview_get_connected_views( $form_id ); |
616 | 616 | |
617 | - if( empty( $connected_views ) ) { |
|
617 | + if ( empty( $connected_views ) ) { |
|
618 | 618 | $show_approve_column = false; |
619 | 619 | } |
620 | 620 | } |
@@ -624,21 +624,21 @@ discard block |
||
624 | 624 | * @param boolean $show_approve_column Whether the column will be shown |
625 | 625 | * @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
626 | 626 | */ |
627 | - $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
627 | + $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
628 | 628 | |
629 | 629 | return $show_approve_column; |
630 | 630 | } |
631 | 631 | |
632 | 632 | function register_gform_noconflict_script( $scripts ) { |
633 | - $scripts[] = 'gravityview_gf_entries_scripts'; |
|
634 | - $scripts[] = 'gravityview_entries_list-popper'; |
|
635 | - $scripts[] = 'gravityview_entries_list-tippy'; |
|
633 | + $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
634 | + $scripts[ ] = 'gravityview_entries_list-popper'; |
|
635 | + $scripts[ ] = 'gravityview_entries_list-tippy'; |
|
636 | 636 | return $scripts; |
637 | 637 | } |
638 | 638 | |
639 | 639 | function register_gform_noconflict_style( $styles ) { |
640 | - $styles[] = 'gravityview_entries_list'; |
|
641 | - $styles[] = 'gravityview_entries_list-tippy'; |
|
640 | + $styles[ ] = 'gravityview_entries_list'; |
|
641 | + $styles[ ] = 'gravityview_entries_list-tippy'; |
|
642 | 642 | return $styles; |
643 | 643 | } |
644 | 644 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | $this->label = esc_attr__( 'Approve Entries', 'gravityview' ); |
26 | 26 | |
27 | - $this->description = esc_attr__( 'Approve and reject entries from the View.', 'gravityview' ); |
|
27 | + $this->description = esc_attr__( 'Approve and reject entries from the View.', 'gravityview' ); |
|
28 | 28 | |
29 | 29 | $this->add_hooks(); |
30 | 30 | |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | */ |
47 | 47 | function field_options( $field_options, $template_id = '', $field_id = '', $context = '', $input_type = '' ) { |
48 | 48 | |
49 | - unset( $field_options['only_loggedin'] ); |
|
49 | + unset( $field_options[ 'only_loggedin' ] ); |
|
50 | 50 | |
51 | - unset( $field_options['new_window'] ); |
|
51 | + unset( $field_options[ 'new_window' ] ); |
|
52 | 52 | |
53 | - unset( $field_options['show_as_link'] ); |
|
53 | + unset( $field_options[ 'show_as_link' ] ); |
|
54 | 54 | |
55 | 55 | return $field_options; |
56 | 56 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | |
71 | 71 | add_action( 'gravityview/field/approval/load_scripts', array( $this, 'enqueue_and_localize_script' ) ); |
72 | 72 | |
73 | - add_action( 'gravityview_datatables_scripts_styles', array( $this, 'enqueue_and_localize_script' ) ); |
|
73 | + add_action( 'gravityview_datatables_scripts_styles', array( $this, 'enqueue_and_localize_script' ) ); |
|
74 | 74 | |
75 | 75 | add_filter( 'gravityview_get_entries', array( $this, 'modify_search_parameters' ), 1000 ); |
76 | 76 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | public function maybe_prevent_field_render( $html, $args ) { |
93 | 93 | |
94 | 94 | // If the field is `entry_approval` type but the user doesn't have the moderate entries cap, don't render. |
95 | - if( $this->name === \GV\Utils::get( $args['field'], 'id' ) && ! GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
95 | + if ( $this->name === \GV\Utils::get( $args[ 'field' ], 'id' ) && ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
96 | 96 | return ''; |
97 | 97 | } |
98 | 98 | |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | public function modify_search_parameters( $parameters ) { |
123 | 123 | |
124 | 124 | if ( $this->name === \GV\Utils::get( $parameters, 'sorting/key' ) ) { |
125 | - $parameters['sorting']['key'] = 'is_approved'; |
|
125 | + $parameters[ 'sorting' ][ 'key' ] = 'is_approved'; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | return $parameters; |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | function register_scripts_and_styles() { |
139 | 139 | $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
140 | 140 | |
141 | - wp_register_script( 'gravityview-field-approval', GRAVITYVIEW_URL . 'assets/js/field-approval'.$script_debug.'.js', array( 'jquery' ), GravityView_Plugin::version, true ); |
|
141 | + wp_register_script( 'gravityview-field-approval', GRAVITYVIEW_URL . 'assets/js/field-approval' . $script_debug . '.js', array( 'jquery' ), GravityView_Plugin::version, true ); |
|
142 | 142 | |
143 | 143 | wp_register_script( 'gravityview-field-approval-popper', GRAVITYVIEW_URL . 'assets/lib/tippy/popper.min.js', array(), GravityView_Plugin::version, true ); |
144 | 144 | wp_register_script( 'gravityview-field-approval-tippy', GRAVITYVIEW_URL . 'assets/lib/tippy/tippy.min.js', array(), GravityView_Plugin::version, true ); |
@@ -146,14 +146,14 @@ discard block |
||
146 | 146 | |
147 | 147 | $style_path = GRAVITYVIEW_DIR . 'templates/css/field-approval.css'; |
148 | 148 | |
149 | - if( class_exists( 'GravityView_View' ) ) { |
|
149 | + if ( class_exists( 'GravityView_View' ) ) { |
|
150 | 150 | /** |
151 | 151 | * Override CSS file by placing in your theme's /gravityview/css/ sub-directory. |
152 | 152 | */ |
153 | 153 | $style_path = GravityView_View::getInstance()->locate_template( 'css/field-approval.css', false ); |
154 | 154 | } |
155 | 155 | |
156 | - $style_url = plugins_url( 'css/field-approval.css', trailingslashit( dirname( $style_path ) ) ); |
|
156 | + $style_url = plugins_url( 'css/field-approval.css', trailingslashit( dirname( $style_path ) ) ); |
|
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @filter `gravityview/field/approval/css_url` URL to the Approval field CSS file. |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | */ |
163 | 163 | $style_url = apply_filters( 'gravityview/field/approval/css_url', $style_url ); |
164 | 164 | |
165 | - if( ! empty( $style_url ) ) { |
|
165 | + if ( ! empty( $style_url ) ) { |
|
166 | 166 | wp_register_style( 'gravityview-field-approval', $style_url, array( 'dashicons' ), GravityView_Plugin::version, 'screen' ); |
167 | 167 | } |
168 | 168 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | public function enqueue_and_localize_script() { |
178 | 178 | |
179 | 179 | // The script is already registered and enqueued |
180 | - if( wp_script_is( 'gravityview-field-approval', 'enqueued' ) ) { |
|
180 | + if ( wp_script_is( 'gravityview-field-approval', 'enqueued' ) ) { |
|
181 | 181 | return; |
182 | 182 | } |
183 | 183 | |
@@ -190,11 +190,11 @@ discard block |
||
190 | 190 | |
191 | 191 | wp_localize_script( 'gravityview-field-approval', 'gvApproval', array( |
192 | 192 | 'ajaxurl' => admin_url( 'admin-ajax.php' ), |
193 | - 'nonce' => wp_create_nonce('gravityview_entry_approval'), |
|
193 | + 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
194 | 194 | 'status' => GravityView_Entry_Approval_Status::get_all(), |
195 | 195 | 'status_popover_template' => GravityView_Entry_Approval::get_popover_template(), |
196 | 196 | 'status_popover_placement' => GravityView_Entry_Approval::get_popover_placement(), |
197 | - )); |
|
197 | + ) ); |
|
198 | 198 | |
199 | 199 | } |
200 | 200 | |
@@ -211,8 +211,8 @@ discard block |
||
211 | 211 | */ |
212 | 212 | public function filter_gravityview_entry_default_field( $entry_default_fields, $form, $context ) { |
213 | 213 | |
214 | - if ( ! isset( $entry_default_fields["{$this->name}"] ) && 'edit' !== $context ) { |
|
215 | - $entry_default_fields["{$this->name}"] = array( |
|
214 | + if ( ! isset( $entry_default_fields[ "{$this->name}" ] ) && 'edit' !== $context ) { |
|
215 | + $entry_default_fields[ "{$this->name}" ] = array( |
|
216 | 216 | 'label' => $this->label, |
217 | 217 | 'desc' => $this->description, |
218 | 218 | 'type' => $this->name, |
@@ -39,13 +39,13 @@ discard block |
||
39 | 39 | private function add_hooks() { |
40 | 40 | |
41 | 41 | // in case entry is edited (on admin or frontend) |
42 | - add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2); |
|
42 | + add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2 ); |
|
43 | 43 | |
44 | 44 | // when using the User opt-in field, check on entry submission |
45 | 45 | add_action( 'gform_after_submission', array( $this, 'after_submission' ), 10, 2 ); |
46 | 46 | |
47 | 47 | // process ajax approve entry requests |
48 | - add_action('wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved')); |
|
48 | + add_action( 'wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved' ) ); |
|
49 | 49 | |
50 | 50 | // autounapprove |
51 | 51 | add_action( 'gravityview/edit_entry/after_update', array( __CLASS__, 'autounapprove' ), 10, 4 ); |
@@ -94,10 +94,10 @@ discard block |
||
94 | 94 | return; |
95 | 95 | } |
96 | 96 | |
97 | - $form = GFAPI::get_form( $entry['form_id'] ); |
|
97 | + $form = GFAPI::get_form( $entry[ 'form_id' ] ); |
|
98 | 98 | |
99 | 99 | if ( ! $form ) { |
100 | - gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry['form_id'], 'entry_id' => $entry_id ) ); |
|
100 | + gravityview()->log->error( 'Form not found at ID #{form_id} for entry #{entry_id}', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $entry_id ) ); |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
@@ -114,10 +114,10 @@ discard block |
||
114 | 114 | */ |
115 | 115 | public static function add_approval_notification_events( $notification_events = array(), $form = array() ) { |
116 | 116 | |
117 | - $notification_events['gravityview/approve_entries/approved'] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | - $notification_events['gravityview/approve_entries/disapproved'] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | - $notification_events['gravityview/approve_entries/unapproved'] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | - $notification_events['gravityview/approve_entries/updated'] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
117 | + $notification_events[ 'gravityview/approve_entries/approved' ] = 'GravityView - ' . esc_html_x( 'Entry is approved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
118 | + $notification_events[ 'gravityview/approve_entries/disapproved' ] = 'GravityView - ' . esc_html_x( 'Entry is disapproved', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
119 | + $notification_events[ 'gravityview/approve_entries/unapproved' ] = 'GravityView - ' . esc_html_x( 'Entry approval is reset', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
120 | + $notification_events[ 'gravityview/approve_entries/updated' ] = 'GravityView - ' . esc_html_x( 'Entry approval is changed', 'The title for an event in a notifications drop down list.', 'gravityview' ); |
|
121 | 121 | |
122 | 122 | return $notification_events; |
123 | 123 | } |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | */ |
136 | 136 | public static function get_entry_status( $entry, $value_or_label = 'label' ) { |
137 | 137 | |
138 | - $entry_id = is_array( $entry ) ? $entry['id'] : GVCommon::get_entry_id( $entry, true ); |
|
138 | + $entry_id = is_array( $entry ) ? $entry[ 'id' ] : GVCommon::get_entry_id( $entry, true ); |
|
139 | 139 | |
140 | 140 | $status = gform_get_meta( $entry_id, self::meta_key ); |
141 | 141 | |
142 | 142 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
143 | 143 | |
144 | - if( 'value' === $value_or_label ) { |
|
144 | + if ( 'value' === $value_or_label ) { |
|
145 | 145 | return $status; |
146 | 146 | } |
147 | 147 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | $nonce = \GV\Utils::_POST( 'nonce' ); |
180 | 180 | |
181 | 181 | // Valid status |
182 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
182 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
183 | 183 | |
184 | 184 | gravityview()->log->error( 'Invalid approval status', array( 'data' => $_POST ) ); |
185 | 185 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
212 | 212 | |
213 | - $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview') ); |
|
213 | + $result = new WP_Error( 'Missing Cap: gravityview_moderate_entries', __( 'You do not have permission to edit this entry.', 'gravityview' ) ); |
|
214 | 214 | |
215 | 215 | } |
216 | 216 | |
@@ -272,10 +272,10 @@ discard block |
||
272 | 272 | } |
273 | 273 | |
274 | 274 | // Set default |
275 | - self::update_approved_meta( $entry['id'], $default_status, $entry['form_id'] ); |
|
275 | + self::update_approved_meta( $entry[ 'id' ], $default_status, $entry[ 'form_id' ] ); |
|
276 | 276 | |
277 | 277 | // Then check for if there is an approval column, and use that value instead |
278 | - $this->after_update_entry_update_approved_meta( $form , $entry['id'] ); |
|
278 | + $this->after_update_entry_update_approved_meta( $form, $entry[ 'id' ] ); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -289,12 +289,12 @@ discard block |
||
289 | 289 | */ |
290 | 290 | public function after_update_entry_update_approved_meta( $form, $entry_id = NULL ) { |
291 | 291 | |
292 | - $approved_column = self::get_approved_column( $form['id'] ); |
|
292 | + $approved_column = self::get_approved_column( $form[ 'id' ] ); |
|
293 | 293 | |
294 | 294 | /** |
295 | 295 | * If the form doesn't contain the approve field, don't assume anything. |
296 | 296 | */ |
297 | - if( empty( $approved_column ) ) { |
|
297 | + if ( empty( $approved_column ) ) { |
|
298 | 298 | return; |
299 | 299 | } |
300 | 300 | |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | $value = GravityView_Entry_Approval_Status::APPROVED; |
309 | 309 | } |
310 | 310 | |
311 | - self::update_approved_meta( $entry_id, $value, $form['id'] ); |
|
311 | + self::update_approved_meta( $entry_id, $value, $form[ 'id' ] ); |
|
312 | 312 | } |
313 | 313 | |
314 | 314 | /** |
@@ -326,12 +326,12 @@ discard block |
||
326 | 326 | */ |
327 | 327 | public static function update_bulk( $entries = array(), $approved, $form_id ) { |
328 | 328 | |
329 | - if( empty($entries) || ( $entries !== true && !is_array($entries) ) ) { |
|
329 | + if ( empty( $entries ) || ( $entries !== true && ! is_array( $entries ) ) ) { |
|
330 | 330 | gravityview()->log->error( 'Entries were empty or malformed.', array( 'data' => $entries ) ); |
331 | 331 | return NULL; |
332 | 332 | } |
333 | 333 | |
334 | - if( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
334 | + if ( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
335 | 335 | gravityview()->log->error( 'User does not have the `gravityview_moderate_entries` capability.' ); |
336 | 336 | return NULL; |
337 | 337 | } |
@@ -346,10 +346,10 @@ discard block |
||
346 | 346 | $approved_column_id = self::get_approved_column( $form_id ); |
347 | 347 | |
348 | 348 | $success = true; |
349 | - foreach( $entries as $entry_id ) { |
|
349 | + foreach ( $entries as $entry_id ) { |
|
350 | 350 | $update_success = self::update_approved( (int)$entry_id, $approved, $form_id, $approved_column_id ); |
351 | 351 | |
352 | - if( ! $update_success ) { |
|
352 | + if ( ! $update_success ) { |
|
353 | 353 | $success = false; |
354 | 354 | } |
355 | 355 | } |
@@ -373,12 +373,12 @@ discard block |
||
373 | 373 | */ |
374 | 374 | public static function update_approved( $entry_id = 0, $approved = 2, $form_id = 0, $approvedcolumn = 0 ) { |
375 | 375 | |
376 | - if( !class_exists( 'GFAPI' ) ) { |
|
376 | + if ( ! class_exists( 'GFAPI' ) ) { |
|
377 | 377 | gravityview()->log->error( 'GFAPI does not exist' ); |
378 | 378 | return false; |
379 | 379 | } |
380 | 380 | |
381 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
381 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approved ) ) { |
|
382 | 382 | gravityview()->log->error( 'Not a valid approval value.' ); |
383 | 383 | return false; |
384 | 384 | } |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | // If the form has an Approve/Reject field, update that value |
396 | 396 | $result = self::update_approved_column( $entry_id, $approved, $form_id, $approvedcolumn ); |
397 | 397 | |
398 | - if( is_wp_error( $result ) ) { |
|
398 | + if ( is_wp_error( $result ) ) { |
|
399 | 399 | gravityview()->log->error( 'Entry approval not updated: {error}', array( 'error' => $result->get_error_message() ) ); |
400 | 400 | return false; |
401 | 401 | } |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | |
408 | 408 | // add note to entry if approval field updating worked or there was no approved field |
409 | 409 | // There's no validation for the meta |
410 | - if( true === $result ) { |
|
410 | + if ( true === $result ) { |
|
411 | 411 | |
412 | 412 | // Add an entry note |
413 | 413 | self::add_approval_status_updated_note( $entry_id, $approved ); |
@@ -460,7 +460,7 @@ discard block |
||
460 | 460 | |
461 | 461 | $note_id = false; |
462 | 462 | |
463 | - if( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
463 | + if ( $add_note && class_exists( 'GravityView_Entry_Notes' ) ) { |
|
464 | 464 | |
465 | 465 | $current_user = wp_get_current_user(); |
466 | 466 | |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | */ |
483 | 483 | private static function update_approved_column( $entry_id = 0, $status = '0', $form_id = 0, $approvedcolumn = 0 ) { |
484 | 484 | |
485 | - if( empty( $approvedcolumn ) ) { |
|
485 | + if ( empty( $approvedcolumn ) ) { |
|
486 | 486 | $approvedcolumn = self::get_approved_column( $form_id ); |
487 | 487 | } |
488 | 488 | |
@@ -505,12 +505,12 @@ discard block |
||
505 | 505 | $status = GravityView_Entry_Approval_Status::maybe_convert_status( $status ); |
506 | 506 | |
507 | 507 | $new_value = ''; |
508 | - if( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
508 | + if ( GravityView_Entry_Approval_Status::APPROVED === $status ) { |
|
509 | 509 | $new_value = self::get_approved_column_input_label( $form_id, $approvedcolumn ); |
510 | 510 | } |
511 | 511 | |
512 | 512 | //update entry |
513 | - $entry["{$approvedcolumn}"] = $new_value; |
|
513 | + $entry[ "{$approvedcolumn}" ] = $new_value; |
|
514 | 514 | |
515 | 515 | /** |
516 | 516 | * Note: GFAPI::update_entry() doesn't trigger `gform_after_update_entry`, so we trigger updating the meta ourselves |
@@ -541,12 +541,12 @@ discard block |
||
541 | 541 | // If the user has enabled a different value than the label (for some reason), use it. |
542 | 542 | // This is highly unlikely |
543 | 543 | if ( is_array( $field->choices ) && ! empty( $field->choices ) ) { |
544 | - return isset( $field->choices[0]['value'] ) ? $field->choices[0]['value'] : $field->choices[0]['text']; |
|
544 | + return isset( $field->choices[ 0 ][ 'value' ] ) ? $field->choices[ 0 ][ 'value' ] : $field->choices[ 0 ][ 'text' ]; |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | // Otherwise, fall back on the inputs array |
548 | 548 | if ( is_array( $field->inputs ) && ! empty( $field->inputs ) ) { |
549 | - return $field->inputs[0]['label']; |
|
549 | + return $field->inputs[ 0 ][ 'label' ]; |
|
550 | 550 | } |
551 | 551 | |
552 | 552 | return null; |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | * @since 1.18 Added "unapproved" |
599 | 599 | * @param int $entry_id ID of the Gravity Forms entry |
600 | 600 | */ |
601 | - do_action( 'gravityview/approve_entries/' . $action , $entry_id ); |
|
601 | + do_action( 'gravityview/approve_entries/' . $action, $entry_id ); |
|
602 | 602 | } |
603 | 603 | |
604 | 604 | /** |
@@ -611,11 +611,11 @@ discard block |
||
611 | 611 | */ |
612 | 612 | static public function get_approved_column( $form ) { |
613 | 613 | |
614 | - if( empty( $form ) ) { |
|
614 | + if ( empty( $form ) ) { |
|
615 | 615 | return null; |
616 | 616 | } |
617 | 617 | |
618 | - if( !is_array( $form ) ) { |
|
618 | + if ( ! is_array( $form ) ) { |
|
619 | 619 | $form = GVCommon::get_form( $form ); |
620 | 620 | } |
621 | 621 | |
@@ -625,22 +625,22 @@ discard block |
||
625 | 625 | * @var string $key |
626 | 626 | * @var GF_Field $field |
627 | 627 | */ |
628 | - foreach( $form['fields'] as $key => $field ) { |
|
628 | + foreach ( $form[ 'fields' ] as $key => $field ) { |
|
629 | 629 | |
630 | 630 | $inputs = $field->get_entry_inputs(); |
631 | 631 | |
632 | - if( !empty( $field->gravityview_approved ) ) { |
|
633 | - if ( ! empty( $inputs ) && !empty( $inputs[0]['id'] ) ) { |
|
634 | - $approved_column_id = $inputs[0]['id']; |
|
632 | + if ( ! empty( $field->gravityview_approved ) ) { |
|
633 | + if ( ! empty( $inputs ) && ! empty( $inputs[ 0 ][ 'id' ] ) ) { |
|
634 | + $approved_column_id = $inputs[ 0 ][ 'id' ]; |
|
635 | 635 | break; |
636 | 636 | } |
637 | 637 | } |
638 | 638 | |
639 | 639 | // Note: This is just for backward compatibility from GF Directory plugin and old GV versions - when using i18n it may not work.. |
640 | - if( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
640 | + if ( 'checkbox' === $field->type && ! empty( $inputs ) ) { |
|
641 | 641 | foreach ( $inputs as $input ) { |
642 | - if ( 'approved' === strtolower( $input['label'] ) ) { |
|
643 | - $approved_column_id = $input['id']; |
|
642 | + if ( 'approved' === strtolower( $input[ 'label' ] ) ) { |
|
643 | + $approved_column_id = $input[ 'id' ]; |
|
644 | 644 | break; |
645 | 645 | } |
646 | 646 | } |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | |
667 | 667 | $view_keys = array_keys( $gv_data->get_views() ); |
668 | 668 | |
669 | - $view = \GV\View::by_id( $view_keys[0] ); |
|
669 | + $view = \GV\View::by_id( $view_keys[ 0 ] ); |
|
670 | 670 | |
671 | 671 | if ( ! $view->settings->get( 'unapprove_edit' ) ) { |
672 | 672 | return; |
@@ -691,11 +691,11 @@ discard block |
||
691 | 691 | return; |
692 | 692 | } |
693 | 693 | |
694 | - if( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
694 | + if ( ! GravityView_Entry_Approval_Status::is_valid( $approval_status ) ) { |
|
695 | 695 | $approval_status = GravityView_Entry_Approval_Status::UNAPPROVED; |
696 | 696 | } |
697 | 697 | |
698 | - self::update_approved_meta( $entry_id, $approval_status, $form['id'] ); |
|
698 | + self::update_approved_meta( $entry_id, $approval_status, $form[ 'id' ] ); |
|
699 | 699 | } |
700 | 700 | |
701 | 701 | /** |
@@ -733,9 +733,9 @@ discard block |
||
733 | 733 | $choices = GravityView_Entry_Approval_Status::get_all(); |
734 | 734 | |
735 | 735 | return <<<TEMPLATE |
736 | -<a href="#" data-approved="{$choices['approved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices['approved']['action']}"><span class="screen-reader-text">{$choices['approved']['action']}</span></a> |
|
737 | -<a href="#" data-approved="{$choices['disapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices['disapproved']['action']}"><span class="screen-reader-text">{$choices['disapproved']['action']}</span></a> |
|
738 | -<a href="#" data-approved="{$choices['unapproved']['value']}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices['unapproved']['action']}"><span class="screen-reader-text">{$choices['unapproved']['action']}</span></a> |
|
736 | +<a href="#" data-approved="{$choices[ 'approved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-approved popover" title="{$choices[ 'approved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'approved' ][ 'action' ]}</span></a> |
|
737 | +<a href="#" data-approved="{$choices[ 'disapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-disapproved popover" title="{$choices[ 'disapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'disapproved' ][ 'action' ]}</span></a> |
|
738 | +<a href="#" data-approved="{$choices[ 'unapproved' ][ 'value' ]}" aria-role="button" aria-live="polite" class="gv-approval-toggle gv-approval-unapproved popover" title="{$choices[ 'unapproved' ][ 'action' ]}"><span class="screen-reader-text">{$choices[ 'unapproved' ][ 'action' ]}</span></a> |
|
739 | 739 | TEMPLATE; |
740 | 740 | } |
741 | 741 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @return array |
103 | 103 | */ |
104 | 104 | public function modify_app_settings_menu_title( $setting_tabs ) { |
105 | - $setting_tabs[0]['label'] = __( 'GravityView Settings', 'gravityview' ); |
|
105 | + $setting_tabs[ 0 ][ 'label' ] = __( 'GravityView Settings', 'gravityview' ); |
|
106 | 106 | return $setting_tabs; |
107 | 107 | } |
108 | 108 | |
@@ -308,15 +308,15 @@ discard block |
||
308 | 308 | </ul> |
309 | 309 | <div class="gv-followup widefat"> |
310 | 310 | <p><strong><label for="gv-reason-details"><?php esc_html_e( 'Comments', 'gravityview' ); ?></label></strong></p> |
311 | - <textarea id="gv-reason-details" name="reason_details" data-default="<?php esc_attr_e('Please share your thoughts about GravityView', 'gravityview') ?>" placeholder="<?php esc_attr_e('Please share your thoughts about GravityView', 'gravityview'); ?>" class="large-text"></textarea> |
|
311 | + <textarea id="gv-reason-details" name="reason_details" data-default="<?php esc_attr_e( 'Please share your thoughts about GravityView', 'gravityview' ) ?>" placeholder="<?php esc_attr_e( 'Please share your thoughts about GravityView', 'gravityview' ); ?>" class="large-text"></textarea> |
|
312 | 312 | </div> |
313 | 313 | <div class="scale-description"> |
314 | 314 | <p><strong><?php esc_html_e( 'How likely are you to recommend GravityView?', 'gravityview' ); ?></strong></p> |
315 | 315 | <ul class="inline"> |
316 | 316 | <?php |
317 | 317 | $i = 0; |
318 | - while( $i < 11 ) { |
|
319 | - echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_'.$i.'" value="'.$i.'" type="radio"> '.$i.'</label></li>'; |
|
318 | + while ( $i < 11 ) { |
|
319 | + echo '<li class="inline number-scale"><label><input name="likely_to_refer" id="likely_to_refer_' . $i . '" value="' . $i . '" type="radio"> ' . $i . '</label></li>'; |
|
320 | 320 | $i++; |
321 | 321 | } |
322 | 322 | ?> |
@@ -485,9 +485,9 @@ discard block |
||
485 | 485 | * @return array The settings. |
486 | 486 | */ |
487 | 487 | public function all() { |
488 | - $option_name = 'gravityformsaddon_' . $this->_slug . '_app_settings'; |
|
488 | + $option_name = 'gravityformsaddon_' . $this->_slug . '_app_settings'; |
|
489 | 489 | |
490 | - if( is_multisite() ) { |
|
490 | + if ( is_multisite() ) { |
|
491 | 491 | $option_value = get_blog_option( get_main_site_id(), $option_name, array() ); |
492 | 492 | } else { |
493 | 493 | $option_value = get_site_option( $option_name, array() ); |
@@ -542,15 +542,15 @@ discard block |
||
542 | 542 | * @return string The HTML |
543 | 543 | */ |
544 | 544 | public function as_html( $field, $echo = true ) { |
545 | - $field['type'] = ( isset( $field['type'] ) && in_array( $field['type'], array( 'submit','reset','button' ) ) ) ? $field['type'] : 'submit'; |
|
545 | + $field[ 'type' ] = ( isset( $field[ 'type' ] ) && in_array( $field[ 'type' ], array( 'submit', 'reset', 'button' ) ) ) ? $field[ 'type' ] : 'submit'; |
|
546 | 546 | |
547 | 547 | $attributes = $this->get_field_attributes( $field ); |
548 | 548 | $default_value = Utils::get( $field, 'value', Utils::get( $field, 'default_value' ) ); |
549 | - $value = $this->get( $field['name'], $default_value ); |
|
549 | + $value = $this->get( $field[ 'name' ], $default_value ); |
|
550 | 550 | |
551 | 551 | |
552 | - $attributes['class'] = isset( $attributes['class'] ) ? esc_attr( $attributes['class'] ) : 'button-primary gfbutton'; |
|
553 | - $name = ( $field['name'] === 'gform-settings-save' ) ? $field['name'] : '_gaddon_setting_' . $field['name']; |
|
552 | + $attributes[ 'class' ] = isset( $attributes[ 'class' ] ) ? esc_attr( $attributes[ 'class' ] ) : 'button-primary gfbutton'; |
|
553 | + $name = ( $field[ 'name' ] === 'gform-settings-save' ) ? $field[ 'name' ] : '_gaddon_setting_' . $field[ 'name' ]; |
|
554 | 554 | |
555 | 555 | if ( empty( $value ) ) { |
556 | 556 | $value = __( 'Update Settings', 'gravityview' ); |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | $attributes = $this->get_field_attributes( $field ); |
560 | 560 | |
561 | 561 | $html = '<input |
562 | - type="' . $field['type'] . '" |
|
562 | + type="' . $field[ 'type' ] . '" |
|
563 | 563 | name="' . esc_attr( $name ) . '" |
564 | 564 | value="' . $value . '" ' . |
565 | 565 | implode( ' ', $attributes ) . |
@@ -590,7 +590,7 @@ discard block |
||
590 | 590 | * @return bool |
591 | 591 | */ |
592 | 592 | public function is_save_postback() { |
593 | - return isset( $_POST['gform-settings-save'] ) && isset( $_POST['_gravityview_save_settings_nonce'] ); |
|
593 | + return isset( $_POST[ 'gform-settings-save' ] ) && isset( $_POST[ '_gravityview_save_settings_nonce' ] ); |
|
594 | 594 | } |
595 | 595 | |
596 | 596 | /** |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | */ |
601 | 601 | public function license_key_notice() { |
602 | 602 | |
603 | - if( $this->is_save_postback() ) { |
|
603 | + if ( $this->is_save_postback() ) { |
|
604 | 604 | $settings = $this->get_posted_settings(); |
605 | 605 | $license_key = \GV\Utils::get( $settings, 'license_key' ); |
606 | 606 | $license_status = \GV\Utils::get( $settings, 'license_key_status', 'inactive' ); |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | * but didn't want to mess up the translation strings for the translators. |
622 | 622 | */ |
623 | 623 | $message = mb_substr( $message, 0, mb_strlen( $message ) - 1 ); |
624 | - $title = __( 'Inactive License', 'gravityview'); |
|
624 | + $title = __( 'Inactive License', 'gravityview' ); |
|
625 | 625 | $status = ''; |
626 | 626 | $update_below = false; |
627 | 627 | $primary_button_link = admin_url( 'edit.php?post_type=gravityview&page=gravityview_settings' ); |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | $update_below = __( 'Activate your license key below.', 'gravityview' ); |
652 | 652 | break; |
653 | 653 | } |
654 | - $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content='.$license_status.'&utm_campaign=Admin%20Notice'; |
|
654 | + $url = 'https://gravityview.co/pricing/?utm_source=admin_notice&utm_medium=admin&utm_content=' . $license_status . '&utm_campaign=Admin%20Notice'; |
|
655 | 655 | |
656 | 656 | // Show a different notice on settings page for inactive licenses (hide the buttons) |
657 | 657 | if ( $update_below && gravityview()->request->is_admin( '', 'settings' ) ) { |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | public function scripts() { |
696 | 696 | $scripts = parent::scripts(); |
697 | 697 | |
698 | - $scripts[] = array( |
|
698 | + $scripts[ ] = array( |
|
699 | 699 | 'handle' => 'gform_tooltip_init', |
700 | 700 | 'enqueue' => array( |
701 | 701 | array( |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | public function styles() { |
715 | 715 | $styles = parent::styles(); |
716 | 716 | |
717 | - $styles[] = array( |
|
717 | + $styles[ ] = array( |
|
718 | 718 | 'handle' => 'gravityview_settings', |
719 | 719 | 'src' => plugins_url( 'assets/css/admin-settings.css', GRAVITYVIEW_FILE ), |
720 | 720 | 'version' => Plugin::$version, |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | * If multisite and not network admin, we don't want the settings to show. |
746 | 746 | * @since 1.7.6 |
747 | 747 | */ |
748 | - $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
748 | + $show_submenu = ( ! is_multisite() ) || is_main_site() || ( ! gravityview()->plugin->is_network_activated() ) || ( is_network_admin() && gravityview()->plugin->is_network_activated() ); |
|
749 | 749 | |
750 | 750 | /** |
751 | 751 | * Override whether to show the Settings menu on a per-blog basis. |
@@ -793,26 +793,26 @@ discard block |
||
793 | 793 | 'label' => __( 'License Key', 'gravityview' ), |
794 | 794 | 'description' => __( 'Enter the license key that was sent to you on purchase. This enables plugin updates & support.', 'gravityview' ) . $this->get_license_handler()->license_details( $this->get_app_setting( 'license_key_response' ) ), |
795 | 795 | 'type' => 'edd_license', |
796 | - 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
796 | + 'disabled' => ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ), |
|
797 | 797 | 'data-pending-text' => __( 'Verifying license…', 'gravityview' ), |
798 | - 'default_value' => $default_settings['license_key'], |
|
798 | + 'default_value' => $default_settings[ 'license_key' ], |
|
799 | 799 | 'class' => ( '' == $this->get( 'license_key' ) ) ? 'activate code regular-text edd-license-key' : 'deactivate code regular-text edd-license-key', |
800 | 800 | ), |
801 | 801 | array( |
802 | 802 | 'name' => 'license_key_response', |
803 | - 'default_value' => $default_settings['license_key_response'], |
|
803 | + 'default_value' => $default_settings[ 'license_key_response' ], |
|
804 | 804 | 'type' => 'hidden', |
805 | 805 | ), |
806 | 806 | array( |
807 | 807 | 'name' => 'license_key_status', |
808 | - 'default_value' => $default_settings['license_key_status'], |
|
808 | + 'default_value' => $default_settings[ 'license_key_status' ], |
|
809 | 809 | 'type' => 'hidden', |
810 | 810 | ), |
811 | 811 | array( |
812 | 812 | 'name' => 'support-email', |
813 | 813 | 'type' => 'text', |
814 | 814 | 'validate' => 'email', |
815 | - 'default_value' => $default_settings['support-email'], |
|
815 | + 'default_value' => $default_settings[ 'support-email' ], |
|
816 | 816 | 'label' => __( 'Support Email', 'gravityview' ), |
817 | 817 | 'description' => __( 'In order to provide responses to your support requests, please provide your email address.', 'gravityview' ), |
818 | 818 | 'class' => 'code regular-text', |
@@ -824,7 +824,7 @@ discard block |
||
824 | 824 | 'name' => 'support_port', |
825 | 825 | 'type' => 'radio', |
826 | 826 | 'label' => __( 'Show Support Port?', 'gravityview' ), |
827 | - 'default_value' => $default_settings['support_port'], |
|
827 | + 'default_value' => $default_settings[ 'support_port' ], |
|
828 | 828 | 'horizontal' => 1, |
829 | 829 | 'choices' => array( |
830 | 830 | array( |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | 'name' => 'no-conflict-mode', |
844 | 844 | 'type' => 'radio', |
845 | 845 | 'label' => __( 'No-Conflict Mode', 'gravityview' ), |
846 | - 'default_value' => $default_settings['no-conflict-mode'], |
|
846 | + 'default_value' => $default_settings[ 'no-conflict-mode' ], |
|
847 | 847 | 'horizontal' => 1, |
848 | 848 | 'choices' => array( |
849 | 849 | array( |
@@ -865,7 +865,7 @@ discard block |
||
865 | 865 | 'name' => 'rest_api', |
866 | 866 | 'type' => 'radio', |
867 | 867 | 'label' => __( 'REST API', 'gravityview' ), |
868 | - 'default_value' => $default_settings['rest_api'], |
|
868 | + 'default_value' => $default_settings[ 'rest_api' ], |
|
869 | 869 | 'horizontal' => 1, |
870 | 870 | 'choices' => array( |
871 | 871 | array( |
@@ -884,7 +884,7 @@ discard block |
||
884 | 884 | 'name' => 'beta', |
885 | 885 | 'type' => 'checkbox', |
886 | 886 | 'label' => __( 'Become a Beta Tester', 'gravityview' ), |
887 | - 'default_value' => $default_settings['beta'], |
|
887 | + 'default_value' => $default_settings[ 'beta' ], |
|
888 | 888 | 'horizontal' => 1, |
889 | 889 | 'choices' => array( |
890 | 890 | array( |
@@ -917,17 +917,17 @@ discard block |
||
917 | 917 | * @since 1.7.4 |
918 | 918 | */ |
919 | 919 | foreach ( $fields as &$field ) { |
920 | - $field['name'] = isset( $field['name'] ) ? $field['name'] : Utils::get( $field, 'id' ); |
|
921 | - $field['label'] = isset( $field['label'] ) ? $field['label'] : Utils::get( $field, 'title' ); |
|
922 | - $field['default_value'] = isset( $field['default_value'] ) ? $field['default_value'] : Utils::get( $field, 'default' ); |
|
923 | - $field['description'] = isset( $field['description'] ) ? $field['description'] : Utils::get( $field, 'subtitle' ); |
|
920 | + $field[ 'name' ] = isset( $field[ 'name' ] ) ? $field[ 'name' ] : Utils::get( $field, 'id' ); |
|
921 | + $field[ 'label' ] = isset( $field[ 'label' ] ) ? $field[ 'label' ] : Utils::get( $field, 'title' ); |
|
922 | + $field[ 'default_value' ] = isset( $field[ 'default_value' ] ) ? $field[ 'default_value' ] : Utils::get( $field, 'default' ); |
|
923 | + $field[ 'description' ] = isset( $field[ 'description' ] ) ? $field[ 'description' ] : Utils::get( $field, 'subtitle' ); |
|
924 | 924 | |
925 | 925 | if ( $disabled_attribute ) { |
926 | - $field['disabled'] = $disabled_attribute; |
|
926 | + $field[ 'disabled' ] = $disabled_attribute; |
|
927 | 927 | } |
928 | 928 | |
929 | - if ( empty( $field['disabled'] ) ) { |
|
930 | - unset( $field['disabled'] ); |
|
929 | + if ( empty( $field[ 'disabled' ] ) ) { |
|
930 | + unset( $field[ 'disabled' ] ); |
|
931 | 931 | } |
932 | 932 | } |
933 | 933 | |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | ); |
946 | 946 | |
947 | 947 | if ( $disabled_attribute ) { |
948 | - $button['disabled'] = $disabled_attribute; |
|
948 | + $button[ 'disabled' ] = $disabled_attribute; |
|
949 | 949 | } |
950 | 950 | |
951 | 951 | /** |
@@ -964,20 +964,20 @@ discard block |
||
964 | 964 | // If there are extensions, add a section for them |
965 | 965 | if ( ! empty( $extension_sections ) ) { |
966 | 966 | |
967 | - if( $disabled_attribute ) { |
|
967 | + if ( $disabled_attribute ) { |
|
968 | 968 | foreach ( $extension_sections as &$section ) { |
969 | - foreach ( $section['fields'] as &$field ) { |
|
970 | - $field['disabled'] = $disabled_attribute; |
|
969 | + foreach ( $section[ 'fields' ] as &$field ) { |
|
970 | + $field[ 'disabled' ] = $disabled_attribute; |
|
971 | 971 | } |
972 | 972 | } |
973 | 973 | } |
974 | 974 | |
975 | - $k = count( $extension_sections ) - 1 ; |
|
976 | - $extension_sections[ $k ]['fields'][] = $button; |
|
975 | + $k = count( $extension_sections ) - 1; |
|
976 | + $extension_sections[ $k ][ 'fields' ][ ] = $button; |
|
977 | 977 | $sections = array_merge( $sections, $extension_sections ); |
978 | 978 | } else { |
979 | 979 | // add the 'update settings' button to the general section |
980 | - $sections[0]['fields'][] = $button; |
|
980 | + $sections[ 0 ][ 'fields' ][ ] = $button; |
|
981 | 981 | } |
982 | 982 | |
983 | 983 | return $sections; |
@@ -1033,7 +1033,7 @@ discard block |
||
1033 | 1033 | protected function settings_edd_license( $field, $echo = true ) { |
1034 | 1034 | |
1035 | 1035 | if ( defined( 'GRAVITYVIEW_LICENSE_KEY' ) && GRAVITYVIEW_LICENSE_KEY ) { |
1036 | - $field['input_type'] = 'password'; |
|
1036 | + $field[ 'input_type' ] = 'password'; |
|
1037 | 1037 | } |
1038 | 1038 | |
1039 | 1039 | $text = $this->settings_text( $field, false ); |
@@ -1082,7 +1082,7 @@ discard block |
||
1082 | 1082 | public function single_setting_row_html( $field ) { |
1083 | 1083 | ?> |
1084 | 1084 | |
1085 | - <tr id="gaddon-setting-row-<?php echo esc_attr( $field['name'] ); ?>"> |
|
1085 | + <tr id="gaddon-setting-row-<?php echo esc_attr( $field[ 'name' ] ); ?>"> |
|
1086 | 1086 | <td colspan="2"> |
1087 | 1087 | <?php $this->single_setting( $field ); ?> |
1088 | 1088 | </td> |
@@ -1100,10 +1100,10 @@ discard block |
||
1100 | 1100 | * @return string |
1101 | 1101 | */ |
1102 | 1102 | public function settings_save( $field, $echo = true ) { |
1103 | - $field['type'] = 'submit'; |
|
1104 | - $field['name'] = 'gform-settings-save'; |
|
1105 | - $field['class'] = isset( $field['class'] ) ? $field['class'] : 'button-primary gfbutton'; |
|
1106 | - $field['value'] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1103 | + $field[ 'type' ] = 'submit'; |
|
1104 | + $field[ 'name' ] = 'gform-settings-save'; |
|
1105 | + $field[ 'class' ] = isset( $field[ 'class' ] ) ? $field[ 'class' ] : 'button-primary gfbutton'; |
|
1106 | + $field[ 'value' ] = Utils::get( $field, 'value', __( 'Update Settings', 'gravityview' ) ); |
|
1107 | 1107 | |
1108 | 1108 | $output = $this->settings_submit( $field, false ); |
1109 | 1109 | |
@@ -1134,8 +1134,8 @@ discard block |
||
1134 | 1134 | * @return void |
1135 | 1135 | */ |
1136 | 1136 | public function single_setting_row( $field ) { |
1137 | - $field['gv_description'] = Utils::get( $field, 'description' ); |
|
1138 | - $field['description'] = Utils::get( $field, 'subtitle' ); |
|
1137 | + $field[ 'gv_description' ] = Utils::get( $field, 'description' ); |
|
1138 | + $field[ 'description' ] = Utils::get( $field, 'subtitle' ); |
|
1139 | 1139 | parent::single_setting_row( $field ); |
1140 | 1140 | } |
1141 | 1141 | |
@@ -1147,7 +1147,7 @@ discard block |
||
1147 | 1147 | public function single_setting_label( $field ) { |
1148 | 1148 | parent::single_setting_label( $field ); |
1149 | 1149 | if ( $description = Utils::get( $field, 'gv_description' ) ) { |
1150 | - echo '<span class="description">'. $description .'</span>'; |
|
1150 | + echo '<span class="description">' . $description . '</span>'; |
|
1151 | 1151 | } |
1152 | 1152 | } |
1153 | 1153 | |
@@ -1184,9 +1184,9 @@ discard block |
||
1184 | 1184 | // If the posted key doesn't match the activated/deactivated key (set using the Activate License button, AJAX response), |
1185 | 1185 | // then we assume it's changed. If it's changed, unset the status and the previous response. |
1186 | 1186 | if ( $local_key !== $response_key ) { |
1187 | - unset( $posted_settings['license_key_response'] ); |
|
1188 | - unset( $posted_settings['license_key_status'] ); |
|
1189 | - \GFCommon::add_error_message( __('The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1187 | + unset( $posted_settings[ 'license_key_response' ] ); |
|
1188 | + unset( $posted_settings[ 'license_key_status' ] ); |
|
1189 | + \GFCommon::add_error_message( __( 'The license key you entered has been saved, but not activated. Please activate the license.', 'gravityview' ) ); |
|
1190 | 1190 | } |
1191 | 1191 | return $posted_settings; |
1192 | 1192 | } |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | private function __construct() {} |
86 | 86 | |
87 | 87 | private function initialize() { |
88 | - add_action( 'wp', array( $this, 'parse_content'), 11 ); |
|
88 | + add_action( 'wp', array( $this, 'parse_content' ), 11 ); |
|
89 | 89 | add_filter( 'parse_query', array( $this, 'parse_query_fix_frontpage' ), 10 ); |
90 | - add_action( 'template_redirect', array( $this, 'set_entry_data'), 1 ); |
|
90 | + add_action( 'template_redirect', array( $this, 'set_entry_data' ), 1 ); |
|
91 | 91 | |
92 | 92 | // Enqueue scripts and styles after GravityView_Template::register_styles() |
93 | 93 | add_action( 'wp_enqueue_scripts', array( $this, 'add_scripts_and_styles' ), 20 ); |
@@ -236,12 +236,12 @@ discard block |
||
236 | 236 | |
237 | 237 | $this->context_view_id = $view_id; |
238 | 238 | |
239 | - } elseif ( isset( $_GET['gvid'] ) && $multiple_views ) { |
|
239 | + } elseif ( isset( $_GET[ 'gvid' ] ) && $multiple_views ) { |
|
240 | 240 | /** |
241 | 241 | * used on a has_multiple_views context |
242 | 242 | * @see GravityView_API::entry_link |
243 | 243 | */ |
244 | - $this->context_view_id = $_GET['gvid']; |
|
244 | + $this->context_view_id = $_GET[ 'gvid' ]; |
|
245 | 245 | |
246 | 246 | } elseif ( ! $multiple_views ) { |
247 | 247 | $array_keys = array_keys( $this->getGvOutputData()->get_views() ); |
@@ -278,25 +278,25 @@ discard block |
||
278 | 278 | global $wp_rewrite; |
279 | 279 | |
280 | 280 | $is_front_page = ( $query->is_home || $query->is_page ); |
281 | - $show_on_front = ( 'page' === get_option('show_on_front') ); |
|
282 | - $front_page_id = get_option('page_on_front'); |
|
281 | + $show_on_front = ( 'page' === get_option( 'show_on_front' ) ); |
|
282 | + $front_page_id = get_option( 'page_on_front' ); |
|
283 | 283 | |
284 | - if ( $is_front_page && $show_on_front && $front_page_id ) { |
|
284 | + if ( $is_front_page && $show_on_front && $front_page_id ) { |
|
285 | 285 | |
286 | 286 | // Force to be an array, potentially a query string ( entry=16 ) |
287 | 287 | $_query = wp_parse_args( $query->query ); |
288 | 288 | |
289 | 289 | // pagename can be set and empty depending on matched rewrite rules. Ignore an empty pagename. |
290 | - if ( isset( $_query['pagename'] ) && '' === $_query['pagename'] ) { |
|
291 | - unset( $_query['pagename'] ); |
|
290 | + if ( isset( $_query[ 'pagename' ] ) && '' === $_query[ 'pagename' ] ) { |
|
291 | + unset( $_query[ 'pagename' ] ); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | // this is where will break from core wordpress |
295 | 295 | /** @internal Don't use this filter; it will be unnecessary soon - it's just a patch for specific use case */ |
296 | 296 | $ignore = apply_filters( 'gravityview/internal/ignored_endpoints', array( 'preview', 'page', 'paged', 'cpage' ), $query ); |
297 | 297 | $endpoints = \GV\Utils::get( $wp_rewrite, 'endpoints' ); |
298 | - foreach ( (array) $endpoints as $endpoint ) { |
|
299 | - $ignore[] = $endpoint[1]; |
|
298 | + foreach ( (array)$endpoints as $endpoint ) { |
|
299 | + $ignore[ ] = $endpoint[ 1 ]; |
|
300 | 300 | } |
301 | 301 | unset( $endpoints ); |
302 | 302 | |
@@ -306,21 +306,21 @@ discard block |
||
306 | 306 | // - The query includes keys that are associated with registered endpoints. `entry`, for example. |
307 | 307 | if ( empty( $_query ) || ! array_diff( array_keys( $_query ), $ignore ) ) { |
308 | 308 | |
309 | - $qv =& $query->query_vars; |
|
309 | + $qv = & $query->query_vars; |
|
310 | 310 | |
311 | 311 | // Prevent redirect when on the single entry endpoint |
312 | - if( self::is_single_entry() ) { |
|
312 | + if ( self::is_single_entry() ) { |
|
313 | 313 | add_filter( 'redirect_canonical', '__return_false' ); |
314 | 314 | } |
315 | 315 | |
316 | 316 | $query->is_page = true; |
317 | 317 | $query->is_home = false; |
318 | - $qv['page_id'] = $front_page_id; |
|
318 | + $qv[ 'page_id' ] = $front_page_id; |
|
319 | 319 | |
320 | 320 | // Correct <!--nextpage--> for page_on_front |
321 | - if ( ! empty( $qv['paged'] ) ) { |
|
322 | - $qv['page'] = $qv['paged']; |
|
323 | - unset( $qv['paged'] ); |
|
321 | + if ( ! empty( $qv[ 'paged' ] ) ) { |
|
322 | + $qv[ 'page' ] = $qv[ 'paged' ]; |
|
323 | + unset( $qv[ 'paged' ] ); |
|
324 | 324 | } |
325 | 325 | } |
326 | 326 | |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | |
351 | 351 | $this->setIsGravityviewPostType( get_post_type( $post ) === 'gravityview' ); |
352 | 352 | |
353 | - $post_id = $this->getPostId() ? $this->getPostId() : (isset( $post ) ? $post->ID : null ); |
|
353 | + $post_id = $this->getPostId() ? $this->getPostId() : ( isset( $post ) ? $post->ID : null ); |
|
354 | 354 | $this->setPostId( $post_id ); |
355 | 355 | $post_has_shortcode = ! empty( $post->post_content ) ? gravityview_has_shortcode_r( $post->post_content, 'gravityview' ) : false; |
356 | 356 | $this->setPostHasShortcode( $this->isGravityviewPostType() ? null : ! empty( $post_has_shortcode ) ); |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | |
387 | 387 | $search_method = GravityView_Widget_Search::getInstance()->get_search_method(); |
388 | 388 | |
389 | - if( 'post' === $search_method ) { |
|
389 | + if ( 'post' === $search_method ) { |
|
390 | 390 | $get = $_POST; |
391 | 391 | } else { |
392 | 392 | $get = $_GET; |
@@ -443,20 +443,20 @@ discard block |
||
443 | 443 | * @param boolean $in_the_loop Whether to apply the filter to the menu title and the meta tag <title> - outside the loop |
444 | 444 | * @param array $entry Current entry |
445 | 445 | */ |
446 | - $apply_outside_loop = apply_filters( 'gravityview/single/title/out_loop' , in_the_loop(), $entry ); |
|
446 | + $apply_outside_loop = apply_filters( 'gravityview/single/title/out_loop', in_the_loop(), $entry ); |
|
447 | 447 | |
448 | 448 | if ( ! $apply_outside_loop ) { |
449 | 449 | return $title; |
450 | 450 | } |
451 | 451 | |
452 | 452 | // User reported WooCommerce doesn't pass two args. |
453 | - if ( empty( $passed_post_id ) ) { |
|
453 | + if ( empty( $passed_post_id ) ) { |
|
454 | 454 | return $title; |
455 | 455 | } |
456 | 456 | |
457 | 457 | // Don't modify the title for anything other than the current view/post. |
458 | 458 | // This is true for embedded shortcodes and Views. |
459 | - if ( is_object( $post ) && (int) $post->ID !== (int) $passed_post_id ) { |
|
459 | + if ( is_object( $post ) && (int)$post->ID !== (int)$passed_post_id ) { |
|
460 | 460 | return $title; |
461 | 461 | } |
462 | 462 | |
@@ -468,7 +468,7 @@ discard block |
||
468 | 468 | $view_meta = $this->getGvOutputData()->get_view( $context_view_id ); |
469 | 469 | } else { |
470 | 470 | foreach ( $this->getGvOutputData()->get_views() as $view_id => $view_data ) { |
471 | - if ( intval( $view_data['form_id'] ) === intval( $entry['form_id'] ) ) { |
|
471 | + if ( intval( $view_data[ 'form_id' ] ) === intval( $entry[ 'form_id' ] ) ) { |
|
472 | 472 | $view_meta = $view_data; |
473 | 473 | break; |
474 | 474 | } |
@@ -476,12 +476,12 @@ discard block |
||
476 | 476 | } |
477 | 477 | |
478 | 478 | /** Deprecated stuff in the future. See the branch above. */ |
479 | - if ( ! empty( $view_meta['atts']['single_title'] ) ) { |
|
479 | + if ( ! empty( $view_meta[ 'atts' ][ 'single_title' ] ) ) { |
|
480 | 480 | |
481 | - $title = $view_meta['atts']['single_title']; |
|
481 | + $title = $view_meta[ 'atts' ][ 'single_title' ]; |
|
482 | 482 | |
483 | 483 | // We are allowing HTML in the fields, so no escaping the output |
484 | - $title = GravityView_API::replace_variables( $title, $view_meta['form'], $entry ); |
|
484 | + $title = GravityView_API::replace_variables( $title, $view_meta[ 'form' ], $entry ); |
|
485 | 485 | |
486 | 486 | $title = do_shortcode( $title ); |
487 | 487 | } |
@@ -552,7 +552,7 @@ discard block |
||
552 | 552 | |
553 | 553 | $context = GravityView_View::getInstance()->getContext(); |
554 | 554 | |
555 | - switch( $context ) { |
|
555 | + switch ( $context ) { |
|
556 | 556 | case 'directory': |
557 | 557 | $tab = __( 'Multiple Entries', 'gravityview' ); |
558 | 558 | break; |
@@ -566,12 +566,12 @@ discard block |
||
566 | 566 | } |
567 | 567 | |
568 | 568 | |
569 | - $title = sprintf( esc_html_x('The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gravityview' ), $tab ); |
|
569 | + $title = sprintf( esc_html_x( 'The %s layout has not been configured.', 'Displayed when a View is not configured. %s is replaced by the tab label', 'gravityview' ), $tab ); |
|
570 | 570 | $edit_link = admin_url( sprintf( 'post.php?post=%d&action=edit#%s-view', $view_id, $context ) ); |
571 | - $action_text = sprintf( esc_html__('Add fields to %s', 'gravityview' ), $tab ); |
|
571 | + $action_text = sprintf( esc_html__( 'Add fields to %s', 'gravityview' ), $tab ); |
|
572 | 572 | $message = esc_html__( 'You can only see this message because you are able to edit this View.', 'gravityview' ); |
573 | 573 | |
574 | - $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url(plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) ); |
|
574 | + $image = sprintf( '<img alt="%s" src="%s" style="margin-top: 10px;" />', $tab, esc_url( plugins_url( sprintf( 'assets/images/tab-%s.png', $context ), GRAVITYVIEW_FILE ) ) ); |
|
575 | 575 | $output = sprintf( '<h3>%s <strong><a href="%s">%s</a></strong></h3><p>%s</p>', $title, esc_url( $edit_link ), $action_text, $message ); |
576 | 576 | |
577 | 577 | echo GVCommon::generate_notice( $output . $image, 'gv-error error', 'edit_gravityview', $view_id ); |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | $direct_access = apply_filters( 'gravityview_direct_access', true, $view->ID ); |
620 | 620 | $embed_only = $view->settings->get( 'embed_only' ); |
621 | 621 | |
622 | - if( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
622 | + if ( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
623 | 623 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
624 | 624 | } |
625 | 625 | |
@@ -666,7 +666,7 @@ discard block |
||
666 | 666 | $datetime_format = 'Y-m-d H:i:s'; |
667 | 667 | $search_is_outside_view_bounds = false; |
668 | 668 | |
669 | - if( ! empty( $search_criteria[ $key ] ) ) { |
|
669 | + if ( ! empty( $search_criteria[ $key ] ) ) { |
|
670 | 670 | |
671 | 671 | $search_date = strtotime( $search_criteria[ $key ] ); |
672 | 672 | |
@@ -694,14 +694,14 @@ discard block |
||
694 | 694 | if ( empty( $search_criteria[ $key ] ) || $search_is_outside_view_bounds ) { |
695 | 695 | |
696 | 696 | // Then we override the search and re-set the start date |
697 | - $return_search_criteria[ $key ] = date_i18n( $datetime_format , $date, true ); |
|
697 | + $return_search_criteria[ $key ] = date_i18n( $datetime_format, $date, true ); |
|
698 | 698 | } |
699 | 699 | } |
700 | 700 | } |
701 | 701 | |
702 | - if( isset( $return_search_criteria['start_date'] ) && isset( $return_search_criteria['end_date'] ) ) { |
|
702 | + if ( isset( $return_search_criteria[ 'start_date' ] ) && isset( $return_search_criteria[ 'end_date' ] ) ) { |
|
703 | 703 | // The start date is AFTER the end date. This will result in no results, but let's not force the issue. |
704 | - if ( strtotime( $return_search_criteria['start_date'] ) > strtotime( $return_search_criteria['end_date'] ) ) { |
|
704 | + if ( strtotime( $return_search_criteria[ 'start_date' ] ) > strtotime( $return_search_criteria[ 'end_date' ] ) ) { |
|
705 | 705 | gravityview()->log->error( 'Invalid search: the start date is after the end date.', array( 'data' => $return_search_criteria ) ); |
706 | 706 | } |
707 | 707 | } |
@@ -720,19 +720,19 @@ discard block |
||
720 | 720 | public static function process_search_only_approved( $args, $search_criteria ) { |
721 | 721 | |
722 | 722 | /** @since 1.19 */ |
723 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
723 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
724 | 724 | gravityview()->log->debug( 'User can moderate entries; showing all approval statuses' ); |
725 | 725 | return $search_criteria; |
726 | 726 | } |
727 | 727 | |
728 | - if ( ! empty( $args['show_only_approved'] ) ) { |
|
728 | + if ( ! empty( $args[ 'show_only_approved' ] ) ) { |
|
729 | 729 | |
730 | - $search_criteria['field_filters'][] = array( |
|
730 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
731 | 731 | 'key' => GravityView_Entry_Approval::meta_key, |
732 | 732 | 'value' => GravityView_Entry_Approval_Status::APPROVED |
733 | 733 | ); |
734 | 734 | |
735 | - $search_criteria['field_filters']['mode'] = 'all'; // force all the criterias to be met |
|
735 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; // force all the criterias to be met |
|
736 | 736 | |
737 | 737 | gravityview()->log->debug( '[process_search_only_approved] Search Criteria if show only approved: ', array( 'data' => $search_criteria ) ); |
738 | 738 | } |
@@ -759,18 +759,18 @@ discard block |
||
759 | 759 | */ |
760 | 760 | public static function is_entry_approved( $entry, $args = array() ) { |
761 | 761 | |
762 | - if ( empty( $entry['id'] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args['show_only_approved'] ) ) { |
|
762 | + if ( empty( $entry[ 'id' ] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args[ 'show_only_approved' ] ) ) { |
|
763 | 763 | // is implicitly approved if entry is null or View settings doesn't require to check for approval |
764 | 764 | return true; |
765 | 765 | } |
766 | 766 | |
767 | 767 | /** @since 1.19 */ |
768 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
768 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
769 | 769 | gravityview()->log->debug( 'User can moderate entries, so entry is approved for viewing' ); |
770 | 770 | return true; |
771 | 771 | } |
772 | 772 | |
773 | - $is_approved = gform_get_meta( $entry['id'], GravityView_Entry_Approval::meta_key ); |
|
773 | + $is_approved = gform_get_meta( $entry[ 'id' ], GravityView_Entry_Approval::meta_key ); |
|
774 | 774 | |
775 | 775 | return GravityView_Entry_Approval_Status::is_approved( $is_approved ); |
776 | 776 | } |
@@ -794,7 +794,7 @@ discard block |
||
794 | 794 | * Compatibility with filters hooking in `gravityview_search_criteria` instead of `gravityview_fe_search_criteria`. |
795 | 795 | */ |
796 | 796 | $criteria = apply_filters( 'gravityview_search_criteria', array(), array( $form_id ), \GV\Utils::get( $args, 'id' ) ); |
797 | - $search_criteria = isset( $criteria['search_criteria'] ) ? $criteria['search_criteria'] : array( 'field_filters' => array() ); |
|
797 | + $search_criteria = isset( $criteria[ 'search_criteria' ] ) ? $criteria[ 'search_criteria' ] : array( 'field_filters' => array() ); |
|
798 | 798 | |
799 | 799 | /** |
800 | 800 | * @filter `gravityview_fe_search_criteria` Modify the search criteria |
@@ -810,29 +810,29 @@ discard block |
||
810 | 810 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after hook gravityview_fe_search_criteria: ', array( 'data' =>$search_criteria ) ); |
811 | 811 | |
812 | 812 | // implicity search |
813 | - if ( ! empty( $args['search_value'] ) ) { |
|
813 | + if ( ! empty( $args[ 'search_value' ] ) ) { |
|
814 | 814 | |
815 | 815 | // Search operator options. Options: `is` or `contains` |
816 | - $operator = ! empty( $args['search_operator'] ) && in_array( $args['search_operator'], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains'; |
|
816 | + $operator = ! empty( $args[ 'search_operator' ] ) && in_array( $args[ 'search_operator' ], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args[ 'search_operator' ] : 'contains'; |
|
817 | 817 | |
818 | - $search_criteria['field_filters'][] = array( |
|
818 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
819 | 819 | 'key' => \GV\Utils::_GET( 'search_field', \GV\Utils::get( $args, 'search_field' ) ), // The field ID to search |
820 | - 'value' => _wp_specialchars( $args['search_value'] ), // The value to search. Encode ampersands but not quotes. |
|
820 | + 'value' => _wp_specialchars( $args[ 'search_value' ] ), // The value to search. Encode ampersands but not quotes. |
|
821 | 821 | 'operator' => $operator, |
822 | 822 | ); |
823 | 823 | |
824 | 824 | // Lock search mode to "all" with implicit presearch filter. |
825 | - $search_criteria['field_filters']['mode'] = 'all'; |
|
825 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; |
|
826 | 826 | } |
827 | 827 | |
828 | - if( $search_criteria !== $original_search_criteria ) { |
|
828 | + if ( $search_criteria !== $original_search_criteria ) { |
|
829 | 829 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after implicity search: ', array( 'data' => $search_criteria ) ); |
830 | 830 | } |
831 | 831 | |
832 | 832 | // Handle setting date range |
833 | 833 | $search_criteria = self::process_search_dates( $args, $search_criteria ); |
834 | 834 | |
835 | - if( $search_criteria !== $original_search_criteria ) { |
|
835 | + if ( $search_criteria !== $original_search_criteria ) { |
|
836 | 836 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after date params: ', array( 'data' => $search_criteria ) ); |
837 | 837 | } |
838 | 838 | |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | * @filter `gravityview_status` Modify entry status requirements to be included in search results. |
844 | 844 | * @param string $status Default: `active`. Accepts all Gravity Forms entry statuses, including `spam` and `trash` |
845 | 845 | */ |
846 | - $search_criteria['status'] = apply_filters( 'gravityview_status', 'active', $args ); |
|
846 | + $search_criteria[ 'status' ] = apply_filters( 'gravityview_status', 'active', $args ); |
|
847 | 847 | |
848 | 848 | return $search_criteria; |
849 | 849 | } |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | 'search_criteria' => $search_criteria, |
957 | 957 | 'sorting' => self::updateViewSorting( $args, $form_id ), |
958 | 958 | 'paging' => $paging, |
959 | - 'cache' => isset( $args['cache'] ) ? $args['cache'] : true, |
|
959 | + 'cache' => isset( $args[ 'cache' ] ) ? $args[ 'cache' ] : true, |
|
960 | 960 | ); |
961 | 961 | |
962 | 962 | /** |
@@ -981,7 +981,7 @@ discard block |
||
981 | 981 | * @param array $parameters Array with `search_criteria`, `sorting` and `paging` keys. |
982 | 982 | * @param array $args View configuration args. |
983 | 983 | */ |
984 | - $parameters = apply_filters( 'gravityview_get_entries_'.\GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
984 | + $parameters = apply_filters( 'gravityview_get_entries_' . \GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
985 | 985 | |
986 | 986 | gravityview()->log->debug( '$parameters passed to gravityview_get_entries(): ', array( 'data' => $parameters ) ); |
987 | 987 | |
@@ -1006,17 +1006,17 @@ discard block |
||
1006 | 1006 | $default_page_size = apply_filters( 'gravityview_default_page_size', 25 ); |
1007 | 1007 | |
1008 | 1008 | // Paging & offset |
1009 | - $page_size = ! empty( $args['page_size'] ) ? intval( $args['page_size'] ) : $default_page_size; |
|
1009 | + $page_size = ! empty( $args[ 'page_size' ] ) ? intval( $args[ 'page_size' ] ) : $default_page_size; |
|
1010 | 1010 | |
1011 | 1011 | if ( -1 === $page_size ) { |
1012 | 1012 | $page_size = PHP_INT_MAX; |
1013 | 1013 | } |
1014 | 1014 | |
1015 | - $curr_page = empty( $_GET['pagenum'] ) ? 1 : intval( $_GET['pagenum'] ); |
|
1015 | + $curr_page = empty( $_GET[ 'pagenum' ] ) ? 1 : intval( $_GET[ 'pagenum' ] ); |
|
1016 | 1016 | $offset = ( $curr_page - 1 ) * $page_size; |
1017 | 1017 | |
1018 | - if ( ! empty( $args['offset'] ) ) { |
|
1019 | - $offset += intval( $args['offset'] ); |
|
1018 | + if ( ! empty( $args[ 'offset' ] ) ) { |
|
1019 | + $offset += intval( $args[ 'offset' ] ); |
|
1020 | 1020 | } |
1021 | 1021 | |
1022 | 1022 | $paging = array( |
@@ -1040,8 +1040,8 @@ discard block |
||
1040 | 1040 | */ |
1041 | 1041 | public static function updateViewSorting( $args, $form_id ) { |
1042 | 1042 | $sorting = array(); |
1043 | - $sort_field_id = isset( $_GET['sort'] ) ? $_GET['sort'] : \GV\Utils::get( $args, 'sort_field' ); |
|
1044 | - $sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1043 | + $sort_field_id = isset( $_GET[ 'sort' ] ) ? $_GET[ 'sort' ] : \GV\Utils::get( $args, 'sort_field' ); |
|
1044 | + $sort_direction = isset( $_GET[ 'dir' ] ) ? $_GET[ 'dir' ] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1045 | 1045 | |
1046 | 1046 | if ( is_array( $sort_field_id ) ) { |
1047 | 1047 | $sort_field_id = array_pop( $sort_field_id ); |
@@ -1072,10 +1072,10 @@ discard block |
||
1072 | 1072 | $form = GFAPI::get_form( $form_id ); |
1073 | 1073 | |
1074 | 1074 | // Get the first GF_Field field ID, set as the key for entry randomization |
1075 | - if ( ! empty( $form['fields'] ) ) { |
|
1075 | + if ( ! empty( $form[ 'fields' ] ) ) { |
|
1076 | 1076 | |
1077 | 1077 | /** @var GF_Field $field */ |
1078 | - foreach ( $form['fields'] as $field ) { |
|
1078 | + foreach ( $form[ 'fields' ] as $field ) { |
|
1079 | 1079 | if ( ! is_a( $field, 'GF_Field' ) ) { |
1080 | 1080 | continue; |
1081 | 1081 | } |
@@ -1120,7 +1120,7 @@ discard block |
||
1120 | 1120 | if ( is_array( $sort_field_id ) ) { |
1121 | 1121 | $modified_ids = array(); |
1122 | 1122 | foreach ( $sort_field_id as $_sort_field_id ) { |
1123 | - $modified_ids []= self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1123 | + $modified_ids [ ] = self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1124 | 1124 | } |
1125 | 1125 | return $modified_ids; |
1126 | 1126 | } |
@@ -1129,11 +1129,11 @@ discard block |
||
1129 | 1129 | |
1130 | 1130 | $sort_field = GFFormsModel::get_field( $form, $sort_field_id ); |
1131 | 1131 | |
1132 | - if( ! $sort_field ) { |
|
1132 | + if ( ! $sort_field ) { |
|
1133 | 1133 | return $sort_field_id; |
1134 | 1134 | } |
1135 | 1135 | |
1136 | - switch ( $sort_field['type'] ) { |
|
1136 | + switch ( $sort_field[ 'type' ] ) { |
|
1137 | 1137 | |
1138 | 1138 | case 'address': |
1139 | 1139 | // Sorting by full address |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | */ |
1151 | 1151 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
1152 | 1152 | |
1153 | - switch( strtolower( $address_part ) ){ |
|
1153 | + switch ( strtolower( $address_part ) ) { |
|
1154 | 1154 | case 'street': |
1155 | 1155 | $sort_field_id .= '.1'; |
1156 | 1156 | break; |
@@ -1230,7 +1230,7 @@ discard block |
||
1230 | 1230 | */ |
1231 | 1231 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
1232 | 1232 | |
1233 | - if ( empty( $single_entry ) ){ |
|
1233 | + if ( empty( $single_entry ) ) { |
|
1234 | 1234 | return false; |
1235 | 1235 | } else { |
1236 | 1236 | return $single_entry; |
@@ -1252,7 +1252,7 @@ discard block |
||
1252 | 1252 | $views = $this->getGvOutputData()->get_views(); |
1253 | 1253 | |
1254 | 1254 | foreach ( $views as $view_id => $data ) { |
1255 | - $view = \GV\View::by_id( $data['id'] ); |
|
1255 | + $view = \GV\View::by_id( $data[ 'id' ] ); |
|
1256 | 1256 | $view_id = $view->ID; |
1257 | 1257 | $template_id = gravityview_get_template_id( $view->ID ); |
1258 | 1258 | $data = $view->as_data(); |
@@ -1261,7 +1261,7 @@ discard block |
||
1261 | 1261 | * Don't enqueue the scripts or styles if it's not going to be displayed. |
1262 | 1262 | * @since 1.15 |
1263 | 1263 | */ |
1264 | - if( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1264 | + if ( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1265 | 1265 | continue; |
1266 | 1266 | } |
1267 | 1267 | |
@@ -1278,13 +1278,13 @@ discard block |
||
1278 | 1278 | * @filter `gravity_view_lightbox_script` Override the lightbox script to enqueue. Default: `thickbox` |
1279 | 1279 | * @param string $script_slug If you want to use a different lightbox script, return the name of it here. |
1280 | 1280 | */ |
1281 | - $js_dependencies[] = apply_filters( 'gravity_view_lightbox_script', 'thickbox' ); |
|
1281 | + $js_dependencies[ ] = apply_filters( 'gravity_view_lightbox_script', 'thickbox' ); |
|
1282 | 1282 | |
1283 | 1283 | /** |
1284 | 1284 | * @filter `gravity_view_lightbox_style` Modify the lightbox CSS slug. Default: `thickbox` |
1285 | 1285 | * @param string $script_slug If you want to use a different lightbox script, return the name of its CSS file here. |
1286 | 1286 | */ |
1287 | - $css_dependencies[] = apply_filters( 'gravity_view_lightbox_style', 'thickbox' ); |
|
1287 | + $css_dependencies[ ] = apply_filters( 'gravity_view_lightbox_style', 'thickbox' ); |
|
1288 | 1288 | } |
1289 | 1289 | |
1290 | 1290 | /** |
@@ -1292,19 +1292,19 @@ discard block |
||
1292 | 1292 | * @see https://github.com/katzwebservices/GravityView/issues/536 |
1293 | 1293 | * @since 1.15 |
1294 | 1294 | */ |
1295 | - if( gravityview_view_has_single_checkbox_or_radio( $data['form'], $data['fields'] ) ) { |
|
1296 | - $css_dependencies[] = 'dashicons'; |
|
1295 | + if ( gravityview_view_has_single_checkbox_or_radio( $data[ 'form' ], $data[ 'fields' ] ) ) { |
|
1296 | + $css_dependencies[ ] = 'dashicons'; |
|
1297 | 1297 | } |
1298 | 1298 | |
1299 | 1299 | wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true ); |
1300 | 1300 | |
1301 | 1301 | $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
1302 | 1302 | |
1303 | - wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ) , GravityView_Plugin::version, true ); |
|
1303 | + wp_register_script( 'gravityview-fe-view', plugins_url( 'assets/js/fe-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), apply_filters( 'gravityview_js_dependencies', $js_dependencies ), GravityView_Plugin::version, true ); |
|
1304 | 1304 | |
1305 | 1305 | wp_enqueue_script( 'gravityview-fe-view' ); |
1306 | 1306 | |
1307 | - if ( ! empty( $data['atts']['sort_columns'] ) ) { |
|
1307 | + if ( ! empty( $data[ 'atts' ][ 'sort_columns' ] ) ) { |
|
1308 | 1308 | wp_enqueue_style( 'gravityview_font', plugins_url( 'assets/css/font.css', GRAVITYVIEW_FILE ), $css_dependencies, GravityView_Plugin::version, 'all' ); |
1309 | 1309 | } |
1310 | 1310 | |
@@ -1367,7 +1367,7 @@ discard block |
||
1367 | 1367 | public static function add_style( $template_id ) { |
1368 | 1368 | |
1369 | 1369 | if ( ! empty( $template_id ) && wp_style_is( 'gravityview_style_' . $template_id, 'registered' ) ) { |
1370 | - gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1370 | + gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1371 | 1371 | wp_enqueue_style( 'gravityview_style_' . $template_id ); |
1372 | 1372 | } elseif ( empty( $template_id ) ) { |
1373 | 1373 | gravityview()->log->error( 'Cannot add template style; template_id is empty' ); |
@@ -1398,11 +1398,11 @@ discard block |
||
1398 | 1398 | * Not a table-based template; don't add sort icons |
1399 | 1399 | * @since 1.12 |
1400 | 1400 | */ |
1401 | - if( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1401 | + if ( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1402 | 1402 | return $label; |
1403 | 1403 | } |
1404 | 1404 | |
1405 | - if ( ! $this->is_field_sortable( $field['id'], $form ) ) { |
|
1405 | + if ( ! $this->is_field_sortable( $field[ 'id' ], $form ) ) { |
|
1406 | 1406 | return $label; |
1407 | 1407 | } |
1408 | 1408 | |
@@ -1410,29 +1410,29 @@ discard block |
||
1410 | 1410 | |
1411 | 1411 | $class = 'gv-sort'; |
1412 | 1412 | |
1413 | - $sort_field_id = self::_override_sorting_id_by_field_type( $field['id'], $form['id'] ); |
|
1413 | + $sort_field_id = self::_override_sorting_id_by_field_type( $field[ 'id' ], $form[ 'id' ] ); |
|
1414 | 1414 | |
1415 | 1415 | $sort_args = array( |
1416 | - 'sort' => $field['id'], |
|
1416 | + 'sort' => $field[ 'id' ], |
|
1417 | 1417 | 'dir' => 'asc', |
1418 | 1418 | ); |
1419 | 1419 | |
1420 | - if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
|
1420 | + if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) { |
|
1421 | 1421 | //toggle sorting direction. |
1422 | - if ( 'asc' === $sorting['direction'] ) { |
|
1423 | - $sort_args['dir'] = 'desc'; |
|
1422 | + if ( 'asc' === $sorting[ 'direction' ] ) { |
|
1423 | + $sort_args[ 'dir' ] = 'desc'; |
|
1424 | 1424 | $class .= ' gv-icon-sort-desc'; |
1425 | 1425 | } else { |
1426 | - $sort_args['dir'] = 'asc'; |
|
1426 | + $sort_args[ 'dir' ] = 'asc'; |
|
1427 | 1427 | $class .= ' gv-icon-sort-asc'; |
1428 | 1428 | } |
1429 | 1429 | } else { |
1430 | 1430 | $class .= ' gv-icon-caret-up-down'; |
1431 | 1431 | } |
1432 | 1432 | |
1433 | - $url = add_query_arg( $sort_args, remove_query_arg( array('pagenum') ) ); |
|
1433 | + $url = add_query_arg( $sort_args, remove_query_arg( array( 'pagenum' ) ) ); |
|
1434 | 1434 | |
1435 | - return '<a href="'. esc_url_raw( $url ) .'" class="'. $class .'" ></a> '. $label; |
|
1435 | + return '<a href="' . esc_url_raw( $url ) . '" class="' . $class . '" ></a> ' . $label; |
|
1436 | 1436 | |
1437 | 1437 | } |
1438 | 1438 | |
@@ -1450,7 +1450,7 @@ discard block |
||
1450 | 1450 | |
1451 | 1451 | $field_type = $field_id; |
1452 | 1452 | |
1453 | - if( is_numeric( $field_id ) ) { |
|
1453 | + if ( is_numeric( $field_id ) ) { |
|
1454 | 1454 | $field = GFFormsModel::get_field( $form, $field_id ); |
1455 | 1455 | $field_type = $field ? $field->type : $field_id; |
1456 | 1456 | } |
@@ -1473,7 +1473,7 @@ discard block |
||
1473 | 1473 | return false; |
1474 | 1474 | } |
1475 | 1475 | |
1476 | - return apply_filters( "gravityview/sortable/formfield_{$form['id']}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1476 | + return apply_filters( "gravityview/sortable/formfield_{$form[ 'id' ]}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1477 | 1477 | |
1478 | 1478 | } |
1479 | 1479 |
@@ -24,16 +24,16 @@ discard block |
||
24 | 24 | |
25 | 25 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
26 | 26 | |
27 | - unset( $field_options['search_filter'] ); |
|
27 | + unset( $field_options[ 'search_filter' ] ); |
|
28 | 28 | |
29 | - if( 'edit' === $context ) { |
|
29 | + if ( 'edit' === $context ) { |
|
30 | 30 | return $field_options; |
31 | 31 | } |
32 | 32 | |
33 | - $add_options['link_to_file'] = array( |
|
33 | + $add_options[ 'link_to_file' ] = array( |
|
34 | 34 | 'type' => 'checkbox', |
35 | 35 | 'label' => __( 'Display as a Link:', 'gravityview' ), |
36 | - 'desc' => __('Display the uploaded files as links, rather than embedded content.', 'gravityview'), |
|
36 | + 'desc' => __( 'Display the uploaded files as links, rather than embedded content.', 'gravityview' ), |
|
37 | 37 | 'value' => false, |
38 | 38 | 'merge_tags' => false, |
39 | 39 | ); |
@@ -119,14 +119,14 @@ discard block |
||
119 | 119 | $base_id = null; |
120 | 120 | |
121 | 121 | $is_single = gravityview_get_context() === 'single'; |
122 | - $lightbox = ! empty( $gravityview_view->atts['lightbox'] ); |
|
122 | + $lightbox = ! empty( $gravityview_view->atts[ 'lightbox' ] ); |
|
123 | 123 | $field_compat = $gravityview_view->getCurrentField(); |
124 | 124 | } |
125 | 125 | |
126 | 126 | $output_arr = array(); |
127 | 127 | |
128 | 128 | // Get an array of file paths for the field. |
129 | - $file_paths = \GV\Utils::get( $field , 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
129 | + $file_paths = \GV\Utils::get( $field, 'multipleFiles' ) ? json_decode( $value ) : array( $value ); |
|
130 | 130 | |
131 | 131 | // The $value JSON was probably truncated; let's check lead_detail_long. |
132 | 132 | if ( ! is_array( $file_paths ) ) { |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $rendered = null; |
146 | 146 | |
147 | 147 | // If the site is HTTPS, use HTTPS |
148 | - if ( function_exists('set_url_scheme') ) { |
|
148 | + if ( function_exists( 'set_url_scheme' ) ) { |
|
149 | 149 | $file_path = set_url_scheme( $file_path ); |
150 | 150 | } |
151 | 151 | |
@@ -156,8 +156,8 @@ discard block |
||
156 | 156 | $file_path_info = pathinfo( $file_path ); |
157 | 157 | |
158 | 158 | // If pathinfo() gave us the extension of the file, run the switch statement using that. |
159 | - $extension = empty( $file_path_info['extension'] ) ? NULL : strtolower( $file_path_info['extension'] ); |
|
160 | - $basename = $file_path_info['basename']; |
|
159 | + $extension = empty( $file_path_info[ 'extension' ] ) ? NULL : strtolower( $file_path_info[ 'extension' ] ); |
|
160 | + $basename = $file_path_info[ 'basename' ]; |
|
161 | 161 | |
162 | 162 | // Get the secure download URL |
163 | 163 | $is_secure = false; |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | */ |
195 | 195 | $audio_settings = apply_filters( 'gravityview_audio_settings', array( |
196 | 196 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
197 | - 'class' => 'wp-audio-shortcode gv-audio gv-field-id-'.$field_settings['id'] |
|
197 | + 'class' => 'wp-audio-shortcode gv-audio gv-field-id-' . $field_settings[ 'id' ] |
|
198 | 198 | ), $context ); |
199 | 199 | |
200 | 200 | /** |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | */ |
231 | 231 | $video_settings = apply_filters( 'gravityview_video_settings', array( |
232 | 232 | 'src' => $insecure_file_path, // Needs to be insecure path so WP can parse extension |
233 | - 'class' => 'wp-video-shortcode gv-video gv-field-id-'.$field_settings['id'] |
|
233 | + 'class' => 'wp-video-shortcode gv-video gv-field-id-' . $field_settings[ 'id' ] |
|
234 | 234 | ), $context ); |
235 | 235 | |
236 | 236 | /** |
@@ -262,13 +262,13 @@ discard block |
||
262 | 262 | } else if ( in_array( $extension, array( 'jpg', 'jpeg', 'jpe', 'gif', 'png' ) ) ) { |
263 | 263 | $image_atts = array( |
264 | 264 | 'src' => $file_path, |
265 | - 'class' => 'gv-image gv-field-id-' . $field_settings['id'], |
|
266 | - 'alt' => $field_settings['label'], |
|
265 | + 'class' => 'gv-image gv-field-id-' . $field_settings[ 'id' ], |
|
266 | + 'alt' => $field_settings[ 'label' ], |
|
267 | 267 | 'width' => ( $is_single ? null : 250 ) |
268 | 268 | ); |
269 | 269 | |
270 | 270 | if ( $is_secure ) { |
271 | - $image_atts['validate_src'] = false; |
|
271 | + $image_atts[ 'validate_src' ] = false; |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | |
284 | 284 | $image = new GravityView_Image( $image_atts ); |
285 | 285 | |
286 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
286 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
287 | 287 | |
288 | 288 | /** |
289 | 289 | * @filter `gravityview/fields/fileupload/allow_insecure_lightbox` Allow insecure links to be shown for the lighbox. |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | */ |
295 | 295 | $override_security = apply_filters( 'gravityview/fields/fileupload/allow_insecure_lightbox', false, $file_path, $field_settings, $context ); |
296 | 296 | |
297 | - if ( $lightbox && empty( $field_settings['show_as_link'] ) && ( ! $is_secure || $override_security ) ) { |
|
297 | + if ( $lightbox && empty( $field_settings[ 'show_as_link' ] ) && ( ! $is_secure || $override_security ) ) { |
|
298 | 298 | $lightbox_link_atts = array( |
299 | 299 | 'rel' => sprintf( "%s-%s", $gv_class, $entry_slug ), |
300 | 300 | 'class' => 'thickbox', |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | $lightbox_link_atts = apply_filters( 'gravityview/fields/fileupload/link_atts', $lightbox_link_atts, $field_compat, $context ); |
304 | 304 | |
305 | 305 | if ( $override_security ) { |
306 | - $image_atts['src'] = $insecure_file_path; |
|
306 | + $image_atts[ 'src' ] = $insecure_file_path; |
|
307 | 307 | $image = new GravityView_Image( $image_atts ); |
308 | 308 | $file_path = $insecure_file_path; |
309 | 309 | // :( a kitten died somewhere |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | } |
316 | 316 | |
317 | 317 | // Show as link should render the image regardless. |
318 | - if ( ! empty( $field_settings['show_as_link'] ) ) { |
|
318 | + if ( ! empty( $field_settings[ 'show_as_link' ] ) ) { |
|
319 | 319 | $text = $rendered; |
320 | 320 | } |
321 | 321 | } |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | $disable_wrapped_link = apply_filters( 'gravityview/fields/fileupload/disable_link', false, $field_compat, $context ); |
333 | 333 | |
334 | 334 | // Output textualized content where |
335 | - if ( ! $disable_wrapped_link && ( ! empty( $field_settings['link_to_file'] ) || ! empty( $field_settings['show_as_link'] ) ) ) { |
|
335 | + if ( ! $disable_wrapped_link && ( ! empty( $field_settings[ 'link_to_file' ] ) || ! empty( $field_settings[ 'show_as_link' ] ) ) ) { |
|
336 | 336 | /** |
337 | 337 | * Modify the link text (defaults to the file name) |
338 | 338 | * |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | */ |
346 | 346 | $content = apply_filters( 'gravityview/fields/fileupload/link_content', $text, $field_compat, $context ); |
347 | 347 | |
348 | - if ( empty( $field_settings['show_as_link'] ) ) { |
|
348 | + if ( empty( $field_settings[ 'show_as_link' ] ) ) { |
|
349 | 349 | /** |
350 | 350 | * @filter `gravityview/fields/fileupload/link_atts` Modify the link attributes for a file upload field |
351 | 351 | * @param array|string $link_atts Array or attributes string |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | $content = empty( $rendered ) ? $text : $rendered; |
362 | 362 | } |
363 | 363 | |
364 | - $output_arr[] = array( |
|
364 | + $output_arr[ ] = array( |
|
365 | 365 | 'file_path' => $file_path, |
366 | 366 | 'content' => $content |
367 | 367 | ); |
@@ -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 | } |
@@ -67,14 +67,14 @@ discard block |
||
67 | 67 | //check nonce |
68 | 68 | $this->check_ajax_nonce(); |
69 | 69 | |
70 | - $context = isset($_POST['context']) ? esc_attr( $_POST['context'] ) : 'directory'; |
|
70 | + $context = isset( $_POST[ 'context' ] ) ? esc_attr( $_POST[ 'context' ] ) : 'directory'; |
|
71 | 71 | |
72 | 72 | // If Form was changed, JS sends form ID, if start fresh, JS sends template_id |
73 | - if( !empty( $_POST['form_id'] ) ) { |
|
74 | - do_action( 'gravityview_render_available_fields', (int) $_POST['form_id'], $context ); |
|
73 | + if ( ! empty( $_POST[ 'form_id' ] ) ) { |
|
74 | + do_action( 'gravityview_render_available_fields', (int)$_POST[ 'form_id' ], $context ); |
|
75 | 75 | $this->_exit(); |
76 | - } elseif( !empty( $_POST['template_id'] ) ) { |
|
77 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
76 | + } elseif ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
77 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
78 | 78 | |
79 | 79 | /** @see GravityView_Admin_Views::render_available_fields */ |
80 | 80 | do_action( 'gravityview_render_available_fields', $form, $context ); |
@@ -96,17 +96,17 @@ discard block |
||
96 | 96 | function get_active_areas() { |
97 | 97 | $this->check_ajax_nonce(); |
98 | 98 | |
99 | - if( empty( $_POST['template_id'] ) ) { |
|
99 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
100 | 100 | $this->_exit( false ); |
101 | 101 | } |
102 | 102 | |
103 | 103 | ob_start(); |
104 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'directory', '', true ); |
|
105 | - $response['directory'] = ob_get_clean(); |
|
104 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'directory', '', true ); |
|
105 | + $response[ 'directory' ] = ob_get_clean(); |
|
106 | 106 | |
107 | 107 | ob_start(); |
108 | - do_action( 'gravityview_render_directory_active_areas', $_POST['template_id'], 'single', '', true ); |
|
109 | - $response['single'] = ob_get_clean(); |
|
108 | + do_action( 'gravityview_render_directory_active_areas', $_POST[ 'template_id' ], 'single', '', true ); |
|
109 | + $response[ 'single' ] = ob_get_clean(); |
|
110 | 110 | |
111 | 111 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
112 | 112 | |
@@ -121,20 +121,20 @@ discard block |
||
121 | 121 | |
122 | 122 | $this->check_ajax_nonce(); |
123 | 123 | |
124 | - if( empty( $_POST['template_id'] ) ) { |
|
124 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
125 | 125 | $this->_exit( false ); |
126 | 126 | } |
127 | 127 | |
128 | 128 | // get the fields xml config file for this specific preset |
129 | - $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST['template_id'] ); |
|
129 | + $preset_fields_path = apply_filters( 'gravityview_template_fieldsxml', array(), $_POST[ 'template_id' ] ); |
|
130 | 130 | // import fields |
131 | - if( !empty( $preset_fields_path ) ) { |
|
131 | + if ( ! empty( $preset_fields_path ) ) { |
|
132 | 132 | $presets = $this->import_fields( $preset_fields_path ); |
133 | 133 | } else { |
134 | 134 | $presets = array( 'widgets' => array(), 'fields' => array() ); |
135 | 135 | } |
136 | 136 | |
137 | - $template_id = esc_attr( $_POST['template_id'] ); |
|
137 | + $template_id = esc_attr( $_POST[ 'template_id' ] ); |
|
138 | 138 | |
139 | 139 | // template areas |
140 | 140 | $template_areas_directory = apply_filters( 'gravityview_template_active_areas', array(), $template_id, 'directory' ); |
@@ -144,20 +144,20 @@ discard block |
||
144 | 144 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
145 | 145 | |
146 | 146 | ob_start(); |
147 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets['widgets'] ); |
|
148 | - $response['header'] = ob_get_clean(); |
|
147 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'header', $default_widget_areas, $presets[ 'widgets' ] ); |
|
148 | + $response[ 'header' ] = ob_get_clean(); |
|
149 | 149 | |
150 | 150 | ob_start(); |
151 | - do_action('gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets['widgets'] ); |
|
152 | - $response['footer'] = ob_get_clean(); |
|
151 | + do_action( 'gravityview_render_active_areas', $template_id, 'widget', 'footer', $default_widget_areas, $presets[ 'widgets' ] ); |
|
152 | + $response[ 'footer' ] = ob_get_clean(); |
|
153 | 153 | |
154 | 154 | ob_start(); |
155 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets['fields'] ); |
|
156 | - $response['directory'] = ob_get_clean(); |
|
155 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'directory', $template_areas_directory, $presets[ 'fields' ] ); |
|
156 | + $response[ 'directory' ] = ob_get_clean(); |
|
157 | 157 | |
158 | 158 | ob_start(); |
159 | - do_action('gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets['fields'] ); |
|
160 | - $response['single'] = ob_get_clean(); |
|
159 | + do_action( 'gravityview_render_active_areas', $template_id, 'field', 'single', $template_areas_single, $presets[ 'fields' ] ); |
|
160 | + $response[ 'single' ] = ob_get_clean(); |
|
161 | 161 | |
162 | 162 | $response = array_map( 'gravityview_strip_whitespace', $response ); |
163 | 163 | |
@@ -175,26 +175,26 @@ discard block |
||
175 | 175 | |
176 | 176 | $this->check_ajax_nonce(); |
177 | 177 | |
178 | - if( empty( $_POST['template_id'] ) ) { |
|
178 | + if ( empty( $_POST[ 'template_id' ] ) ) { |
|
179 | 179 | gravityview()->log->error( 'Cannot create preset form; the template_id is empty.' ); |
180 | 180 | $this->_exit( false ); |
181 | 181 | } |
182 | 182 | |
183 | 183 | // get the xml for this specific template_id |
184 | - $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST['template_id'] ); |
|
184 | + $preset_form_xml_path = apply_filters( 'gravityview_template_formxml', '', $_POST[ 'template_id' ] ); |
|
185 | 185 | |
186 | 186 | // import form |
187 | 187 | $form = $this->import_form( $preset_form_xml_path ); |
188 | 188 | |
189 | 189 | // get the form ID |
190 | - if( false === $form ) { |
|
190 | + if ( false === $form ) { |
|
191 | 191 | // send error to user |
192 | - gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int) $_POST['template_id'] ) ); |
|
192 | + gravityview()->log->error( 'Error importing form for template id: {template_id}', array( 'template_id' => (int)$_POST[ 'template_id' ] ) ); |
|
193 | 193 | |
194 | 194 | $this->_exit( false ); |
195 | 195 | } |
196 | 196 | |
197 | - $this->_exit( '<option value="'.esc_attr( $form['id'] ).'" selected="selected">'.esc_html( $form['title'] ).'</option>' ); |
|
197 | + $this->_exit( '<option value="' . esc_attr( $form[ 'id' ] ) . '" selected="selected">' . esc_html( $form[ 'title' ] ) . '</option>' ); |
|
198 | 198 | |
199 | 199 | } |
200 | 200 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | |
209 | 209 | gravityview()->log->debug( '[import_form] Import Preset Form. (File) {path}', array( 'path' => $xml_or_json_path ) ); |
210 | 210 | |
211 | - if( empty( $xml_or_json_path ) || !class_exists('GFExport') || !file_exists( $xml_or_json_path ) ) { |
|
211 | + if ( empty( $xml_or_json_path ) || ! class_exists( 'GFExport' ) || ! file_exists( $xml_or_json_path ) ) { |
|
212 | 212 | gravityview()->log->error( 'Class GFExport or file not found. file: {path}', array( 'path' => $xml_or_json_path ) ); |
213 | 213 | return false; |
214 | 214 | } |
@@ -220,13 +220,13 @@ discard block |
||
220 | 220 | gravityview()->log->debug( '[import_form] Importing form (Result) {count}', array( 'count' => $count ) ); |
221 | 221 | gravityview()->log->debug( '[import_form] Importing form (Form) ', array( 'data' => $forms ) ); |
222 | 222 | |
223 | - if( $count != 1 || empty( $forms[0]['id'] ) ) { |
|
223 | + if ( $count != 1 || empty( $forms[ 0 ][ 'id' ] ) ) { |
|
224 | 224 | gravityview()->log->error( 'Form Import Failed!' ); |
225 | 225 | return false; |
226 | 226 | } |
227 | 227 | |
228 | 228 | // import success - return form id |
229 | - return $forms[0]; |
|
229 | + return $forms[ 0 ]; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | function get_field_options() { |
241 | 241 | $this->check_ajax_nonce(); |
242 | 242 | |
243 | - if( empty( $_POST['template'] ) || empty( $_POST['area'] ) || empty( $_POST['field_id'] ) || empty( $_POST['field_type'] ) ) { |
|
243 | + if ( empty( $_POST[ 'template' ] ) || empty( $_POST[ 'area' ] ) || empty( $_POST[ 'field_id' ] ) || empty( $_POST[ 'field_type' ] ) ) { |
|
244 | 244 | gravityview()->log->error( 'Required fields were not set in the $_POST request. ' ); |
245 | 245 | $this->_exit( false ); |
246 | 246 | } |
@@ -252,11 +252,11 @@ discard block |
||
252 | 252 | $_post = array_map( 'esc_attr', $_post ); |
253 | 253 | |
254 | 254 | // The GF type of field: `product`, `name`, `creditcard`, `id`, `text` |
255 | - $input_type = isset($_post['input_type']) ? esc_attr( $_post['input_type'] ) : NULL; |
|
256 | - $context = isset($_post['context']) ? esc_attr( $_post['context'] ) : NULL; |
|
255 | + $input_type = isset( $_post[ 'input_type' ] ) ? esc_attr( $_post[ 'input_type' ] ) : NULL; |
|
256 | + $context = isset( $_post[ 'context' ] ) ? esc_attr( $_post[ 'context' ] ) : NULL; |
|
257 | 257 | |
258 | - $form_id = empty( $_post['form_id'] ) ? null : $_post['form_id']; |
|
259 | - $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 ); |
|
258 | + $form_id = empty( $_post[ 'form_id' ] ) ? null : $_post[ 'form_id' ]; |
|
259 | + $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 ); |
|
260 | 260 | |
261 | 261 | $response = gravityview_strip_whitespace( $response ); |
262 | 262 | |
@@ -277,15 +277,15 @@ discard block |
||
277 | 277 | $form = ''; |
278 | 278 | |
279 | 279 | // if form id is set, use it, else, get form from preset |
280 | - if( !empty( $_POST['form_id'] ) ) { |
|
280 | + if ( ! empty( $_POST[ 'form_id' ] ) ) { |
|
281 | 281 | |
282 | - $form = (int) $_POST['form_id']; |
|
282 | + $form = (int)$_POST[ 'form_id' ]; |
|
283 | 283 | |
284 | 284 | } |
285 | 285 | // get form from preset |
286 | - elseif( !empty( $_POST['template_id'] ) ) { |
|
286 | + elseif ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
287 | 287 | |
288 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
288 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
289 | 289 | |
290 | 290 | } |
291 | 291 | |
@@ -301,27 +301,27 @@ discard block |
||
301 | 301 | * @param string $template_id Preset template |
302 | 302 | * |
303 | 303 | */ |
304 | - static function pre_get_form_fields( $template_id = '') { |
|
304 | + static function pre_get_form_fields( $template_id = '' ) { |
|
305 | 305 | |
306 | - if( empty( $template_id ) ) { |
|
306 | + if ( empty( $template_id ) ) { |
|
307 | 307 | gravityview()->log->error( 'Template ID not set.' ); |
308 | 308 | return false; |
309 | 309 | } else { |
310 | 310 | $form_file = apply_filters( 'gravityview_template_formxml', '', $template_id ); |
311 | - if( !file_exists( $form_file ) ) { |
|
311 | + if ( ! file_exists( $form_file ) ) { |
|
312 | 312 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. File not found. file: {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
313 | 313 | return false; |
314 | 314 | } |
315 | 315 | } |
316 | 316 | |
317 | 317 | // Load xml parser (from GravityForms) |
318 | - if( class_exists( 'GFCommon' ) ) { |
|
318 | + if ( class_exists( 'GFCommon' ) ) { |
|
319 | 319 | $xml_parser = GFCommon::get_base_path() . '/xml.php'; |
320 | 320 | } else { |
321 | 321 | $xml_parser = trailingslashit( WP_PLUGIN_DIR ) . 'gravityforms/xml.php'; |
322 | 322 | } |
323 | 323 | |
324 | - if( file_exists( $xml_parser ) ) { |
|
324 | + if ( file_exists( $xml_parser ) ) { |
|
325 | 325 | require_once( $xml_parser ); |
326 | 326 | } else { |
327 | 327 | gravityview()->log->debug( ' - Gravity Forms XML Parser not found {path}.', array( 'path' => $xml_parser ) ); |
@@ -332,32 +332,32 @@ discard block |
||
332 | 332 | $xmlstr = file_get_contents( $form_file ); |
333 | 333 | |
334 | 334 | $options = array( |
335 | - "page" => array("unserialize_as_array" => true), |
|
336 | - "form"=> array("unserialize_as_array" => true), |
|
337 | - "field"=> array("unserialize_as_array" => true), |
|
338 | - "rule"=> array("unserialize_as_array" => true), |
|
339 | - "choice"=> array("unserialize_as_array" => true), |
|
340 | - "input"=> array("unserialize_as_array" => true), |
|
341 | - "routing_item"=> array("unserialize_as_array" => true), |
|
342 | - "creditCard"=> array("unserialize_as_array" => true), |
|
343 | - "routin"=> array("unserialize_as_array" => true), |
|
344 | - "confirmation" => array("unserialize_as_array" => true), |
|
345 | - "notification" => array("unserialize_as_array" => true) |
|
335 | + "page" => array( "unserialize_as_array" => true ), |
|
336 | + "form"=> array( "unserialize_as_array" => true ), |
|
337 | + "field"=> array( "unserialize_as_array" => true ), |
|
338 | + "rule"=> array( "unserialize_as_array" => true ), |
|
339 | + "choice"=> array( "unserialize_as_array" => true ), |
|
340 | + "input"=> array( "unserialize_as_array" => true ), |
|
341 | + "routing_item"=> array( "unserialize_as_array" => true ), |
|
342 | + "creditCard"=> array( "unserialize_as_array" => true ), |
|
343 | + "routin"=> array( "unserialize_as_array" => true ), |
|
344 | + "confirmation" => array( "unserialize_as_array" => true ), |
|
345 | + "notification" => array( "unserialize_as_array" => true ) |
|
346 | 346 | ); |
347 | 347 | |
348 | - $xml = new RGXML($options); |
|
349 | - $forms = $xml->unserialize($xmlstr); |
|
348 | + $xml = new RGXML( $options ); |
|
349 | + $forms = $xml->unserialize( $xmlstr ); |
|
350 | 350 | |
351 | - if( !$forms ) { |
|
351 | + if ( ! $forms ) { |
|
352 | 352 | gravityview()->log->error( 'Importing Form Fields for preset [{template_id}]. Error importing file. (File) {path}', array( 'template_id' => $template_id, 'path' => $form_file ) ); |
353 | 353 | return false; |
354 | 354 | } |
355 | 355 | |
356 | - if( !empty( $forms[0] ) && is_array( $forms[0] ) ) { |
|
357 | - $form = $forms[0]; |
|
356 | + if ( ! empty( $forms[ 0 ] ) && is_array( $forms[ 0 ] ) ) { |
|
357 | + $form = $forms[ 0 ]; |
|
358 | 358 | } |
359 | 359 | |
360 | - if( empty( $form ) ) { |
|
360 | + if ( empty( $form ) ) { |
|
361 | 361 | gravityview()->log->error( '$form not set.', array( 'data' => $forms ) ); |
362 | 362 | return false; |
363 | 363 | } |
@@ -376,38 +376,38 @@ discard block |
||
376 | 376 | */ |
377 | 377 | function import_fields( $file ) { |
378 | 378 | |
379 | - if( empty( $file ) || !file_exists( $file ) ) { |
|
379 | + if ( empty( $file ) || ! file_exists( $file ) ) { |
|
380 | 380 | gravityview()->log->error( 'Importing Preset Fields. File not found. (File) {path}', array( 'path' => $file ) ); |
381 | 381 | return false; |
382 | 382 | } |
383 | 383 | |
384 | - if( !class_exists('WXR_Parser') ) { |
|
384 | + if ( ! class_exists( 'WXR_Parser' ) ) { |
|
385 | 385 | include_once GRAVITYVIEW_DIR . 'includes/lib/xml-parsers/parsers.php'; |
386 | 386 | } |
387 | 387 | |
388 | 388 | $parser = new WXR_Parser(); |
389 | 389 | $presets = $parser->parse( $file ); |
390 | 390 | |
391 | - if(is_wp_error( $presets )) { |
|
391 | + if ( is_wp_error( $presets ) ) { |
|
392 | 392 | gravityview()->log->error( 'Importing Preset Fields failed. Threw WP_Error.', array( 'data' => $presets ) ); |
393 | 393 | return false; |
394 | 394 | } |
395 | 395 | |
396 | - if( empty( $presets['posts'][0]['postmeta'] ) && !is_array( $presets['posts'][0]['postmeta'] ) ) { |
|
396 | + if ( empty( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) && ! is_array( $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ) { |
|
397 | 397 | gravityview()->log->error( 'Importing Preset Fields failed. Meta not found in file. {path}', array( 'path' => $file ) ); |
398 | 398 | return false; |
399 | 399 | } |
400 | 400 | |
401 | - gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets['posts'][0]['postmeta'] ) ); |
|
401 | + gravityview()->log->debug( '[import_fields] postmeta', array( 'data' => $presets[ 'posts' ][ 0 ][ 'postmeta' ] ) ); |
|
402 | 402 | |
403 | 403 | $fields = $widgets = array(); |
404 | - foreach( $presets['posts'][0]['postmeta'] as $meta ) { |
|
405 | - switch ($meta['key']) { |
|
404 | + foreach ( $presets[ 'posts' ][ 0 ][ 'postmeta' ] as $meta ) { |
|
405 | + switch ( $meta[ 'key' ] ) { |
|
406 | 406 | case '_gravityview_directory_fields': |
407 | - $fields = maybe_unserialize( $meta['value'] ); |
|
407 | + $fields = maybe_unserialize( $meta[ 'value' ] ); |
|
408 | 408 | break; |
409 | 409 | case '_gravityview_directory_widgets': |
410 | - $widgets = maybe_unserialize( $meta['value'] ); |
|
410 | + $widgets = maybe_unserialize( $meta[ 'value' ] ); |
|
411 | 411 | break; |
412 | 412 | } |
413 | 413 | } |
@@ -27,32 +27,32 @@ discard block |
||
27 | 27 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'default_field_blacklist' ), 10, 2 ); |
28 | 28 | |
29 | 29 | // Tooltips |
30 | - add_filter( 'gform_tooltips', array( $this, 'tooltips') ); |
|
30 | + add_filter( 'gform_tooltips', array( $this, 'tooltips' ) ); |
|
31 | 31 | |
32 | 32 | // adding styles and scripts |
33 | - add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles'), 999 ); |
|
34 | - add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
35 | - add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
36 | - add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict') ); |
|
37 | - add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict') ); |
|
38 | - |
|
39 | - add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas'), 10, 4 ); |
|
40 | - add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas'), 10, 3 ); |
|
41 | - add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers') ); |
|
42 | - add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields'), 10, 2 ); |
|
43 | - add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets') ); |
|
44 | - add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas'), 10, 5 ); |
|
33 | + add_action( 'admin_enqueue_scripts', array( 'GravityView_Admin_Views', 'add_scripts_and_styles' ), 999 ); |
|
34 | + add_filter( 'gform_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
35 | + add_filter( 'gform_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
36 | + add_filter( 'gravityview_noconflict_styles', array( $this, 'register_no_conflict' ) ); |
|
37 | + add_filter( 'gravityview_noconflict_scripts', array( $this, 'register_no_conflict' ) ); |
|
38 | + |
|
39 | + add_action( 'gravityview_render_directory_active_areas', array( $this, 'render_directory_active_areas' ), 10, 4 ); |
|
40 | + add_action( 'gravityview_render_widgets_active_areas', array( $this, 'render_widgets_active_areas' ), 10, 3 ); |
|
41 | + add_action( 'gravityview_render_field_pickers', array( $this, 'render_field_pickers' ) ); |
|
42 | + add_action( 'gravityview_render_available_fields', array( $this, 'render_available_fields' ), 10, 2 ); |
|
43 | + add_action( 'gravityview_render_available_widgets', array( $this, 'render_available_widgets' ) ); |
|
44 | + add_action( 'gravityview_render_active_areas', array( $this, 'render_active_areas' ), 10, 5 ); |
|
45 | 45 | |
46 | 46 | // @todo check if this hook is needed.. |
47 | 47 | //add_action( 'gravityview_render_field_options', array( $this, 'render_field_options'), 10, 9 ); |
48 | 48 | |
49 | 49 | // Add Connected Form column |
50 | - add_filter('manage_gravityview_posts_columns' , array( $this, 'add_post_type_columns' ) ); |
|
50 | + add_filter( 'manage_gravityview_posts_columns', array( $this, 'add_post_type_columns' ) ); |
|
51 | 51 | |
52 | 52 | add_filter( 'gform_toolbar_menu', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 ); |
53 | 53 | add_action( 'gform_form_actions', array( 'GravityView_Admin_Views', 'gform_toolbar_menu' ), 10, 2 ); |
54 | 54 | |
55 | - add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content'), 10, 2 ); |
|
55 | + add_action( 'manage_gravityview_posts_custom_column', array( $this, 'add_custom_column_content' ), 10, 2 ); |
|
56 | 56 | |
57 | 57 | add_action( 'restrict_manage_posts', array( $this, 'add_view_dropdown' ) ); |
58 | 58 | |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | */ |
72 | 72 | function suggest_support_articles( $localization_data = array() ) { |
73 | 73 | |
74 | - if( ! gravityview()->request->is_view() ) { |
|
74 | + if ( ! gravityview()->request->is_view() ) { |
|
75 | 75 | return $localization_data; |
76 | 76 | } |
77 | 77 | |
78 | - $localization_data['suggest'] = array( |
|
78 | + $localization_data[ 'suggest' ] = array( |
|
79 | 79 | '57ef23539033602e61d4a560', |
80 | 80 | '54c67bb9e4b0512429885513', |
81 | 81 | '54c67bb9e4b0512429885512', |
@@ -96,13 +96,13 @@ discard block |
||
96 | 96 | public function filter_pre_get_posts_by_gravityview_form_id( &$query ) { |
97 | 97 | global $pagenow; |
98 | 98 | |
99 | - if ( !is_admin() ) { |
|
99 | + if ( ! is_admin() ) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | - $form_id = isset( $_GET['gravityview_form_id'] ) ? (int) $_GET['gravityview_form_id'] : false; |
|
103 | + $form_id = isset( $_GET[ 'gravityview_form_id' ] ) ? (int)$_GET[ 'gravityview_form_id' ] : false; |
|
104 | 104 | |
105 | - if( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
105 | + if ( 'edit.php' !== $pagenow || ! $form_id || ! isset( $query->query_vars[ 'post_type' ] ) ) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
@@ -119,18 +119,18 @@ discard block |
||
119 | 119 | function add_view_dropdown() { |
120 | 120 | $current_screen = get_current_screen(); |
121 | 121 | |
122 | - if( 'gravityview' !== $current_screen->post_type ) { |
|
122 | + if ( 'gravityview' !== $current_screen->post_type ) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | 126 | $forms = gravityview_get_forms(); |
127 | 127 | $current_form = \GV\Utils::_GET( 'gravityview_form_id' ); |
128 | 128 | // If there are no forms to select, show no forms. |
129 | - if( !empty( $forms ) ) { ?> |
|
129 | + if ( ! empty( $forms ) ) { ?> |
|
130 | 130 | <select name="gravityview_form_id" id="gravityview_form_id"> |
131 | 131 | <option value="" <?php selected( '', $current_form, true ); ?>><?php esc_html_e( 'All forms', 'gravityview' ); ?></option> |
132 | - <?php foreach( $forms as $form ) { ?> |
|
133 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
132 | + <?php foreach ( $forms as $form ) { ?> |
|
133 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
134 | 134 | <?php } ?> |
135 | 135 | </select> |
136 | 136 | <?php } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | */ |
144 | 144 | public static function render_setting_row( $key = '', $current_settings = array(), $override_input = null, $name = 'template_settings[%s]', $id = 'gravityview_se_%s' ) { |
145 | 145 | _deprecated_function( 'GravityView_Admin_Views::render_setting_row', '1.1.7', 'GravityView_Render_Settings::render_setting_row' ); |
146 | - GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name , $id ); |
|
146 | + GravityView_Render_Settings::render_setting_row( $key, $current_settings, $override_input, $name, $id ); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -168,13 +168,13 @@ discard block |
||
168 | 168 | |
169 | 169 | $priority = 0; |
170 | 170 | |
171 | - if( 'form_list' === GFForms::get_page() ) { |
|
171 | + if ( 'form_list' === GFForms::get_page() ) { |
|
172 | 172 | $priority = 790; |
173 | 173 | } |
174 | 174 | |
175 | - if( empty( $connected_views ) ) { |
|
175 | + if ( empty( $connected_views ) ) { |
|
176 | 176 | |
177 | - $menu_items['gravityview'] = array( |
|
177 | + $menu_items[ 'gravityview' ] = array( |
|
178 | 178 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
179 | 179 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
180 | 180 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -190,22 +190,22 @@ discard block |
||
190 | 190 | $sub_menu_items = array(); |
191 | 191 | foreach ( (array)$connected_views as $view ) { |
192 | 192 | |
193 | - if( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
193 | + if ( ! GVCommon::has_cap( 'edit_gravityview', $view->ID ) ) { |
|
194 | 194 | continue; |
195 | 195 | } |
196 | 196 | |
197 | - $label = empty( $view->post_title ) ? sprintf( __('No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
197 | + $label = empty( $view->post_title ) ? sprintf( __( 'No Title (View #%d)', 'gravityview' ), $view->ID ) : $view->post_title; |
|
198 | 198 | |
199 | - $sub_menu_items[] = array( |
|
199 | + $sub_menu_items[ ] = array( |
|
200 | 200 | 'label' => esc_attr( $label ), |
201 | - 'url' => admin_url( 'post.php?action=edit&post='.$view->ID ), |
|
201 | + 'url' => admin_url( 'post.php?action=edit&post=' . $view->ID ), |
|
202 | 202 | ); |
203 | 203 | } |
204 | 204 | |
205 | 205 | // If there were no items added, then let's create the parent menu |
206 | - if( $sub_menu_items ) { |
|
206 | + if ( $sub_menu_items ) { |
|
207 | 207 | |
208 | - $sub_menu_items[] = array( |
|
208 | + $sub_menu_items[ ] = array( |
|
209 | 209 | 'label' => esc_attr__( 'Create a View', 'gravityview' ), |
210 | 210 | 'link_class' => 'gv-create-view', |
211 | 211 | 'title' => esc_attr__( 'Create a View using this form as a data source', 'gravityview' ), |
@@ -214,14 +214,14 @@ discard block |
||
214 | 214 | ); |
215 | 215 | |
216 | 216 | // Make sure Gravity Forms uses the submenu; if there's only one item, it uses a link instead of a dropdown |
217 | - $sub_menu_items[] = array( |
|
217 | + $sub_menu_items[ ] = array( |
|
218 | 218 | 'url' => '#', |
219 | 219 | 'label' => '', |
220 | 220 | 'menu_class' => 'hidden', |
221 | 221 | 'capabilities' => '', |
222 | 222 | ); |
223 | 223 | |
224 | - $menu_items['gravityview'] = array( |
|
224 | + $menu_items[ 'gravityview' ] = array( |
|
225 | 225 | 'label' => __( 'Connected Views', 'gravityview' ), |
226 | 226 | 'icon' => '<i class="fa fa-lg gv-icon-astronaut-head gv-icon"></i>', |
227 | 227 | 'title' => __( 'GravityView Views using this form as a data source', 'gravityview' ), |
@@ -250,8 +250,8 @@ discard block |
||
250 | 250 | $add = array( 'captcha', 'page' ); |
251 | 251 | |
252 | 252 | // Don't allowing editing the following values: |
253 | - if( $context === 'edit' ) { |
|
254 | - $add[] = 'post_id'; |
|
253 | + if ( $context === 'edit' ) { |
|
254 | + $add[ ] = 'post_id'; |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | $return = array_merge( $array, $add ); |
@@ -274,32 +274,32 @@ discard block |
||
274 | 274 | foreach ( $default_args as $key => $arg ) { |
275 | 275 | |
276 | 276 | // If an arg has `tooltip` defined, but it's false, don't display a tooltip |
277 | - if( isset( $arg['tooltip'] ) && empty( $arg['tooltip'] ) ) { continue; } |
|
277 | + if ( isset( $arg[ 'tooltip' ] ) && empty( $arg[ 'tooltip' ] ) ) { continue; } |
|
278 | 278 | |
279 | 279 | // By default, use `tooltip` if defined. |
280 | - $tooltip = empty( $arg['tooltip'] ) ? NULL : $arg['tooltip']; |
|
280 | + $tooltip = empty( $arg[ 'tooltip' ] ) ? NULL : $arg[ 'tooltip' ]; |
|
281 | 281 | |
282 | 282 | // Otherwise, use the description as a tooltip. |
283 | - if( empty( $tooltip ) && !empty( $arg['desc'] ) ) { |
|
284 | - $tooltip = $arg['desc']; |
|
283 | + if ( empty( $tooltip ) && ! empty( $arg[ 'desc' ] ) ) { |
|
284 | + $tooltip = $arg[ 'desc' ]; |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | // If there's no tooltip set, continue |
288 | - if( empty( $tooltip ) ) { |
|
288 | + if ( empty( $tooltip ) ) { |
|
289 | 289 | continue; |
290 | 290 | } |
291 | 291 | |
292 | 292 | // Add the tooltip |
293 | - $gv_tooltips[ 'gv_'.$key ] = array( |
|
294 | - 'title' => $arg['label'], |
|
293 | + $gv_tooltips[ 'gv_' . $key ] = array( |
|
294 | + 'title' => $arg[ 'label' ], |
|
295 | 295 | 'value' => $tooltip, |
296 | 296 | ); |
297 | 297 | |
298 | 298 | } |
299 | 299 | |
300 | - $gv_tooltips['gv_css_merge_tags'] = array( |
|
301 | - 'title' => __('CSS Merge Tags', 'gravityview'), |
|
302 | - 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview'), '<code>', '</code>' ) |
|
300 | + $gv_tooltips[ 'gv_css_merge_tags' ] = array( |
|
301 | + 'title' => __( 'CSS Merge Tags', 'gravityview' ), |
|
302 | + 'value' => sprintf( __( 'Developers: The CSS classes will be sanitized using the %ssanitize_title_with_dashes()%s function.', 'gravityview' ), '<code>', '</code>' ) |
|
303 | 303 | ); |
304 | 304 | |
305 | 305 | /** |
@@ -317,9 +317,9 @@ discard block |
||
317 | 317 | |
318 | 318 | foreach ( $gv_tooltips as $key => $tooltip ) { |
319 | 319 | |
320 | - $title = empty( $tooltip['title'] ) ? '' : '<h6>'.esc_html( $tooltip['title'] ) .'</h6>'; |
|
320 | + $title = empty( $tooltip[ 'title' ] ) ? '' : '<h6>' . esc_html( $tooltip[ 'title' ] ) . '</h6>'; |
|
321 | 321 | |
322 | - $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip['value'] ) ); |
|
322 | + $tooltips[ $key ] = $title . wpautop( esc_html( $tooltip[ 'value' ] ) ); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | return $tooltips; |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | * |
334 | 334 | * @return void |
335 | 335 | */ |
336 | - public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
336 | + public function add_custom_column_content( $column_name = NULL, $post_id ) { |
|
337 | 337 | |
338 | 338 | $output = ''; |
339 | 339 | |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | // Generate backup if label doesn't exist: `example_name` => `Example Name` |
356 | 356 | $template_id_pretty = ucwords( implode( ' ', explode( '_', $template_id ) ) ); |
357 | 357 | |
358 | - $output = $template ? $template['label'] : $template_id_pretty; |
|
358 | + $output = $template ? $template[ 'label' ] : $template_id_pretty; |
|
359 | 359 | |
360 | 360 | break; |
361 | 361 | |
@@ -396,44 +396,44 @@ discard block |
||
396 | 396 | static public function get_connected_form_links( $form, $include_form_link = true ) { |
397 | 397 | |
398 | 398 | // Either the form is empty or the form ID is 0, not yet set. |
399 | - if( empty( $form ) ) { |
|
399 | + if ( empty( $form ) ) { |
|
400 | 400 | return ''; |
401 | 401 | } |
402 | 402 | |
403 | 403 | // The $form is passed as the form ID |
404 | - if( !is_array( $form ) ) { |
|
404 | + if ( ! is_array( $form ) ) { |
|
405 | 405 | $form = gravityview_get_form( $form ); |
406 | 406 | } |
407 | 407 | |
408 | - $form_id = $form['id']; |
|
408 | + $form_id = $form[ 'id' ]; |
|
409 | 409 | $links = array(); |
410 | 410 | |
411 | - if( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
411 | + if ( GVCommon::has_cap( 'gravityforms_edit_forms' ) ) { |
|
412 | 412 | $form_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $form_id ) ); |
413 | - $form_link = '<strong class="gv-form-title">'.gravityview_get_link( $form_url, $form['title'], 'class=row-title' ).'</strong>'; |
|
414 | - $links[] = '<span>'.gravityview_get_link( $form_url, __('Edit Form', 'gravityview') ).'</span>'; |
|
413 | + $form_link = '<strong class="gv-form-title">' . gravityview_get_link( $form_url, $form[ 'title' ], 'class=row-title' ) . '</strong>'; |
|
414 | + $links[ ] = '<span>' . gravityview_get_link( $form_url, __( 'Edit Form', 'gravityview' ) ) . '</span>'; |
|
415 | 415 | } else { |
416 | - $form_link = '<strong class="gv-form-title">'. esc_html( $form['title'] ). '</strong>'; |
|
416 | + $form_link = '<strong class="gv-form-title">' . esc_html( $form[ 'title' ] ) . '</strong>'; |
|
417 | 417 | } |
418 | 418 | |
419 | - if( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
419 | + if ( GVCommon::has_cap( 'gravityforms_view_entries' ) ) { |
|
420 | 420 | $entries_url = admin_url( sprintf( 'admin.php?page=gf_entries&id=%d', $form_id ) ); |
421 | - $links[] = '<span>'.gravityview_get_link( $entries_url, __('Entries', 'gravityview') ).'</span>'; |
|
421 | + $links[ ] = '<span>' . gravityview_get_link( $entries_url, __( 'Entries', 'gravityview' ) ) . '</span>'; |
|
422 | 422 | } |
423 | 423 | |
424 | - if( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
424 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_settings', 'gravityview_view_settings' ) ) ) { |
|
425 | 425 | $settings_url = admin_url( sprintf( 'admin.php?page=gf_edit_forms&view=settings&id=%d', $form_id ) ); |
426 | - $links[] = '<span>'.gravityview_get_link( $settings_url, __('Settings', 'gravityview'), 'title='.__('Edit settings for this form', 'gravityview') ).'</span>'; |
|
426 | + $links[ ] = '<span>' . gravityview_get_link( $settings_url, __( 'Settings', 'gravityview' ), 'title=' . __( 'Edit settings for this form', 'gravityview' ) ) . '</span>'; |
|
427 | 427 | } |
428 | 428 | |
429 | - if( GVCommon::has_cap( array("gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms") ) ) { |
|
429 | + if ( GVCommon::has_cap( array( "gravityforms_edit_forms", "gravityforms_create_form", "gravityforms_preview_forms" ) ) ) { |
|
430 | 430 | $preview_url = site_url( sprintf( '?gf_page=preview&id=%d', $form_id ) ); |
431 | - $links[] = '<span>'.gravityview_get_link( $preview_url, __('Preview Form', 'gravityview'), 'title='.__('Preview this form', 'gravityview') ).'</span>'; |
|
431 | + $links[ ] = '<span>' . gravityview_get_link( $preview_url, __( 'Preview Form', 'gravityview' ), 'title=' . __( 'Preview this form', 'gravityview' ) ) . '</span>'; |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | $output = ''; |
435 | 435 | |
436 | - if( !empty( $include_form_link ) ) { |
|
436 | + if ( ! empty( $include_form_link ) ) { |
|
437 | 437 | $output .= $form_link; |
438 | 438 | } |
439 | 439 | |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | */ |
446 | 446 | $links = apply_filters( 'gravityview_connected_form_links', $links, $form ); |
447 | 447 | |
448 | - $output .= '<div class="row-actions">'. implode( ' | ', $links ) .'</div>'; |
|
448 | + $output .= '<div class="row-actions">' . implode( ' | ', $links ) . '</div>'; |
|
449 | 449 | |
450 | 450 | return $output; |
451 | 451 | } |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | // Get the date column and save it for later to add back in. |
460 | 460 | // This adds it after the Data Source column. |
461 | 461 | // This way, we don't need to do array_slice, array_merge, etc. |
462 | - $date = $columns['date']; |
|
463 | - unset( $columns['date'] ); |
|
462 | + $date = $columns[ 'date' ]; |
|
463 | + unset( $columns[ 'date' ] ); |
|
464 | 464 | |
465 | 465 | $data_source_required_caps = array( |
466 | 466 | 'gravityforms_edit_forms', |
@@ -471,14 +471,14 @@ discard block |
||
471 | 471 | 'gravityforms_preview_forms', |
472 | 472 | ); |
473 | 473 | |
474 | - if( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
475 | - $columns['gv_connected_form'] = __( 'Data Source', 'gravityview' ); |
|
474 | + if ( GVCommon::has_cap( $data_source_required_caps ) ) { |
|
475 | + $columns[ 'gv_connected_form' ] = __( 'Data Source', 'gravityview' ); |
|
476 | 476 | } |
477 | 477 | |
478 | - $columns['gv_template'] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
478 | + $columns[ 'gv_template' ] = _x( 'Template', 'Column title that shows what template is being used for Views', 'gravityview' ); |
|
479 | 479 | |
480 | 480 | // Add the date back in. |
481 | - $columns['date'] = $date; |
|
481 | + $columns[ 'date' ] = $date; |
|
482 | 482 | |
483 | 483 | return $columns; |
484 | 484 | } |
@@ -492,12 +492,12 @@ discard block |
||
492 | 492 | */ |
493 | 493 | function save_postdata( $post_id ) { |
494 | 494 | |
495 | - if( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ){ |
|
495 | + if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
496 | 496 | return; |
497 | 497 | } |
498 | 498 | |
499 | 499 | // validate post_type |
500 | - if ( ! isset( $_POST['post_type'] ) || 'gravityview' != $_POST['post_type'] ) { |
|
500 | + if ( ! isset( $_POST[ 'post_type' ] ) || 'gravityview' != $_POST[ 'post_type' ] ) { |
|
501 | 501 | return; |
502 | 502 | } |
503 | 503 | |
@@ -512,65 +512,65 @@ discard block |
||
512 | 512 | $statii = array(); |
513 | 513 | |
514 | 514 | // check if this is a start fresh View |
515 | - if ( isset( $_POST['gravityview_select_form_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_form_nonce'], 'gravityview_select_form' ) ) { |
|
515 | + if ( isset( $_POST[ 'gravityview_select_form_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_form_nonce' ], 'gravityview_select_form' ) ) { |
|
516 | 516 | |
517 | - $form_id = !empty( $_POST['gravityview_form_id'] ) ? $_POST['gravityview_form_id'] : ''; |
|
517 | + $form_id = ! empty( $_POST[ 'gravityview_form_id' ] ) ? $_POST[ 'gravityview_form_id' ] : ''; |
|
518 | 518 | // save form id |
519 | - $statii['form_id'] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
519 | + $statii[ 'form_id' ] = update_post_meta( $post_id, '_gravityview_form_id', $form_id ); |
|
520 | 520 | |
521 | 521 | } |
522 | 522 | |
523 | - if( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii['form_id'] ) ) { |
|
523 | + if ( false === GVCommon::has_cap( 'gravityforms_create_form' ) && empty( $statii[ 'form_id' ] ) ) { |
|
524 | 524 | gravityview()->log->error( 'Current user does not have the capability to create a new Form.', array( 'data' => wp_get_current_user() ) ); |
525 | 525 | return; |
526 | 526 | } |
527 | 527 | |
528 | 528 | // Was this a start fresh? |
529 | - if ( ! empty( $_POST['gravityview_form_id_start_fresh'] ) ) { |
|
530 | - $statii['start_fresh'] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
529 | + if ( ! empty( $_POST[ 'gravityview_form_id_start_fresh' ] ) ) { |
|
530 | + $statii[ 'start_fresh' ] = add_post_meta( $post_id, '_gravityview_start_fresh', 1 ); |
|
531 | 531 | } else { |
532 | - $statii['start_fresh'] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
532 | + $statii[ 'start_fresh' ] = delete_post_meta( $post_id, '_gravityview_start_fresh' ); |
|
533 | 533 | } |
534 | 534 | |
535 | 535 | // Check if we have a template id |
536 | - if ( isset( $_POST['gravityview_select_template_nonce'] ) && wp_verify_nonce( $_POST['gravityview_select_template_nonce'], 'gravityview_select_template' ) ) { |
|
536 | + if ( isset( $_POST[ 'gravityview_select_template_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_select_template_nonce' ], 'gravityview_select_template' ) ) { |
|
537 | 537 | |
538 | - $template_id = !empty( $_POST['gravityview_directory_template'] ) ? $_POST['gravityview_directory_template'] : ''; |
|
538 | + $template_id = ! empty( $_POST[ 'gravityview_directory_template' ] ) ? $_POST[ 'gravityview_directory_template' ] : ''; |
|
539 | 539 | |
540 | 540 | // now save template id |
541 | - $statii['directory_template'] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
541 | + $statii[ 'directory_template' ] = update_post_meta( $post_id, '_gravityview_directory_template', $template_id ); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | |
545 | 545 | // save View Configuration metabox |
546 | - if ( isset( $_POST['gravityview_view_configuration_nonce'] ) && wp_verify_nonce( $_POST['gravityview_view_configuration_nonce'], 'gravityview_view_configuration' ) ) { |
|
546 | + if ( isset( $_POST[ 'gravityview_view_configuration_nonce' ] ) && wp_verify_nonce( $_POST[ 'gravityview_view_configuration_nonce' ], 'gravityview_view_configuration' ) ) { |
|
547 | 547 | |
548 | 548 | // template settings |
549 | - if( empty( $_POST['template_settings'] ) ) { |
|
550 | - $_POST['template_settings'] = array(); |
|
549 | + if ( empty( $_POST[ 'template_settings' ] ) ) { |
|
550 | + $_POST[ 'template_settings' ] = array(); |
|
551 | 551 | } |
552 | - $statii['template_settings'] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST['template_settings'] ); |
|
552 | + $statii[ 'template_settings' ] = update_post_meta( $post_id, '_gravityview_template_settings', $_POST[ 'template_settings' ] ); |
|
553 | 553 | |
554 | 554 | $fields = array(); |
555 | 555 | |
556 | 556 | // Directory&single Visible Fields |
557 | - if( !empty( $preset_fields ) ) { |
|
557 | + if ( ! empty( $preset_fields ) ) { |
|
558 | 558 | |
559 | 559 | $fields = $preset_fields; |
560 | 560 | |
561 | - } elseif( !empty( $_POST['gv_fields'] ) ) { |
|
561 | + } elseif ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
562 | 562 | $fields = _gravityview_process_posted_fields(); |
563 | 563 | } |
564 | 564 | |
565 | 565 | $fields = wp_slash( $fields ); |
566 | 566 | |
567 | - $statii['directory_fields'] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
567 | + $statii[ 'directory_fields' ] = update_post_meta( $post_id, '_gravityview_directory_fields', $fields ); |
|
568 | 568 | |
569 | 569 | // Directory Visible Widgets |
570 | - if( empty( $_POST['widgets'] ) ) { |
|
571 | - $_POST['widgets'] = array(); |
|
570 | + if ( empty( $_POST[ 'widgets' ] ) ) { |
|
571 | + $_POST[ 'widgets' ] = array(); |
|
572 | 572 | } |
573 | - $statii['directory_widgets'] = gravityview_set_directory_widgets( $post_id, $_POST['widgets'] ); |
|
573 | + $statii[ 'directory_widgets' ] = gravityview_set_directory_widgets( $post_id, $_POST[ 'widgets' ] ); |
|
574 | 574 | |
575 | 575 | } // end save view configuration |
576 | 576 | |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | * @param array $statii Array of statuses of the post meta saving processes. If saving worked, each key should be mapped to a value of the post ID (`directory_widgets` => `124`). If failed (or didn't change), the value will be false. |
581 | 581 | * @since 1.17.2 |
582 | 582 | */ |
583 | - do_action('gravityview_view_saved', $post_id, $statii ); |
|
583 | + do_action( 'gravityview_view_saved', $post_id, $statii ); |
|
584 | 584 | |
585 | 585 | gravityview()->log->debug( '[save_postdata] Update Post Meta Statuses (also returns false if nothing changed)', array( 'data' => array_map( 'intval', $statii ) ) ); |
586 | 586 | } |
@@ -624,20 +624,20 @@ discard block |
||
624 | 624 | |
625 | 625 | $output = ''; |
626 | 626 | |
627 | - if( !empty( $fields ) ) { |
|
627 | + if ( ! empty( $fields ) ) { |
|
628 | 628 | |
629 | - foreach( $fields as $id => $details ) { |
|
629 | + foreach ( $fields as $id => $details ) { |
|
630 | 630 | |
631 | - if( in_array( $details['type'], (array) $blacklist_field_types ) ) { |
|
631 | + if ( in_array( $details[ 'type' ], (array)$blacklist_field_types ) ) { |
|
632 | 632 | continue; |
633 | 633 | } |
634 | 634 | |
635 | 635 | // Edit mode only allows editing the parent fields, not single inputs. |
636 | - if( $context === 'edit' && !empty( $details['parent'] ) ) { |
|
636 | + if ( $context === 'edit' && ! empty( $details[ 'parent' ] ) ) { |
|
637 | 637 | continue; |
638 | 638 | } |
639 | 639 | |
640 | - $output .= new GravityView_Admin_View_Field( $details['label'], $id, $details, $settings = array(), $form ); |
|
640 | + $output .= new GravityView_Admin_View_Field( $details[ 'label' ], $id, $details, $settings = array(), $form ); |
|
641 | 641 | |
642 | 642 | } // End foreach |
643 | 643 | } |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | echo $output; |
646 | 646 | |
647 | 647 | // For the EDIT view we only want to allow the form fields. |
648 | - if( $context === 'edit' ) { |
|
648 | + if ( $context === 'edit' ) { |
|
649 | 649 | return; |
650 | 650 | } |
651 | 651 | |
@@ -669,16 +669,16 @@ discard block |
||
669 | 669 | $additional_fields = apply_filters( 'gravityview_additional_fields', array( |
670 | 670 | array( |
671 | 671 | 'label_text' => __( '+ Add All Fields', 'gravityview' ), |
672 | - 'desc' => __('Add all the available fields at once.', 'gravityview'), |
|
672 | + 'desc' => __( 'Add all the available fields at once.', 'gravityview' ), |
|
673 | 673 | 'field_id' => 'all-fields', |
674 | 674 | 'label_type' => 'field', |
675 | 675 | 'input_type' => NULL, |
676 | 676 | 'field_options' => NULL, |
677 | 677 | 'settings_html' => NULL, |
678 | 678 | ) |
679 | - )); |
|
679 | + ) ); |
|
680 | 680 | |
681 | - if( !empty( $additional_fields )) { |
|
681 | + if ( ! empty( $additional_fields ) ) { |
|
682 | 682 | foreach ( (array)$additional_fields as $item ) { |
683 | 683 | |
684 | 684 | // Prevent items from not having index set |
@@ -689,16 +689,16 @@ discard block |
||
689 | 689 | 'input_type' => NULL, |
690 | 690 | 'field_options' => NULL, |
691 | 691 | 'settings_html' => NULL, |
692 | - )); |
|
692 | + ) ); |
|
693 | 693 | |
694 | 694 | // Backward compat. |
695 | - if( !empty( $item['field_options'] ) ) { |
|
695 | + if ( ! empty( $item[ 'field_options' ] ) ) { |
|
696 | 696 | // Use settings_html from now on. |
697 | - $item['settings_html'] = $item['field_options']; |
|
697 | + $item[ 'settings_html' ] = $item[ 'field_options' ]; |
|
698 | 698 | } |
699 | 699 | |
700 | 700 | // Render a label for each of them |
701 | - echo new GravityView_Admin_View_Field( $item['label_text'], $item['field_id'], $item, $settings = array(), $form ); |
|
701 | + echo new GravityView_Admin_View_Field( $item[ 'label_text' ], $item[ 'field_id' ], $item, $settings = array(), $form ); |
|
702 | 702 | |
703 | 703 | } |
704 | 704 | } |
@@ -711,54 +711,54 @@ discard block |
||
711 | 711 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
712 | 712 | * @return array |
713 | 713 | */ |
714 | - function get_entry_default_fields($form, $zone) { |
|
714 | + function get_entry_default_fields( $form, $zone ) { |
|
715 | 715 | |
716 | 716 | $entry_default_fields = array(); |
717 | 717 | |
718 | - if( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
718 | + if ( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
719 | 719 | |
720 | 720 | $entry_default_fields = array( |
721 | 721 | 'id' => array( |
722 | - 'label' => __('Entry ID', 'gravityview'), |
|
722 | + 'label' => __( 'Entry ID', 'gravityview' ), |
|
723 | 723 | 'type' => 'id', |
724 | - 'desc' => __('The unique ID of the entry.', 'gravityview'), |
|
724 | + 'desc' => __( 'The unique ID of the entry.', 'gravityview' ), |
|
725 | 725 | ), |
726 | 726 | 'date_created' => array( |
727 | - 'label' => __('Entry Date', 'gravityview'), |
|
728 | - 'desc' => __('The date the entry was created.', 'gravityview'), |
|
727 | + 'label' => __( 'Entry Date', 'gravityview' ), |
|
728 | + 'desc' => __( 'The date the entry was created.', 'gravityview' ), |
|
729 | 729 | 'type' => 'date_created', |
730 | 730 | ), |
731 | 731 | 'source_url' => array( |
732 | - 'label' => __('Source URL', 'gravityview'), |
|
732 | + 'label' => __( 'Source URL', 'gravityview' ), |
|
733 | 733 | 'type' => 'source_url', |
734 | - 'desc' => __('The URL of the page where the form was submitted.', 'gravityview'), |
|
734 | + 'desc' => __( 'The URL of the page where the form was submitted.', 'gravityview' ), |
|
735 | 735 | ), |
736 | 736 | 'ip' => array( |
737 | - 'label' => __('User IP', 'gravityview'), |
|
737 | + 'label' => __( 'User IP', 'gravityview' ), |
|
738 | 738 | 'type' => 'ip', |
739 | - 'desc' => __('The IP Address of the user who created the entry.', 'gravityview'), |
|
739 | + 'desc' => __( 'The IP Address of the user who created the entry.', 'gravityview' ), |
|
740 | 740 | ), |
741 | 741 | 'created_by' => array( |
742 | - 'label' => __('User', 'gravityview'), |
|
742 | + 'label' => __( 'User', 'gravityview' ), |
|
743 | 743 | 'type' => 'created_by', |
744 | - 'desc' => __('Details of the logged-in user who created the entry (if any).', 'gravityview'), |
|
744 | + 'desc' => __( 'Details of the logged-in user who created the entry (if any).', 'gravityview' ), |
|
745 | 745 | ), |
746 | 746 | |
747 | 747 | /** |
748 | 748 | * @since 1.7.2 |
749 | 749 | */ |
750 | 750 | 'other_entries' => array( |
751 | - 'label' => __('Other Entries', 'gravityview'), |
|
751 | + 'label' => __( 'Other Entries', 'gravityview' ), |
|
752 | 752 | 'type' => 'other_entries', |
753 | - 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), |
|
753 | + 'desc' => __( 'Display other entries created by the entry creator.', 'gravityview' ), |
|
754 | 754 | ), |
755 | 755 | ); |
756 | 756 | |
757 | - if( 'single' !== $zone) { |
|
757 | + if ( 'single' !== $zone ) { |
|
758 | 758 | |
759 | - $entry_default_fields['entry_link'] = array( |
|
760 | - 'label' => __('Link to Entry', 'gravityview'), |
|
761 | - 'desc' => __('A dedicated link to the single entry with customizable text.', 'gravityview'), |
|
759 | + $entry_default_fields[ 'entry_link' ] = array( |
|
760 | + 'label' => __( 'Link to Entry', 'gravityview' ), |
|
761 | + 'desc' => __( 'A dedicated link to the single entry with customizable text.', 'gravityview' ), |
|
762 | 762 | 'type' => 'entry_link', |
763 | 763 | ); |
764 | 764 | } |
@@ -768,10 +768,10 @@ discard block |
||
768 | 768 | /** |
769 | 769 | * @since 1.2 |
770 | 770 | */ |
771 | - $entry_default_fields['custom'] = array( |
|
772 | - 'label' => __('Custom Content', 'gravityview'), |
|
771 | + $entry_default_fields[ 'custom' ] = array( |
|
772 | + 'label' => __( 'Custom Content', 'gravityview' ), |
|
773 | 773 | 'type' => 'custom', |
774 | - 'desc' => __('Insert custom text or HTML.', 'gravityview'), |
|
774 | + 'desc' => __( 'Insert custom text or HTML.', 'gravityview' ), |
|
775 | 775 | ); |
776 | 776 | |
777 | 777 | /** |
@@ -780,7 +780,7 @@ discard block |
||
780 | 780 | * @param string|array $form form_ID or form object |
781 | 781 | * @param string $zone Either 'single', 'directory', 'header', 'footer' |
782 | 782 | */ |
783 | - return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone); |
|
783 | + return apply_filters( 'gravityview_entry_default_fields', $entry_default_fields, $form, $zone ); |
|
784 | 784 | } |
785 | 785 | |
786 | 786 | /** |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | */ |
792 | 792 | function get_available_fields( $form = '', $zone = NULL ) { |
793 | 793 | |
794 | - if( empty( $form ) ) { |
|
794 | + if ( empty( $form ) ) { |
|
795 | 795 | gravityview()->log->error( '$form is empty' ); |
796 | 796 | return array(); |
797 | 797 | } |
@@ -800,7 +800,7 @@ discard block |
||
800 | 800 | $fields = gravityview_get_form_fields( $form, true ); |
801 | 801 | |
802 | 802 | // get meta fields ( only if form was already created ) |
803 | - if( !is_array( $form ) ) { |
|
803 | + if ( ! is_array( $form ) ) { |
|
804 | 804 | $meta_fields = gravityview_get_entry_meta( $form ); |
805 | 805 | } else { |
806 | 806 | $meta_fields = array(); |
@@ -813,7 +813,7 @@ discard block |
||
813 | 813 | $fields = $fields + $meta_fields + $default_fields; |
814 | 814 | |
815 | 815 | // Move Custom Content to top |
816 | - $fields = array( 'custom' => $fields['custom'] ) + $fields; |
|
816 | + $fields = array( 'custom' => $fields[ 'custom' ] ) + $fields; |
|
817 | 817 | |
818 | 818 | return $fields; |
819 | 819 | } |
@@ -827,11 +827,11 @@ discard block |
||
827 | 827 | |
828 | 828 | $widgets = $this->get_registered_widgets(); |
829 | 829 | |
830 | - if( !empty( $widgets ) ) { |
|
830 | + if ( ! empty( $widgets ) ) { |
|
831 | 831 | |
832 | - foreach( $widgets as $id => $details ) { |
|
832 | + foreach ( $widgets as $id => $details ) { |
|
833 | 833 | |
834 | - echo new GravityView_Admin_View_Widget( $details['label'], $id, $details ); |
|
834 | + echo new GravityView_Admin_View_Widget( $details[ 'label' ], $id, $details ); |
|
835 | 835 | |
836 | 836 | } |
837 | 837 | } |
@@ -860,7 +860,7 @@ discard block |
||
860 | 860 | function render_active_areas( $template_id, $type, $zone, $rows, $values ) { |
861 | 861 | global $post; |
862 | 862 | |
863 | - if( $type === 'widget' ) { |
|
863 | + if ( $type === 'widget' ) { |
|
864 | 864 | $button_label = __( 'Add Widget', 'gravityview' ); |
865 | 865 | } else { |
866 | 866 | $button_label = __( 'Add Field', 'gravityview' ); |
@@ -872,10 +872,10 @@ discard block |
||
872 | 872 | $form_id = null; |
873 | 873 | |
874 | 874 | // if saved values, get available fields to label everyone |
875 | - if( !empty( $values ) && ( !empty( $post->ID ) || !empty( $_POST['template_id'] ) ) ) { |
|
875 | + if ( ! empty( $values ) && ( ! empty( $post->ID ) || ! empty( $_POST[ 'template_id' ] ) ) ) { |
|
876 | 876 | |
877 | - if( !empty( $_POST['template_id'] ) ) { |
|
878 | - $form = GravityView_Ajax::pre_get_form_fields( $_POST['template_id'] ); |
|
877 | + if ( ! empty( $_POST[ 'template_id' ] ) ) { |
|
878 | + $form = GravityView_Ajax::pre_get_form_fields( $_POST[ 'template_id' ] ); |
|
879 | 879 | } else { |
880 | 880 | $form_id = $form = gravityview_get_form_id( $post->ID ); |
881 | 881 | } |
@@ -893,44 +893,44 @@ discard block |
||
893 | 893 | } |
894 | 894 | } |
895 | 895 | |
896 | - foreach( $rows as $row ) : |
|
897 | - foreach( $row as $col => $areas ) : |
|
898 | - $column = ($col == '2-2') ? '1-2' : $col; ?> |
|
896 | + foreach ( $rows as $row ) : |
|
897 | + foreach ( $row as $col => $areas ) : |
|
898 | + $column = ( $col == '2-2' ) ? '1-2' : $col; ?> |
|
899 | 899 | |
900 | 900 | <div class="gv-grid-col-<?php echo esc_attr( $column ); ?>"> |
901 | 901 | |
902 | - <?php foreach( $areas as $area ) : ?> |
|
902 | + <?php foreach ( $areas as $area ) : ?> |
|
903 | 903 | |
904 | - <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
905 | - <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>"> |
|
904 | + <div class="gv-droppable-area" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>"> |
|
905 | + <div class="active-drop active-drop-<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>"> |
|
906 | 906 | |
907 | 907 | <?php // render saved fields |
908 | 908 | |
909 | - if( ! empty( $values[ $zone .'_'. $area['areaid'] ] ) ) { |
|
909 | + if ( ! empty( $values[ $zone . '_' . $area[ 'areaid' ] ] ) ) { |
|
910 | 910 | |
911 | - foreach( $values[ $zone .'_'. $area['areaid'] ] as $uniqid => $field ) { |
|
911 | + foreach ( $values[ $zone . '_' . $area[ 'areaid' ] ] as $uniqid => $field ) { |
|
912 | 912 | |
913 | 913 | // Maybe has a form ID |
914 | - $form_id = empty( $field['form_id'] ) ? $form_id : $field['form_id']; |
|
914 | + $form_id = empty( $field[ 'form_id' ] ) ? $form_id : $field[ 'form_id' ]; |
|
915 | 915 | |
916 | 916 | $input_type = NULL; |
917 | 917 | |
918 | 918 | if ( $form_id ) { |
919 | - $original_item = isset( $available_items[ $form_id ] [ $field['id'] ] ) ? $available_items[ $form_id ] [ $field['id'] ] : false ; |
|
919 | + $original_item = isset( $available_items[ $form_id ] [ $field[ 'id' ] ] ) ? $available_items[ $form_id ] [ $field[ 'id' ] ] : false; |
|
920 | 920 | } else { |
921 | - $original_item = isset( $available_items[ $field['id'] ] ) ? $available_items[ $field['id'] ] : false ; |
|
921 | + $original_item = isset( $available_items[ $field[ 'id' ] ] ) ? $available_items[ $field[ 'id' ] ] : false; |
|
922 | 922 | } |
923 | 923 | |
924 | - if ( !$original_item ) { |
|
925 | - gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array(' data' => array('available_items' => $available_items, 'field' => $field ) ) ); |
|
924 | + if ( ! $original_item ) { |
|
925 | + gravityview()->log->error( 'An item was not available when rendering the output; maybe it was added by a plugin that is now de-activated.', array( ' data' => array( 'available_items' => $available_items, 'field' => $field ) ) ); |
|
926 | 926 | |
927 | 927 | $original_item = $field; |
928 | 928 | } else { |
929 | - $input_type = isset( $original_item['type'] ) ? $original_item['type'] : NULL; |
|
929 | + $input_type = isset( $original_item[ 'type' ] ) ? $original_item[ 'type' ] : NULL; |
|
930 | 930 | } |
931 | 931 | |
932 | 932 | // Field options dialog box |
933 | - $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field['id'], $original_item['label'], $zone .'_'. $area['areaid'], $input_type, $uniqid, $field, $zone, $original_item ); |
|
933 | + $field_options = GravityView_Render_Settings::render_field_options( $form_id, $type, $template_id, $field[ 'id' ], $original_item[ 'label' ], $zone . '_' . $area[ 'areaid' ], $input_type, $uniqid, $field, $zone, $original_item ); |
|
934 | 934 | |
935 | 935 | $item = array( |
936 | 936 | 'input_type' => $input_type, |
@@ -943,23 +943,23 @@ discard block |
||
943 | 943 | $item = wp_parse_args( $item, $original_item ); |
944 | 944 | } |
945 | 945 | |
946 | - switch( $type ) { |
|
946 | + switch ( $type ) { |
|
947 | 947 | case 'widget': |
948 | - echo new GravityView_Admin_View_Widget( $item['label'], $field['id'], $item, $field ); |
|
948 | + echo new GravityView_Admin_View_Widget( $item[ 'label' ], $field[ 'id' ], $item, $field ); |
|
949 | 949 | break; |
950 | 950 | default: |
951 | - echo new GravityView_Admin_View_Field( $field['label'], $field['id'], $item, $field, $form_id ); |
|
951 | + echo new GravityView_Admin_View_Field( $field[ 'label' ], $field[ 'id' ], $item, $field, $form_id ); |
|
952 | 952 | } |
953 | 953 | } |
954 | 954 | |
955 | 955 | } // End if zone is not empty ?> |
956 | 956 | |
957 | - <span class="drop-message"><?php echo sprintf(esc_attr__('"+ %s" or drag existing %ss here.', 'gravityview'), $button_label, $type ); ?></span> |
|
957 | + <span class="drop-message"><?php echo sprintf( esc_attr__( '"+ %s" or drag existing %ss here.', 'gravityview' ), $button_label, $type ); ?></span> |
|
958 | 958 | </div> |
959 | 959 | <div class="gv-droppable-area-action"> |
960 | - <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone .'_'. $area['areaid'] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ '.esc_html( $button_label ); ?></a> |
|
960 | + <a href="#" class="gv-add-field button-secondary" title="" data-objecttype="<?php echo esc_attr( $type ); ?>" data-areaid="<?php echo esc_attr( $zone . '_' . $area[ 'areaid' ] ); ?>" data-context="<?php echo esc_attr( $zone ); ?>" data-formid="<?php echo $view ? esc_attr( $view->form ? $view->form->ID : '' ) : ''; ?>"><?php echo '+ ' . esc_html( $button_label ); ?></a> |
|
961 | 961 | |
962 | - <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area['title'] ); ?></strong><?php if( !empty( $area['subtitle'] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area['subtitle'] ); ?></span><?php } ?></p> |
|
962 | + <p class="gv-droppable-area-title"><strong><?php echo esc_html( $area[ 'title' ] ); ?></strong><?php if ( ! empty( $area[ 'subtitle' ] ) ) { ?><span class="gv-droppable-area-subtitle"> – <?php echo esc_html( $area[ 'subtitle' ] ); ?></span><?php } ?></p> |
|
963 | 963 | </div> |
964 | 964 | </div> |
965 | 965 | |
@@ -982,7 +982,7 @@ discard block |
||
982 | 982 | $default_widget_areas = \GV\Widget::get_default_widget_areas(); |
983 | 983 | |
984 | 984 | $widgets = array(); |
985 | - if( !empty( $post_id ) ) { |
|
985 | + if ( ! empty( $post_id ) ) { |
|
986 | 986 | $widgets = gravityview_get_directory_widgets( $post_id ); |
987 | 987 | } |
988 | 988 | |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | // list of available fields to be shown in the popup |
1016 | 1016 | $forms = gravityview_get_forms( 'any' ); |
1017 | 1017 | |
1018 | - $form_ids = array_map( function ($form) { return $form['id']; }, $forms); |
|
1018 | + $form_ids = array_map( function( $form ) { return $form[ 'id' ]; }, $forms ); |
|
1019 | 1019 | |
1020 | 1020 | foreach ( $form_ids as $form_id ) { |
1021 | 1021 | $filter_field_id = sprintf( 'gv-field-filter-%s-%d', $context, $form_id ); |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | </div> |
1029 | 1029 | |
1030 | 1030 | <div id="available-fields-<?php echo $filter_field_id; ?>" aria-live="polite" role="listbox"> |
1031 | - <?php do_action('gravityview_render_available_fields', $form_id, $context ); ?> |
|
1031 | + <?php do_action( 'gravityview_render_available_fields', $form_id, $context ); ?> |
|
1032 | 1032 | </div> |
1033 | 1033 | |
1034 | 1034 | <div class="gv-no-results hidden description"><?php esc_html_e( 'No fields were found matching the search.', 'gravityview' ); ?></div> |
@@ -1047,7 +1047,7 @@ discard block |
||
1047 | 1047 | * @return string HTML of the active areas |
1048 | 1048 | */ |
1049 | 1049 | function render_directory_active_areas( $template_id = '', $context = 'single', $post_id = '', $echo = false ) { |
1050 | - if( empty( $template_id ) ) { |
|
1050 | + if ( empty( $template_id ) ) { |
|
1051 | 1051 | gravityview()->log->debug( '[render_directory_active_areas] {template_id} is empty', array( 'template_id' => $template_id ) ); |
1052 | 1052 | return ''; |
1053 | 1053 | } |
@@ -1061,12 +1061,12 @@ discard block |
||
1061 | 1061 | */ |
1062 | 1062 | $template_areas = apply_filters( 'gravityview_template_active_areas', array(), $template_id, $context ); |
1063 | 1063 | |
1064 | - if( empty( $template_areas ) ) { |
|
1064 | + if ( empty( $template_areas ) ) { |
|
1065 | 1065 | |
1066 | 1066 | gravityview()->log->debug( '[render_directory_active_areas] No areas defined. Maybe template {template_id} is disabled.', array( 'data' => $template_id ) ); |
1067 | 1067 | $output = '<div>'; |
1068 | - $output .= '<h2 class="description" style="font-size: 16px; margin:0">'. sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>'.$template_id.'</em>' ) .'</h2>'; |
|
1069 | - $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">'.esc_html__('The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview').'</p>'; |
|
1068 | + $output .= '<h2 class="description" style="font-size: 16px; margin:0">' . sprintf( esc_html__( 'This View is configured using the %s View type, which is disabled.', 'gravityview' ), '<em>' . $template_id . '</em>' ) . '</h2>'; |
|
1069 | + $output .= '<p class="description" style="font-size: 14px; margin:0 0 1em 0;padding:0">' . esc_html__( 'The data is not lost; re-activate the associated plugin and the configuration will re-appear.', 'gravityview' ) . '</p>'; |
|
1070 | 1070 | $output .= '</div>'; |
1071 | 1071 | } else { |
1072 | 1072 | |
@@ -1081,7 +1081,7 @@ discard block |
||
1081 | 1081 | |
1082 | 1082 | } |
1083 | 1083 | |
1084 | - if( $echo ) { |
|
1084 | + if ( $echo ) { |
|
1085 | 1085 | echo $output; |
1086 | 1086 | } |
1087 | 1087 | |
@@ -1101,32 +1101,32 @@ discard block |
||
1101 | 1101 | $is_widgets_page = ( $pagenow === 'widgets.php' ); |
1102 | 1102 | |
1103 | 1103 | // Add the GV font (with the Astronaut) |
1104 | - wp_enqueue_style( 'gravityview_global', plugins_url('assets/css/admin-global.css', GRAVITYVIEW_FILE), array(), \GV\Plugin::$version ); |
|
1104 | + wp_enqueue_style( 'gravityview_global', plugins_url( 'assets/css/admin-global.css', GRAVITYVIEW_FILE ), array(), \GV\Plugin::$version ); |
|
1105 | 1105 | wp_register_style( 'gravityview_views_styles', plugins_url( 'assets/css/admin-views.css', GRAVITYVIEW_FILE ), array( 'dashicons', 'wp-jquery-ui-dialog' ), \GV\Plugin::$version ); |
1106 | 1106 | |
1107 | - wp_register_script( 'gravityview-jquery-cookie', plugins_url('assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1107 | + wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), \GV\Plugin::$version, true ); |
|
1108 | 1108 | |
1109 | - if( GFForms::get_page() === 'form_list' ) { |
|
1109 | + if ( GFForms::get_page() === 'form_list' ) { |
|
1110 | 1110 | wp_enqueue_style( 'gravityview_views_styles' ); |
1111 | 1111 | return; |
1112 | 1112 | } |
1113 | 1113 | |
1114 | 1114 | // Don't process any scripts below here if it's not a GravityView page. |
1115 | - if( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1115 | + if ( ! gravityview()->request->is_admin( $hook, 'single' ) && ! $is_widgets_page ) { |
|
1116 | 1116 | return; |
1117 | 1117 | } |
1118 | 1118 | |
1119 | 1119 | wp_enqueue_script( 'jquery-ui-datepicker' ); |
1120 | - wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), \GV\Plugin::$version ); |
|
1120 | + wp_enqueue_style( 'gravityview_views_datepicker', plugins_url( 'assets/css/admin-datepicker.css', GRAVITYVIEW_FILE ), \GV\Plugin::$version ); |
|
1121 | 1121 | |
1122 | - $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
1122 | + $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
1123 | 1123 | |
1124 | 1124 | //enqueue scripts |
1125 | 1125 | wp_enqueue_script( 'gravityview_views_scripts', plugins_url( 'assets/js/admin-views' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery-ui-tabs', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-sortable', 'jquery-ui-tooltip', 'jquery-ui-dialog', 'gravityview-jquery-cookie', 'jquery-ui-datepicker', 'underscore' ), \GV\Plugin::$version ); |
1126 | 1126 | |
1127 | - wp_localize_script('gravityview_views_scripts', 'gvGlobals', array( |
|
1127 | + wp_localize_script( 'gravityview_views_scripts', 'gvGlobals', array( |
|
1128 | 1128 | 'cookiepath' => COOKIEPATH, |
1129 | - 'passed_form_id' => (bool) \GV\Utils::_GET( 'form_id' ), |
|
1129 | + 'passed_form_id' => (bool)\GV\Utils::_GET( 'form_id' ), |
|
1130 | 1130 | 'nonce' => wp_create_nonce( 'gravityview_ajaxviews' ), |
1131 | 1131 | 'label_viewname' => __( 'Enter View name here', 'gravityview' ), |
1132 | 1132 | 'label_close' => __( 'Close', 'gravityview' ), |
@@ -1138,7 +1138,7 @@ discard block |
||
1138 | 1138 | 'loading_error' => esc_html__( 'There was an error loading dynamic content.', 'gravityview' ), |
1139 | 1139 | 'field_loaderror' => __( 'Error while adding the field. Please try again or contact GravityView support.', 'gravityview' ), |
1140 | 1140 | 'remove_all_fields' => __( 'Would you like to remove all fields in this zone? (You are seeing this message because you were holding down the ALT key)', 'gravityview' ), |
1141 | - )); |
|
1141 | + ) ); |
|
1142 | 1142 | |
1143 | 1143 | wp_enqueue_style( 'gravityview_views_styles' ); |
1144 | 1144 | |
@@ -1165,7 +1165,7 @@ discard block |
||
1165 | 1165 | ); |
1166 | 1166 | |
1167 | 1167 | if ( wp_is_mobile() ) { |
1168 | - $scripts[] = 'jquery-touch-punch'; |
|
1168 | + $scripts[ ] = 'jquery-touch-punch'; |
|
1169 | 1169 | } |
1170 | 1170 | |
1171 | 1171 | wp_enqueue_script( $scripts ); |
@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | $this->api_data = $_api_data; |
41 | 41 | $this->name = plugin_basename( $_plugin_file ); |
42 | 42 | $this->slug = basename( $_plugin_file, '.php' ); |
43 | - $this->version = $_api_data['version']; |
|
44 | - $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false; |
|
45 | - $this->beta = ! empty( $this->api_data['beta'] ) ? true : false; |
|
46 | - $this->cache_key = 'edd_sl_' . md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) ); |
|
43 | + $this->version = $_api_data[ 'version' ]; |
|
44 | + $this->wp_override = isset( $_api_data[ 'wp_override' ] ) ? (bool)$_api_data[ 'wp_override' ] : false; |
|
45 | + $this->beta = ! empty( $this->api_data[ 'beta' ] ) ? true : false; |
|
46 | + $this->cache_key = 'edd_sl_' . md5( serialize( $this->slug . $this->api_data[ 'license' ] . $this->beta ) ); |
|
47 | 47 | |
48 | 48 | $edd_plugin_data[ $this->slug ] = $this->api_data; |
49 | 49 | |
@@ -147,11 +147,11 @@ discard block |
||
147 | 147 | return; |
148 | 148 | } |
149 | 149 | |
150 | - if( ! current_user_can( 'update_plugins' ) ) { |
|
150 | + if ( ! current_user_can( 'update_plugins' ) ) { |
|
151 | 151 | return; |
152 | 152 | } |
153 | 153 | |
154 | - if( ! is_multisite() ) { |
|
154 | + if ( ! is_multisite() ) { |
|
155 | 155 | return; |
156 | 156 | } |
157 | 157 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">', |
248 | 248 | esc_html( $version_info->new_version ), |
249 | 249 | '</a>', |
250 | - '<a href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) ) .'">', |
|
250 | + '<a href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) ) . '">', |
|
251 | 251 | '</a>' |
252 | 252 | ); |
253 | 253 | } |
@@ -292,7 +292,7 @@ discard block |
||
292 | 292 | ) |
293 | 293 | ); |
294 | 294 | |
295 | - $cache_key = 'edd_api_request_' . md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) ); |
|
295 | + $cache_key = 'edd_api_request_' . md5( serialize( $this->slug . $this->api_data[ 'license' ] . $this->beta ) ); |
|
296 | 296 | |
297 | 297 | // Get the transient where we store the api request for this plugin for 24 hours |
298 | 298 | $edd_api_request_transient = $this->get_cached_version_info( $cache_key ); |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | $_data->contributors = $this->convert_object_to_array( $_data->contributors ); |
334 | 334 | } |
335 | 335 | |
336 | - if( ! isset( $_data->plugin ) ) { |
|
336 | + if ( ! isset( $_data->plugin ) ) { |
|
337 | 337 | $_data->plugin = $this->name; |
338 | 338 | } |
339 | 339 | |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | |
373 | 373 | $verify_ssl = $this->verify_ssl(); |
374 | 374 | if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) { |
375 | - $args['sslverify'] = $verify_ssl; |
|
375 | + $args[ 'sslverify' ] = $verify_ssl; |
|
376 | 376 | } |
377 | 377 | return $args; |
378 | 378 | |
@@ -400,9 +400,9 @@ discard block |
||
400 | 400 | if ( ! is_array( $edd_plugin_url_available ) || ! isset( $edd_plugin_url_available[ $store_hash ] ) ) { |
401 | 401 | $test_url_parts = parse_url( $this->api_url ); |
402 | 402 | |
403 | - $scheme = ! empty( $test_url_parts['scheme'] ) ? $test_url_parts['scheme'] : 'http'; |
|
404 | - $host = ! empty( $test_url_parts['host'] ) ? $test_url_parts['host'] : ''; |
|
405 | - $port = ! empty( $test_url_parts['port'] ) ? ':' . $test_url_parts['port'] : ''; |
|
403 | + $scheme = ! empty( $test_url_parts[ 'scheme' ] ) ? $test_url_parts[ 'scheme' ] : 'http'; |
|
404 | + $host = ! empty( $test_url_parts[ 'host' ] ) ? $test_url_parts[ 'host' ] : ''; |
|
405 | + $port = ! empty( $test_url_parts[ 'port' ] ) ? ':' . $test_url_parts[ 'port' ] : ''; |
|
406 | 406 | |
407 | 407 | if ( empty( $host ) ) { |
408 | 408 | $edd_plugin_url_available[ $store_hash ] = false; |
@@ -419,27 +419,27 @@ discard block |
||
419 | 419 | |
420 | 420 | $data = array_merge( $this->api_data, $_data ); |
421 | 421 | |
422 | - if ( $data['slug'] != $this->slug ) { |
|
422 | + if ( $data[ 'slug' ] != $this->slug ) { |
|
423 | 423 | return; |
424 | 424 | } |
425 | 425 | |
426 | - if( $this->api_url == trailingslashit ( home_url() ) ) { |
|
426 | + if ( $this->api_url == trailingslashit( home_url() ) ) { |
|
427 | 427 | return false; // Don't allow a plugin to ping itself |
428 | 428 | } |
429 | 429 | |
430 | 430 | $api_params = array( |
431 | 431 | 'edd_action' => 'get_version', |
432 | - 'license' => ! empty( $data['license'] ) ? $data['license'] : '', |
|
433 | - 'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false, |
|
434 | - 'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false, |
|
435 | - 'version' => isset( $data['version'] ) ? $data['version'] : false, |
|
436 | - 'slug' => $data['slug'], |
|
437 | - 'author' => $data['author'], |
|
432 | + 'license' => ! empty( $data[ 'license' ] ) ? $data[ 'license' ] : '', |
|
433 | + 'item_name' => isset( $data[ 'item_name' ] ) ? $data[ 'item_name' ] : false, |
|
434 | + 'item_id' => isset( $data[ 'item_id' ] ) ? $data[ 'item_id' ] : false, |
|
435 | + 'version' => isset( $data[ 'version' ] ) ? $data[ 'version' ] : false, |
|
436 | + 'slug' => $data[ 'slug' ], |
|
437 | + 'author' => $data[ 'author' ], |
|
438 | 438 | 'url' => home_url(), |
439 | - 'beta' => ! empty( $data['beta'] ), |
|
439 | + 'beta' => ! empty( $data[ 'beta' ] ), |
|
440 | 440 | ); |
441 | 441 | |
442 | - $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => $verify_ssl, 'body' => $api_params ) ); |
|
442 | + $request = wp_remote_post( $this->api_url, array( 'timeout' => 15, 'sslverify' => $verify_ssl, 'body' => $api_params ) ); |
|
443 | 443 | |
444 | 444 | if ( ! is_wp_error( $request ) ) { |
445 | 445 | $request = json_decode( wp_remote_retrieve_body( $request ) ); |
@@ -459,9 +459,9 @@ discard block |
||
459 | 459 | $request->icons = maybe_unserialize( $request->icons ); |
460 | 460 | } |
461 | 461 | |
462 | - if( ! empty( $request->sections ) ) { |
|
463 | - foreach( $request->sections as $key => $section ) { |
|
464 | - $request->$key = (array) $section; |
|
462 | + if ( ! empty( $request->sections ) ) { |
|
463 | + foreach ( $request->sections as $key => $section ) { |
|
464 | + $request->$key = (array)$section; |
|
465 | 465 | } |
466 | 466 | } |
467 | 467 | |
@@ -472,37 +472,37 @@ discard block |
||
472 | 472 | |
473 | 473 | global $edd_plugin_data; |
474 | 474 | |
475 | - if( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action'] ) { |
|
475 | + if ( empty( $_REQUEST[ 'edd_sl_action' ] ) || 'view_plugin_changelog' != $_REQUEST[ 'edd_sl_action' ] ) { |
|
476 | 476 | return; |
477 | 477 | } |
478 | 478 | |
479 | - if( empty( $_REQUEST['plugin'] ) ) { |
|
479 | + if ( empty( $_REQUEST[ 'plugin' ] ) ) { |
|
480 | 480 | return; |
481 | 481 | } |
482 | 482 | |
483 | - if( empty( $_REQUEST['slug'] ) ) { |
|
483 | + if ( empty( $_REQUEST[ 'slug' ] ) ) { |
|
484 | 484 | return; |
485 | 485 | } |
486 | 486 | |
487 | - if( ! current_user_can( 'update_plugins' ) ) { |
|
487 | + if ( ! current_user_can( 'update_plugins' ) ) { |
|
488 | 488 | wp_die( __( 'You do not have permission to install plugin updates', 'gravityview' ), __( 'Error', 'gravityview' ), array( 'response' => 403 ) ); |
489 | 489 | } |
490 | 490 | |
491 | - $data = $edd_plugin_data[ $_REQUEST['slug'] ]; |
|
492 | - $beta = ! empty( $data['beta'] ) ? true : false; |
|
493 | - $cache_key = md5( 'edd_plugin_' . sanitize_key( $_REQUEST['plugin'] ) . '_' . $beta . '_version_info' ); |
|
491 | + $data = $edd_plugin_data[ $_REQUEST[ 'slug' ] ]; |
|
492 | + $beta = ! empty( $data[ 'beta' ] ) ? true : false; |
|
493 | + $cache_key = md5( 'edd_plugin_' . sanitize_key( $_REQUEST[ 'plugin' ] ) . '_' . $beta . '_version_info' ); |
|
494 | 494 | $version_info = $this->get_cached_version_info( $cache_key ); |
495 | 495 | |
496 | - if( false === $version_info ) { |
|
496 | + if ( false === $version_info ) { |
|
497 | 497 | |
498 | 498 | $api_params = array( |
499 | 499 | 'edd_action' => 'get_version', |
500 | - 'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false, |
|
501 | - 'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false, |
|
502 | - 'slug' => $_REQUEST['slug'], |
|
503 | - 'author' => $data['author'], |
|
500 | + 'item_name' => isset( $data[ 'item_name' ] ) ? $data[ 'item_name' ] : false, |
|
501 | + 'item_id' => isset( $data[ 'item_id' ] ) ? $data[ 'item_id' ] : false, |
|
502 | + 'slug' => $_REQUEST[ 'slug' ], |
|
503 | + 'author' => $data[ 'author' ], |
|
504 | 504 | 'url' => home_url(), |
505 | - 'beta' => ! empty( $data['beta'] ) |
|
505 | + 'beta' => ! empty( $data[ 'beta' ] ) |
|
506 | 506 | ); |
507 | 507 | |
508 | 508 | $verify_ssl = $this->verify_ssl(); |
@@ -519,9 +519,9 @@ discard block |
||
519 | 519 | $version_info = false; |
520 | 520 | } |
521 | 521 | |
522 | - if( ! empty( $version_info ) ) { |
|
523 | - foreach( $version_info->sections as $key => $section ) { |
|
524 | - $version_info->$key = (array) $section; |
|
522 | + if ( ! empty( $version_info ) ) { |
|
523 | + foreach ( $version_info->sections as $key => $section ) { |
|
524 | + $version_info->$key = (array)$section; |
|
525 | 525 | } |
526 | 526 | } |
527 | 527 | |
@@ -529,8 +529,8 @@ discard block |
||
529 | 529 | |
530 | 530 | } |
531 | 531 | |
532 | - if( ! empty( $version_info ) && isset( $version_info->sections['changelog'] ) ) { |
|
533 | - echo '<div style="background:#fff;padding:10px;">' . $version_info->sections['changelog'] . '</div>'; |
|
532 | + if ( ! empty( $version_info ) && isset( $version_info->sections[ 'changelog' ] ) ) { |
|
533 | + echo '<div style="background:#fff;padding:10px;">' . $version_info->sections[ 'changelog' ] . '</div>'; |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | exit; |
@@ -538,29 +538,29 @@ discard block |
||
538 | 538 | |
539 | 539 | public function get_cached_version_info( $cache_key = '' ) { |
540 | 540 | |
541 | - if( empty( $cache_key ) ) { |
|
541 | + if ( empty( $cache_key ) ) { |
|
542 | 542 | $cache_key = $this->cache_key; |
543 | 543 | } |
544 | 544 | |
545 | 545 | $cache = get_option( $cache_key ); |
546 | 546 | |
547 | - if( empty( $cache['timeout'] ) || time() > $cache['timeout'] ) { |
|
547 | + if ( empty( $cache[ 'timeout' ] ) || time() > $cache[ 'timeout' ] ) { |
|
548 | 548 | return false; // Cache is expired |
549 | 549 | } |
550 | 550 | |
551 | 551 | // We need to turn the icons into an array, thanks to WP Core forcing these into an object at some point. |
552 | - $cache['value'] = json_decode( $cache['value'] ); |
|
553 | - if ( ! empty( $cache['value']->icons ) ) { |
|
554 | - $cache['value']->icons = (array) $cache['value']->icons; |
|
552 | + $cache[ 'value' ] = json_decode( $cache[ 'value' ] ); |
|
553 | + if ( ! empty( $cache[ 'value' ]->icons ) ) { |
|
554 | + $cache[ 'value' ]->icons = (array)$cache[ 'value' ]->icons; |
|
555 | 555 | } |
556 | 556 | |
557 | - return $cache['value']; |
|
557 | + return $cache[ 'value' ]; |
|
558 | 558 | |
559 | 559 | } |
560 | 560 | |
561 | 561 | public function set_version_info_cache( $value = '', $cache_key = '' ) { |
562 | 562 | |
563 | - if( empty( $cache_key ) ) { |
|
563 | + if ( empty( $cache_key ) ) { |
|
564 | 564 | $cache_key = $this->cache_key; |
565 | 565 | } |
566 | 566 | |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | * @return bool |
581 | 581 | */ |
582 | 582 | private function verify_ssl() { |
583 | - return (bool) apply_filters( 'edd_sl_api_request_verify_ssl', true, $this ); |
|
583 | + return (bool)apply_filters( 'edd_sl_api_request_verify_ssl', true, $this ); |
|
584 | 584 | } |
585 | 585 | |
586 | 586 | } |