@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | public function duplicate_link_field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
115 | 115 | |
116 | 116 | // Always a link, never a filter |
117 | - unset( $field_options['show_as_link'], $field_options['search_filter'] ); |
|
117 | + unset( $field_options[ 'show_as_link' ], $field_options[ 'search_filter' ] ); |
|
118 | 118 | |
119 | 119 | |
120 | 120 | // Duplicate Entry link should only appear to visitors capable of editing entries |
121 | - unset( $field_options['only_loggedin'], $field_options['only_loggedin_cap'] ); |
|
121 | + unset( $field_options[ 'only_loggedin' ], $field_options[ 'only_loggedin_cap' ] ); |
|
122 | 122 | |
123 | - $add_option['duplicate_link'] = array( |
|
123 | + $add_option[ 'duplicate_link' ] = array( |
|
124 | 124 | 'type' => 'text', |
125 | 125 | 'label' => __( 'Duplicate Link Text', 'gravityview' ), |
126 | 126 | 'desc' => NULL, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | 'merge_tags' => true, |
129 | 129 | ); |
130 | 130 | |
131 | - $field_options['allow_duplicate_cap'] = array( |
|
131 | + $field_options[ 'allow_duplicate_cap' ] = array( |
|
132 | 132 | 'type' => 'select', |
133 | 133 | 'label' => __( 'Allow the following users to duplicate the entry:', 'gravityview' ), |
134 | 134 | 'choices' => GravityView_Render_Settings::get_cap_choices( $template_id, $field_id, $context, $input_type ), |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public function add_default_field( $entry_default_fields, $form = array(), $zone = '' ) { |
156 | 156 | |
157 | 157 | if ( 'edit' !== $zone ) { |
158 | - $entry_default_fields['duplicate_link'] = array( |
|
158 | + $entry_default_fields[ 'duplicate_link' ] = array( |
|
159 | 159 | 'label' => __( 'Duplicate Entry', 'gravityview' ), |
160 | 160 | 'type' => 'duplicate_link', |
161 | 161 | 'desc' => __( 'A link to duplicate the entry. Respects the Duplicate Entry permissions.', 'gravityview' ), |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function add_available_field( $available_fields = array() ) { |
178 | 178 | |
179 | - $available_fields['duplicate_link'] = array( |
|
179 | + $available_fields[ 'duplicate_link' ] = array( |
|
180 | 180 | 'label_text' => __( 'Duplicate Entry', 'gravityview' ), |
181 | 181 | 'field_id' => 'duplicate_link', |
182 | 182 | 'label_type' => 'field', |
@@ -209,9 +209,9 @@ discard block |
||
209 | 209 | if ( 'duplicate_link' === $field_id ) { |
210 | 210 | |
211 | 211 | // Remove other built-in caps. |
212 | - unset( $caps['publish_posts'], $caps['gravityforms_view_entries'], $caps['duplicate_others_posts'] ); |
|
212 | + unset( $caps[ 'publish_posts' ], $caps[ 'gravityforms_view_entries' ], $caps[ 'duplicate_others_posts' ] ); |
|
213 | 213 | |
214 | - $caps['read'] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
214 | + $caps[ 'read' ] = _x( 'Entry Creator', 'User capability', 'gravityview' ); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | return $caps; |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | public static function get_duplicate_link( $entry, $view_id, $post_id = null ) { |
261 | 261 | self::getInstance()->set_entry( $entry ); |
262 | 262 | |
263 | - $base = GravityView_API::directory_link( $post_id ? : $view_id, true ); |
|
263 | + $base = GravityView_API::directory_link( $post_id ?: $view_id, true ); |
|
264 | 264 | |
265 | 265 | if ( empty( $base ) ) { |
266 | 266 | gravityview()->log->error( 'Post ID does not exist: {post_id}', array( 'post_id' => $post_id ) ); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | } |
269 | 269 | |
270 | 270 | // Use the slug instead of the ID for consistent security |
271 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
271 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
272 | 272 | |
273 | 273 | $actionurl = add_query_arg( array( |
274 | 274 | 'action' => 'duplicate', |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | 'view_id' => $view_id, |
278 | 278 | ), $base ); |
279 | 279 | |
280 | - $url = wp_nonce_url( $actionurl, 'duplicate_'.$entry_slug, 'duplicate' ); |
|
280 | + $url = wp_nonce_url( $actionurl, 'duplicate_' . $entry_slug, 'duplicate' ); |
|
281 | 281 | |
282 | 282 | return $url; |
283 | 283 | } |
@@ -300,12 +300,12 @@ discard block |
||
300 | 300 | public function process_duplicate() { |
301 | 301 | |
302 | 302 | // If the form is submitted |
303 | - if ( ! isset( $_GET['action'] ) || 'duplicate' !== $_GET['action'] || ! isset( $_GET['entry_id'] ) ) { |
|
303 | + if ( ! isset( $_GET[ 'action' ] ) || 'duplicate' !== $_GET[ 'action' ] || ! isset( $_GET[ 'entry_id' ] ) ) { |
|
304 | 304 | return; |
305 | 305 | } |
306 | 306 | |
307 | 307 | // Make sure it's a GravityView request |
308 | - $valid_nonce_key = wp_verify_nonce( $_GET['duplicate'], self::get_nonce_key( $_GET['entry_id'] ) ); |
|
308 | + $valid_nonce_key = wp_verify_nonce( $_GET[ 'duplicate' ], self::get_nonce_key( $_GET[ 'entry_id' ] ) ); |
|
309 | 309 | |
310 | 310 | if ( ! $valid_nonce_key ) { |
311 | 311 | gravityview()->log->debug( 'Duplicate entry not processed: nonce validation failed.' ); |
@@ -313,7 +313,7 @@ discard block |
||
313 | 313 | } |
314 | 314 | |
315 | 315 | // Get the entry slug |
316 | - $entry_slug = esc_attr( $_GET['entry_id'] ); |
|
316 | + $entry_slug = esc_attr( $_GET[ 'entry_id' ] ); |
|
317 | 317 | |
318 | 318 | // See if there's an entry there |
319 | 319 | $entry = gravityview_get_entry( $entry_slug, true, false ); |
@@ -403,15 +403,15 @@ discard block |
||
403 | 403 | return new WP_Error( 'gravityview-duplicate-entry-missing', __( 'The entry does not exist.', 'gravityview' ) ); |
404 | 404 | } |
405 | 405 | |
406 | - $row['id'] = null; |
|
407 | - $row['date_created'] = date( 'Y-m-d H:i:s', time() ); |
|
408 | - $row['date_updated'] = $row['date_created']; |
|
409 | - $row['is_starred'] = false; |
|
410 | - $row['is_read'] = false; |
|
411 | - $row['ip'] = GFFormsModel::get_ip(); |
|
412 | - $row['source_url'] = esc_url_raw( remove_query_arg( array( 'action', 'gvid' ) ) ); |
|
413 | - $row['user_agent'] = \GV\Utils::_SERVER( 'HTTP_USER_AGENT' ); |
|
414 | - $row['created_by'] = wp_get_current_user()->ID; |
|
406 | + $row[ 'id' ] = null; |
|
407 | + $row[ 'date_created' ] = date( 'Y-m-d H:i:s', time() ); |
|
408 | + $row[ 'date_updated' ] = $row[ 'date_created' ]; |
|
409 | + $row[ 'is_starred' ] = false; |
|
410 | + $row[ 'is_read' ] = false; |
|
411 | + $row[ 'ip' ] = GFFormsModel::get_ip(); |
|
412 | + $row[ 'source_url' ] = esc_url_raw( remove_query_arg( array( 'action', 'gvid' ) ) ); |
|
413 | + $row[ 'user_agent' ] = \GV\Utils::_SERVER( 'HTTP_USER_AGENT' ); |
|
414 | + $row[ 'created_by' ] = wp_get_current_user()->ID; |
|
415 | 415 | |
416 | 416 | /** |
417 | 417 | * @filter `gravityview/entry/duplicate/details` Modify the new entry details before it's created. |
@@ -439,15 +439,15 @@ discard block |
||
439 | 439 | |
440 | 440 | $save_this_meta = array(); |
441 | 441 | foreach ( $duplicate_meta->get_output() as $m ) { |
442 | - $save_this_meta[] = array( |
|
443 | - 'meta_key' => $m['meta_key'], |
|
444 | - 'meta_value' => $m['meta_value'], |
|
445 | - 'item_index' => $m['item_index'], |
|
442 | + $save_this_meta[ ] = array( |
|
443 | + 'meta_key' => $m[ 'meta_key' ], |
|
444 | + 'meta_value' => $m[ 'meta_value' ], |
|
445 | + 'item_index' => $m[ 'item_index' ], |
|
446 | 446 | ); |
447 | 447 | } |
448 | 448 | |
449 | 449 | // Update the row ID for later usage |
450 | - $row['id'] = $duplicated_id; |
|
450 | + $row[ 'id' ] = $duplicated_id; |
|
451 | 451 | |
452 | 452 | /** |
453 | 453 | * @filter `gravityview/entry/duplicate/meta` Modify the new entry meta details. |
@@ -458,8 +458,8 @@ discard block |
||
458 | 458 | $save_this_meta = apply_filters( 'gravityview/entry/duplicate/meta', $save_this_meta, $row, $entry ); |
459 | 459 | |
460 | 460 | foreach ( $save_this_meta as $data ) { |
461 | - $data['form_id'] = $entry['form_id']; |
|
462 | - $data['entry_id'] = $duplicated_id; |
|
461 | + $data[ 'form_id' ] = $entry[ 'form_id' ]; |
|
462 | + $data[ 'entry_id' ] = $duplicated_id; |
|
463 | 463 | |
464 | 464 | if ( ! $wpdb->insert( $entry_meta_table, $data ) ) { |
465 | 465 | return new WP_Error( 'gravityview-duplicate-entry-db-meta', __( 'There was an error duplicating the entry.', 'gravityview' ) ); |
@@ -493,13 +493,13 @@ discard block |
||
493 | 493 | public function verify_nonce() { |
494 | 494 | |
495 | 495 | // No duplicate entry request was made |
496 | - if ( empty( $_GET['entry_id'] ) || empty( $_GET['duplicate'] ) ) { |
|
496 | + if ( empty( $_GET[ 'entry_id' ] ) || empty( $_GET[ 'duplicate' ] ) ) { |
|
497 | 497 | return false; |
498 | 498 | } |
499 | 499 | |
500 | - $nonce_key = self::get_nonce_key( $_GET['entry_id'] ); |
|
500 | + $nonce_key = self::get_nonce_key( $_GET[ 'entry_id' ] ); |
|
501 | 501 | |
502 | - $valid = wp_verify_nonce( $_GET['duplicate'], $nonce_key ); |
|
502 | + $valid = wp_verify_nonce( $_GET[ 'duplicate' ], $nonce_key ); |
|
503 | 503 | |
504 | 504 | /** |
505 | 505 | * @filter `gravityview/duplicate-entry/verify_nonce` Override Duplicate Entry nonce validation. Return true to declare nonce valid. |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | */ |
531 | 531 | $confirm = apply_filters( 'gravityview/duplicate-entry/confirm-text', $confirm ); |
532 | 532 | |
533 | - return 'return window.confirm(\''. esc_js( $confirm ) .'\');'; |
|
533 | + return 'return window.confirm(\'' . esc_js( $confirm ) . '\');'; |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | /** |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | public static function check_user_cap_duplicate_entry( $entry, $field, $view_id ) { |
585 | 585 | $current_user = wp_get_current_user(); |
586 | 586 | |
587 | - $entry_id = isset( $entry['id'] ) ? $entry['id'] : NULL; |
|
587 | + $entry_id = isset( $entry[ 'id' ] ) ? $entry[ 'id' ] : NULL; |
|
588 | 588 | |
589 | 589 | // Or if they can duplicate any entries (as defined in Gravity Forms), we're good. |
590 | 590 | if ( GVCommon::has_cap( array( 'gravityforms_edit_entries' ), $entry_id ) ) { |
@@ -599,17 +599,17 @@ discard block |
||
599 | 599 | if ( ! empty( $field ) ) { |
600 | 600 | |
601 | 601 | // If capability is not defined, something is not right! |
602 | - if ( empty( $field['allow_duplicate_cap'] ) ) { |
|
602 | + if ( empty( $field[ 'allow_duplicate_cap' ] ) ) { |
|
603 | 603 | |
604 | 604 | gravityview()->log->error( 'Cannot read duplicate entry field caps', array( 'data' => $field ) ); |
605 | 605 | |
606 | 606 | return false; |
607 | 607 | } |
608 | 608 | |
609 | - if ( GVCommon::has_cap( $field['allow_duplicate_cap'] ) ) { |
|
609 | + if ( GVCommon::has_cap( $field[ 'allow_duplicate_cap' ] ) ) { |
|
610 | 610 | |
611 | 611 | // Do not return true if cap is read, as we need to check if the current user created the entry |
612 | - if ( 'read' !== $field['allow_duplicate_cap'] ) { |
|
612 | + if ( 'read' !== $field[ 'allow_duplicate_cap' ] ) { |
|
613 | 613 | return true; |
614 | 614 | } |
615 | 615 | |
@@ -622,7 +622,7 @@ discard block |
||
622 | 622 | |
623 | 623 | } |
624 | 624 | |
625 | - if ( ! isset( $entry['created_by'] ) ) { |
|
625 | + if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
626 | 626 | |
627 | 627 | gravityview()->log->error( 'Cannot duplicate entry; entry `created_by` doesn\'t exist.' ); |
628 | 628 | |
@@ -634,7 +634,7 @@ discard block |
||
634 | 634 | |
635 | 635 | $current_view = gravityview_get_current_view_data( $view_id ); |
636 | 636 | |
637 | - $user_duplicate = isset( $current_view['atts']['user_duplicate'] ) ? $current_view['atts']['user_duplicate'] : false; |
|
637 | + $user_duplicate = isset( $current_view[ 'atts' ][ 'user_duplicate' ] ) ? $current_view[ 'atts' ][ 'user_duplicate' ] : false; |
|
638 | 638 | |
639 | 639 | if ( empty( $user_duplicate ) ) { |
640 | 640 | |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | } |
646 | 646 | |
647 | 647 | // If the logged-in user is the same as the user who created the entry, we're good. |
648 | - if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
648 | + if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
649 | 649 | |
650 | 650 | gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id' => $current_user->ID ) ); |
651 | 651 | |
@@ -670,16 +670,16 @@ discard block |
||
670 | 670 | */ |
671 | 671 | public function display_message( $current_view_id = 0 ) { |
672 | 672 | |
673 | - if ( empty( $_GET['status'] ) || ! self::verify_nonce() ) { |
|
673 | + if ( empty( $_GET[ 'status' ] ) || ! self::verify_nonce() ) { |
|
674 | 674 | return; |
675 | 675 | } |
676 | 676 | |
677 | 677 | // Entry wasn't duplicateded from current View |
678 | - if ( isset( $_GET['view_id'] ) && ( intval( $_GET['view_id'] ) !== intval( $current_view_id ) ) ) { |
|
678 | + if ( isset( $_GET[ 'view_id' ] ) && ( intval( $_GET[ 'view_id' ] ) !== intval( $current_view_id ) ) ) { |
|
679 | 679 | return; |
680 | 680 | } |
681 | 681 | |
682 | - $status = esc_attr( $_GET['status'] ); |
|
682 | + $status = esc_attr( $_GET[ 'status' ] ); |
|
683 | 683 | $message_from_url = \GV\Utils::_GET( 'message' ); |
684 | 684 | $message_from_url = rawurldecode( stripslashes_deep( $message_from_url ) ); |
685 | 685 | $class = ''; |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | $message = apply_filters( 'gravityview/duplicate-entry/message', esc_attr( $message ), $status, $message_from_url ); |
706 | 706 | |
707 | 707 | // DISPLAY ERROR/SUCCESS MESSAGE |
708 | - echo '<div class="gv-notice' . esc_attr( $class ) .'">'. $message .'</div>'; |
|
708 | + echo '<div class="gv-notice' . esc_attr( $class ) . '">' . $message . '</div>'; |
|
709 | 709 | } |
710 | 710 | |
711 | 711 |