@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | * |
358 | 358 | * @param array $file_paths List of template paths ordered |
359 | 359 | * |
360 | - * @return array File paths with `./` and `./partials/` paths added |
|
360 | + * @return string[] File paths with `./` and `./partials/` paths added |
|
361 | 361 | */ |
362 | 362 | public function add_template_path( $file_paths ) { |
363 | 363 | |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | * @param array $entry |
550 | 550 | * @param array $data Note details array |
551 | 551 | * |
552 | - * @return int|WP_Error |
|
552 | + * @return integer |
|
553 | 553 | */ |
554 | 554 | private function add_note( $entry, $data ) { |
555 | 555 | global $current_user, $wpdb; |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * |
271 | 271 | * Verify permissions. Check expected $_POST. Parse args, then send to process_delete_notes |
272 | 272 | * |
273 | - * @since 1.17 |
|
273 | + * @since 1.17 |
|
274 | 274 | * |
275 | 275 | * @see process_delete_notes |
276 | 276 | * |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | 'subject-label' => __( 'Subject', 'gravityview' ), |
424 | 424 | 'subject' => __( 'Email subject', 'gravityview' ), |
425 | 425 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
426 | - 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
426 | + 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
427 | 427 | 'also-email' => __( 'Also email this note to', 'gravityview' ), |
428 | 428 | 'error-add-note' => __( 'There was an error adding the note.', 'gravityview' ), |
429 | 429 | 'error-invalid' => __( 'The request was invalid. Refresh the page and try again.', 'gravityview' ), |
@@ -493,11 +493,11 @@ discard block |
||
493 | 493 | |
494 | 494 | if ( $context instanceof \GV\Template_Context ) { |
495 | 495 | |
496 | - ob_start(); |
|
497 | - $context->template->get_template_part( 'note', 'detail', true ); |
|
498 | - $note_detail_html = ob_get_clean(); |
|
496 | + ob_start(); |
|
497 | + $context->template->get_template_part( 'note', 'detail', true ); |
|
498 | + $note_detail_html = ob_get_clean(); |
|
499 | 499 | |
500 | - ob_start(); |
|
500 | + ob_start(); |
|
501 | 501 | $context->template->get_template_part( 'note', $note_row_template, true ); |
502 | 502 | $note_row = ob_get_clean(); |
503 | 503 | } else { |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | 'gv-note-to-custom' => '', |
757 | 757 | 'gv-note-subject' => '', |
758 | 758 | 'gv-note-content' => '', |
759 | - 'current-url' => '', |
|
759 | + 'current-url' => '', |
|
760 | 760 | ); |
761 | 761 | |
762 | 762 | $current_user = wp_get_current_user(); |
@@ -808,9 +808,9 @@ discard block |
||
808 | 808 | $message .= $this->get_email_footer( $email_footer, $is_html, $email_data ); |
809 | 809 | |
810 | 810 | /** |
811 | - * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
811 | + * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
812 | 812 | * @since 1.18 |
813 | - * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
813 | + * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
814 | 814 | */ |
815 | 815 | $wpautop_email = apply_filters( 'gravityview/field/notes/wpautop_email', true ); |
816 | 816 | |
@@ -830,12 +830,12 @@ discard block |
||
830 | 830 | } |
831 | 831 | |
832 | 832 | /** |
833 | - * Get the footer for Entry Note emails |
|
834 | - * |
|
835 | - * `{url}` is replaced by the URL of the page where the note form was embedded |
|
836 | - * |
|
837 | - * @since 1.18 |
|
838 | - * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
833 | + * Get the footer for Entry Note emails |
|
834 | + * |
|
835 | + * `{url}` is replaced by the URL of the page where the note form was embedded |
|
836 | + * |
|
837 | + * @since 1.18 |
|
838 | + * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
839 | 839 | * |
840 | 840 | * @param string $email_footer The message footer value |
841 | 841 | * @param bool $is_html True: Email is being sent as HTML; False: sent as text |
@@ -844,10 +844,10 @@ discard block |
||
844 | 844 | */ |
845 | 845 | private function get_email_footer( $email_footer = '', $is_html = true, $email_data = array() ) { |
846 | 846 | |
847 | - $output = ''; |
|
847 | + $output = ''; |
|
848 | 848 | |
849 | 849 | if( ! empty( $email_footer ) ) { |
850 | - $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
850 | + $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
851 | 851 | $url = html_entity_decode( $url ); |
852 | 852 | $url = site_url( $url ); |
853 | 853 |
@@ -63,19 +63,19 @@ discard block |
||
63 | 63 | |
64 | 64 | add_shortcode( 'gv_note_add', array( 'GravityView_Field_Notes', 'get_add_note_part' ) ); |
65 | 65 | |
66 | - add_action( 'wp', array( $this, 'maybe_delete_notes'), 1000 ); |
|
67 | - add_action( 'wp_ajax_nopriv_gv_delete_notes', array( $this, 'maybe_delete_notes') ); |
|
68 | - add_action( 'wp_ajax_gv_delete_notes', array( $this, 'maybe_delete_notes') ); |
|
66 | + add_action( 'wp', array( $this, 'maybe_delete_notes' ), 1000 ); |
|
67 | + add_action( 'wp_ajax_nopriv_gv_delete_notes', array( $this, 'maybe_delete_notes' ) ); |
|
68 | + add_action( 'wp_ajax_gv_delete_notes', array( $this, 'maybe_delete_notes' ) ); |
|
69 | 69 | |
70 | - add_action( 'wp', array( $this, 'maybe_add_note'), 1000 ); |
|
71 | - add_action( 'wp_ajax_nopriv_gv_note_add', array( $this, 'maybe_add_note') ); |
|
72 | - add_action( 'wp_ajax_gv_note_add', array( $this, 'maybe_add_note') ); |
|
70 | + add_action( 'wp', array( $this, 'maybe_add_note' ), 1000 ); |
|
71 | + add_action( 'wp_ajax_nopriv_gv_note_add', array( $this, 'maybe_add_note' ) ); |
|
72 | + add_action( 'wp_ajax_gv_note_add', array( $this, 'maybe_add_note' ) ); |
|
73 | 73 | |
74 | 74 | // add template path to check for field |
75 | 75 | add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
76 | 76 | add_filter( 'gravityview/template/fields_template_paths', array( $this, 'add_template_path' ) ); |
77 | 77 | |
78 | - add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts') ); |
|
78 | + add_action( 'wp_enqueue_scripts', array( $this, 'register_scripts' ) ); |
|
79 | 79 | add_action( 'gravityview/field/notes/scripts', array( $this, 'enqueue_scripts' ) ); |
80 | 80 | |
81 | 81 | add_filter( 'gravityview_entry_default_fields', array( $this, 'add_entry_default_field' ), 10, 3 ); |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function add_entry_default_field( $entry_default_fields, $form, $zone ) { |
99 | 99 | |
100 | - if( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
101 | - $entry_default_fields['notes'] = array( |
|
100 | + if ( in_array( $zone, array( 'directory', 'single' ) ) ) { |
|
101 | + $entry_default_fields[ 'notes' ] = array( |
|
102 | 102 | 'label' => __( 'Entry Notes', 'gravityview' ), |
103 | 103 | 'type' => 'notes', |
104 | 104 | 'desc' => __( 'Display, add, and delete notes for an entry.', 'gravityview' ), |
@@ -131,23 +131,23 @@ discard block |
||
131 | 131 | public function enqueue_scripts() { |
132 | 132 | global $wp_actions; |
133 | 133 | |
134 | - if( ! wp_script_is( 'gravityview-notes', 'enqueued' ) ) { |
|
134 | + if ( ! wp_script_is( 'gravityview-notes', 'enqueued' ) ) { |
|
135 | 135 | wp_enqueue_style( 'gravityview-notes' ); |
136 | 136 | wp_enqueue_script( 'gravityview-notes' ); |
137 | 137 | } |
138 | 138 | |
139 | - if( ! wp_script_is( 'gravityview-notes', 'done' ) ) { |
|
139 | + if ( ! wp_script_is( 'gravityview-notes', 'done' ) ) { |
|
140 | 140 | |
141 | 141 | $strings = self::strings(); |
142 | 142 | |
143 | 143 | wp_localize_script( 'gravityview-notes', 'GVNotes', array( |
144 | 144 | 'ajaxurl' => admin_url( 'admin-ajax.php' ), |
145 | 145 | 'text' => array( |
146 | - 'processing' => $strings['processing'], |
|
147 | - 'delete_confirm' => $strings['delete-confirm'], |
|
148 | - 'note_added' => $strings['added-note'], |
|
149 | - 'error_invalid' => $strings['error-invalid'], |
|
150 | - 'error_empty_note' => $strings['error-empty-note'], |
|
146 | + 'processing' => $strings[ 'processing' ], |
|
147 | + 'delete_confirm' => $strings[ 'delete-confirm' ], |
|
148 | + 'note_added' => $strings[ 'added-note' ], |
|
149 | + 'error_invalid' => $strings[ 'error-invalid' ], |
|
150 | + 'error_empty_note' => $strings[ 'error-empty-note' ], |
|
151 | 151 | ), |
152 | 152 | ) ); |
153 | 153 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * @return void |
164 | 164 | */ |
165 | 165 | function maybe_add_note() { |
166 | - if ( ! isset( $_POST['action'] ) || 'gv_note_add' !== $_POST['action'] ) { |
|
166 | + if ( ! isset( $_POST[ 'action' ] ) || 'gv_note_add' !== $_POST[ 'action' ] ) { |
|
167 | 167 | return; |
168 | 168 | } |
169 | 169 | |
@@ -176,12 +176,12 @@ discard block |
||
176 | 176 | $post = wp_unslash( $_POST ); |
177 | 177 | |
178 | 178 | if ( $this->doing_ajax ) { |
179 | - parse_str( $post['data'], $data ); |
|
179 | + parse_str( $post[ 'data' ], $data ); |
|
180 | 180 | } else { |
181 | 181 | $data = $post; |
182 | 182 | } |
183 | 183 | |
184 | - $this->process_add_note( (array) $data ); |
|
184 | + $this->process_add_note( (array)$data ); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -207,23 +207,23 @@ discard block |
||
207 | 207 | $error = false; |
208 | 208 | $success = false; |
209 | 209 | |
210 | - if( empty( $data['entry-slug'] ) ) { |
|
210 | + if ( empty( $data[ 'entry-slug' ] ) ) { |
|
211 | 211 | |
212 | - $error = self::strings('error-invalid'); |
|
212 | + $error = self::strings( 'error-invalid' ); |
|
213 | 213 | gravityview()->log->error( 'The note is missing an Entry ID.' ); |
214 | 214 | |
215 | 215 | } else { |
216 | 216 | |
217 | - $valid = wp_verify_nonce( $data['gv_note_add'], 'gv_note_add_' . $data['entry-slug'] ); |
|
217 | + $valid = wp_verify_nonce( $data[ 'gv_note_add' ], 'gv_note_add_' . $data[ 'entry-slug' ] ); |
|
218 | 218 | |
219 | 219 | $has_cap = GVCommon::has_cap( 'gravityview_add_entry_notes' ); |
220 | 220 | |
221 | - if( ! $has_cap ) { |
|
221 | + if ( ! $has_cap ) { |
|
222 | 222 | $error = self::strings( 'error-cap-add' ); |
223 | 223 | gravityview()->log->error( 'Adding a note failed: the user does not have the "gravityview_add_entry_notes" capability.' ); |
224 | 224 | } elseif ( $valid ) { |
225 | 225 | |
226 | - $entry = gravityview_get_entry( $data['entry-slug'], true, false ); |
|
226 | + $entry = gravityview_get_entry( $data[ 'entry-slug' ], true, false ); |
|
227 | 227 | |
228 | 228 | $added = $this->add_note( $entry, $data ); |
229 | 229 | |
@@ -241,22 +241,22 @@ discard block |
||
241 | 241 | $this->maybe_send_entry_notes( $note, $entry, $data ); |
242 | 242 | |
243 | 243 | if ( $note ) { |
244 | - $success = self::display_note( $note, ! empty( $data['show-delete'] ) ); |
|
244 | + $success = self::display_note( $note, ! empty( $data[ 'show-delete' ] ) ); |
|
245 | 245 | gravityview()->log->debug( 'The note was successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
246 | 246 | } else { |
247 | - $error = self::strings('error-add-note'); |
|
247 | + $error = self::strings( 'error-add-note' ); |
|
248 | 248 | gravityview()->log->error( 'The note was not successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
249 | 249 | } |
250 | 250 | } |
251 | 251 | } else { |
252 | - $error = self::strings('error-invalid'); |
|
252 | + $error = self::strings( 'error-invalid' ); |
|
253 | 253 | gravityview()->log->error( 'Nonce validation failed; the note was not created' ); |
254 | 254 | } |
255 | 255 | } |
256 | 256 | |
257 | 257 | |
258 | - if( $this->doing_ajax ) { |
|
259 | - if( $success ) { |
|
258 | + if ( $this->doing_ajax ) { |
|
259 | + if ( $success ) { |
|
260 | 260 | wp_send_json_success( array( 'html' => $success ) ); |
261 | 261 | } else { |
262 | 262 | $error = $error ? $error : self::strings( 'error-invalid' ); |
@@ -282,11 +282,11 @@ discard block |
||
282 | 282 | return; |
283 | 283 | } |
284 | 284 | |
285 | - if ( isset( $_POST['action'] ) && 'gv_delete_notes' === $_POST['action'] ) { |
|
285 | + if ( isset( $_POST[ 'action' ] ) && 'gv_delete_notes' === $_POST[ 'action' ] ) { |
|
286 | 286 | |
287 | 287 | $post = wp_unslash( $_POST ); |
288 | 288 | if ( $this->doing_ajax ) { |
289 | - parse_str( $post['data'], $data ); |
|
289 | + parse_str( $post[ 'data' ], $data ); |
|
290 | 290 | } else { |
291 | 291 | $data = $post; |
292 | 292 | } |
@@ -317,18 +317,18 @@ discard block |
||
317 | 317 | */ |
318 | 318 | function process_delete_notes( $data ) { |
319 | 319 | |
320 | - $valid = wp_verify_nonce( $data['gv_delete_notes'], 'gv_delete_notes_' . $data['entry-slug'] ); |
|
320 | + $valid = wp_verify_nonce( $data[ 'gv_delete_notes' ], 'gv_delete_notes_' . $data[ 'entry-slug' ] ); |
|
321 | 321 | $has_cap = GVCommon::has_cap( 'gravityview_delete_entry_notes' ); |
322 | 322 | $success = false; |
323 | 323 | |
324 | 324 | if ( $valid && $has_cap ) { |
325 | - GravityView_Entry_Notes::delete_notes( $data['note'] ); |
|
325 | + GravityView_Entry_Notes::delete_notes( $data[ 'note' ] ); |
|
326 | 326 | $success = true; |
327 | 327 | } |
328 | 328 | |
329 | - if( $this->doing_ajax ) { |
|
329 | + if ( $this->doing_ajax ) { |
|
330 | 330 | |
331 | - if( $success ) { |
|
331 | + if ( $success ) { |
|
332 | 332 | wp_send_json_success(); |
333 | 333 | } else { |
334 | 334 | if ( ! $valid ) { |
@@ -361,13 +361,13 @@ discard block |
||
361 | 361 | |
362 | 362 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
363 | 363 | |
364 | - unset( $field_options['show_as_link'] ); |
|
364 | + unset( $field_options[ 'show_as_link' ] ); |
|
365 | 365 | |
366 | 366 | $notes_options = array( |
367 | 367 | 'notes' => array( |
368 | 368 | 'type' => 'checkboxes', |
369 | - 'label' => __('Note Settings', 'gravityview'), |
|
370 | - 'desc' => sprintf( _x('Only users with specific capabilities will be able to view, add and delete notes. %sRead more%s.', '%s is opening and closing HTML link', 'gravityview' ), '<a href="https://docs.gravityview.co/article/311-gravityview-capabilities">', '</a>' ), |
|
369 | + 'label' => __( 'Note Settings', 'gravityview' ), |
|
370 | + 'desc' => sprintf( _x( 'Only users with specific capabilities will be able to view, add and delete notes. %sRead more%s.', '%s is opening and closing HTML link', 'gravityview' ), '<a href="https://docs.gravityview.co/article/311-gravityview-capabilities">', '</a>' ), |
|
371 | 371 | 'options' => array( |
372 | 372 | 'view' => array( |
373 | 373 | 'label' => __( 'Display notes?', 'gravityview' ), |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | 'processing' => __( 'Processing…', 'gravityview' ), |
420 | 420 | 'other-email' => __( 'Other email address', 'gravityview' ), |
421 | 421 | 'email-label' => __( 'Email address', 'gravityview' ), |
422 | - 'email-placeholder' => _x('[email protected]', 'Example email address used as a placeholder', 'gravityview'), |
|
422 | + 'email-placeholder' => _x( '[email protected]', 'Example email address used as a placeholder', 'gravityview' ), |
|
423 | 423 | 'subject-label' => __( 'Subject', 'gravityview' ), |
424 | 424 | 'subject' => __( 'Email subject', 'gravityview' ), |
425 | 425 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | */ |
440 | 440 | $strings = gv_map_deep( apply_filters( 'gravityview/field/notes/strings', $strings ), 'esc_html' ); |
441 | 441 | |
442 | - if( $key ) { |
|
442 | + if ( $key ) { |
|
443 | 443 | return isset( $strings[ $key ] ) ? $strings[ $key ] : ''; |
444 | 444 | } |
445 | 445 | |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | */ |
462 | 462 | static public function display_note( $note, $show_delete = false, $context = null ) { |
463 | 463 | |
464 | - if( ! is_object( $note ) ) { |
|
464 | + if ( ! is_object( $note ) ) { |
|
465 | 465 | return ''; |
466 | 466 | } |
467 | 467 | |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | } |
517 | 517 | |
518 | 518 | $replacements = array( |
519 | - '{note_id}' => $note_content['note_id'], |
|
519 | + '{note_id}' => $note_content[ 'note_id' ], |
|
520 | 520 | '{row_class}' => 'gv-note', |
521 | 521 | '{note_detail}' => $note_detail_html |
522 | 522 | ); |
@@ -548,13 +548,13 @@ discard block |
||
548 | 548 | |
549 | 549 | $user_data = get_userdata( $current_user->ID ); |
550 | 550 | |
551 | - $note_content = trim( $data['gv-note-content'] ); |
|
551 | + $note_content = trim( $data[ 'gv-note-content' ] ); |
|
552 | 552 | |
553 | - if( empty( $note_content ) ) { |
|
553 | + if ( empty( $note_content ) ) { |
|
554 | 554 | return new WP_Error( 'gv-add-note-empty', __( 'The note is empty.', 'gravityview' ) ); |
555 | 555 | } |
556 | 556 | |
557 | - $return = GravityView_Entry_Notes::add_note( $entry['id'], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
557 | + $return = GravityView_Entry_Notes::add_note( $entry[ 'id' ], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
558 | 558 | |
559 | 559 | return $return; |
560 | 560 | } |
@@ -574,7 +574,7 @@ discard block |
||
574 | 574 | |
575 | 575 | $atts = shortcode_atts( array( 'entry' => null ), $atts ); |
576 | 576 | |
577 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
577 | + if ( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
578 | 578 | gravityview()->log->error( 'User does not have permission to add entry notes ("gravityview_add_entry_notes").' ); |
579 | 579 | return ''; |
580 | 580 | } |
@@ -596,8 +596,8 @@ discard block |
||
596 | 596 | |
597 | 597 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
598 | 598 | |
599 | - if ( $atts['entry'] ) { |
|
600 | - $entry = GFAPI::get_entry( $atts['entry'] ); |
|
599 | + if ( $atts[ 'entry' ] ) { |
|
600 | + $entry = GFAPI::get_entry( $atts[ 'entry' ] ); |
|
601 | 601 | } |
602 | 602 | |
603 | 603 | if ( ! isset( $entry ) || ! $entry ) { |
@@ -615,14 +615,14 @@ discard block |
||
615 | 615 | |
616 | 616 | // Only generate the dropdown if the field settings allow it |
617 | 617 | $email_fields = ''; |
618 | - if( ! empty( $visibility_settings['email'] ) ) { |
|
618 | + if ( ! empty( $visibility_settings[ 'email' ] ) ) { |
|
619 | 619 | $email_fields = self::get_note_email_fields( $entry_slug ); |
620 | 620 | } |
621 | 621 | |
622 | 622 | $add_note_html = str_replace( '{entry_slug}', $entry_slug, $add_note_html ); |
623 | 623 | $add_note_html = str_replace( '{nonce_field}', $nonce_field, $add_note_html ); |
624 | - $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings['delete'] ) ? 0 : $visibility_settings['delete'] ), $add_note_html ); |
|
625 | - $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
624 | + $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings[ 'delete' ] ) ? 0 : $visibility_settings[ 'delete' ] ), $add_note_html ); |
|
625 | + $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
626 | 626 | $add_note_html = str_replace( '{url}', esc_url_raw( add_query_arg( array() ) ), $add_note_html ); |
627 | 627 | |
628 | 628 | return $add_note_html; |
@@ -647,8 +647,8 @@ discard block |
||
647 | 647 | $note_emails = array(); |
648 | 648 | |
649 | 649 | foreach ( $email_fields as $email_field ) { |
650 | - if ( ! empty( $entry["{$email_field->id}"] ) && is_email( $entry["{$email_field->id}"] ) ) { |
|
651 | - $note_emails[] = $entry["{$email_field->id}"]; |
|
650 | + if ( ! empty( $entry[ "{$email_field->id}" ] ) && is_email( $entry[ "{$email_field->id}" ] ) ) { |
|
651 | + $note_emails[ ] = $entry[ "{$email_field->id}" ]; |
|
652 | 652 | } |
653 | 653 | } |
654 | 654 | |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | */ |
661 | 661 | $note_emails = apply_filters( 'gravityview/field/notes/emails', $note_emails, $entry ); |
662 | 662 | |
663 | - return (array) $note_emails; |
|
663 | + return (array)$note_emails; |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | /** |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | */ |
677 | 677 | private static function get_note_email_fields( $entry_slug = '' ) { |
678 | 678 | |
679 | - if( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
679 | + if ( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
680 | 680 | gravityview()->log->error( 'User does not have permission to email entry notes ("gravityview_email_entry_notes").' ); |
681 | 681 | return ''; |
682 | 682 | } |
@@ -698,27 +698,27 @@ discard block |
||
698 | 698 | |
699 | 699 | if ( ! empty( $note_emails ) || $include_custom ) { ?> |
700 | 700 | <div class="gv-note-email-container"> |
701 | - <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings['also-email']; ?></label> |
|
701 | + <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings[ 'also-email' ]; ?></label> |
|
702 | 702 | <select class="gv-note-email-to" name="gv-note-to" id="gv-note-email-to-<?php echo $entry_slug_esc; ?>"> |
703 | - <option value=""><?php echo $strings['also-email']; ?></option> |
|
703 | + <option value=""><?php echo $strings[ 'also-email' ]; ?></option> |
|
704 | 704 | <?php foreach ( $note_emails as $email ) { |
705 | 705 | ?> |
706 | 706 | <option value="<?php echo esc_attr( $email ); ?>"><?php echo esc_html( $email ); ?></option> |
707 | 707 | <?php } |
708 | - if( $include_custom ) { ?> |
|
709 | - <option value="custom"><?php echo self::strings('other-email'); ?></option> |
|
708 | + if ( $include_custom ) { ?> |
|
709 | + <option value="custom"><?php echo self::strings( 'other-email' ); ?></option> |
|
710 | 710 | <?php } ?> |
711 | 711 | </select> |
712 | 712 | <fieldset class="gv-note-to-container"> |
713 | - <?php if( $include_custom ) { ?> |
|
713 | + <?php if ( $include_custom ) { ?> |
|
714 | 714 | <div class='gv-note-to-custom-container'> |
715 | - <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings['email-label']; ?></label> |
|
716 | - <input type="text" name="gv-note-to-custom" placeholder="<?php echo $strings['email-placeholder']; ?>" id="gv-note-to-custom-<?php echo $entry_slug_esc; ?>" value="" /> |
|
715 | + <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'email-label' ]; ?></label> |
|
716 | + <input type="text" name="gv-note-to-custom" placeholder="<?php echo $strings[ 'email-placeholder' ]; ?>" id="gv-note-to-custom-<?php echo $entry_slug_esc; ?>" value="" /> |
|
717 | 717 | </div> |
718 | 718 | <?php } ?> |
719 | 719 | <div class='gv-note-subject-container'> |
720 | - <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings['subject-label']; ?></label> |
|
721 | - <input type="text" name="gv-note-subject" placeholder="<?php echo $strings['subject']; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
720 | + <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'subject-label' ]; ?></label> |
|
721 | + <input type="text" name="gv-note-subject" placeholder="<?php echo $strings[ 'subject' ]; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
722 | 722 | </div> |
723 | 723 | </fieldset> |
724 | 724 | </div> |
@@ -741,7 +741,7 @@ discard block |
||
741 | 741 | */ |
742 | 742 | private function maybe_send_entry_notes( $note = false, $entry, $data ) { |
743 | 743 | |
744 | - if( ! $note || ! GVCommon::has_cap('gravityview_email_entry_notes') ) { |
|
744 | + if ( ! $note || ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
745 | 745 | gravityview()->log->debug( 'User doesn\'t have "gravityview_email_entry_notes" cap, or $note is empty', array( 'data' => $note ) ); |
746 | 746 | return; |
747 | 747 | } |
@@ -749,7 +749,7 @@ discard block |
||
749 | 749 | gravityview()->log->debug( '$data', array( 'data' => $data ) ); |
750 | 750 | |
751 | 751 | //emailing notes if configured |
752 | - if ( ! empty( $data['gv-note-to'] ) ) { |
|
752 | + if ( ! empty( $data[ 'gv-note-to' ] ) ) { |
|
753 | 753 | |
754 | 754 | $default_data = array( |
755 | 755 | 'gv-note-to' => '', |
@@ -759,11 +759,11 @@ discard block |
||
759 | 759 | 'current-url' => '', |
760 | 760 | ); |
761 | 761 | |
762 | - $current_user = wp_get_current_user(); |
|
762 | + $current_user = wp_get_current_user(); |
|
763 | 763 | $email_data = wp_parse_args( $data, $default_data ); |
764 | 764 | |
765 | - $from = $current_user->user_email; |
|
766 | - $to = $email_data['gv-note-to']; |
|
765 | + $from = $current_user->user_email; |
|
766 | + $to = $email_data[ 'gv-note-to' ]; |
|
767 | 767 | |
768 | 768 | /** |
769 | 769 | * Documented in get_note_email_fields |
@@ -771,8 +771,8 @@ discard block |
||
771 | 771 | */ |
772 | 772 | $include_custom = apply_filters( 'gravityview/field/notes/custom-email', true ); |
773 | 773 | |
774 | - if( 'custom' === $to && $include_custom ) { |
|
775 | - $to = $email_data['gv-note-to-custom']; |
|
774 | + if ( 'custom' === $to && $include_custom ) { |
|
775 | + $to = $email_data[ 'gv-note-to-custom' ]; |
|
776 | 776 | gravityview()->log->debug( 'Sending note to a custom email address: {to}' . array( 'to' => $to ) ); |
777 | 777 | } |
778 | 778 | |
@@ -783,13 +783,13 @@ discard block |
||
783 | 783 | |
784 | 784 | $bcc = false; |
785 | 785 | $reply_to = $from; |
786 | - $subject = trim( $email_data['gv-note-subject'] ); |
|
786 | + $subject = trim( $email_data[ 'gv-note-subject' ] ); |
|
787 | 787 | |
788 | 788 | // We use empty() here because GF uses empty to check against, too. `0` isn't a valid subject to GF |
789 | 789 | $subject = empty( $subject ) ? self::strings( 'default-email-subject' ) : $subject; |
790 | - $message = $email_data['gv-note-content']; |
|
790 | + $message = $email_data[ 'gv-note-content' ]; |
|
791 | 791 | $email_footer = self::strings( 'email-footer' ); |
792 | - $from_name = $current_user->display_name; |
|
792 | + $from_name = $current_user->display_name; |
|
793 | 793 | $message_format = 'html'; |
794 | 794 | |
795 | 795 | /** |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | |
821 | 821 | GVCommon::send_email( $from, $to, $bcc, $reply_to, $subject, $message, $from_name, $message_format, '', $entry, false ); |
822 | 822 | |
823 | - $form = isset( $entry['form_id'] ) ? GFAPI::get_form( $entry['form_id'] ) : array(); |
|
823 | + $form = isset( $entry[ 'form_id' ] ) ? GFAPI::get_form( $entry[ 'form_id' ] ) : array(); |
|
824 | 824 | |
825 | 825 | /** |
826 | 826 | * @see https://www.gravityhelp.com/documentation/article/10146-2/ It's here for compatibility with Gravity Forms |
@@ -846,7 +846,7 @@ discard block |
||
846 | 846 | |
847 | 847 | $output = ''; |
848 | 848 | |
849 | - if( ! empty( $email_footer ) ) { |
|
849 | + if ( ! empty( $email_footer ) ) { |
|
850 | 850 | $url = \GV\Utils::get( $email_data, 'current-url' ); |
851 | 851 | $url = html_entity_decode( $url ); |
852 | 852 | $url = site_url( $url ); |
@@ -67,20 +67,20 @@ discard block |
||
67 | 67 | $result = array(); |
68 | 68 | if ( ! $lock_holder_user_id ) { |
69 | 69 | $this->set_lock( $object_id ); |
70 | - $result['html'] = __( 'You now have control', 'gravityview' ); |
|
71 | - $result['status'] = 'lock_obtained'; |
|
70 | + $result[ 'html' ] = __( 'You now have control', 'gravityview' ); |
|
71 | + $result[ 'status' ] = 'lock_obtained'; |
|
72 | 72 | } else { |
73 | 73 | |
74 | - if( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
74 | + if ( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
75 | 75 | $user = get_userdata( $lock_holder_user_id ); |
76 | - $result['html'] = sprintf( __( 'Your request has been sent to %s.', 'gravityview' ), $user->display_name ); |
|
76 | + $result[ 'html' ] = sprintf( __( 'Your request has been sent to %s.', 'gravityview' ), $user->display_name ); |
|
77 | 77 | } else { |
78 | - $result['html'] = __( 'Your request has been sent.', 'gravityview' ); |
|
78 | + $result[ 'html' ] = __( 'Your request has been sent.', 'gravityview' ); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | $this->update_lock_request_meta( $object_id, $user_id ); |
82 | 82 | |
83 | - $result['status'] = 'lock_requested'; |
|
83 | + $result[ 'status' ] = 'lock_requested'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | return $result; |
@@ -122,19 +122,19 @@ discard block |
||
122 | 122 | $continue_enqueuing = false; |
123 | 123 | |
124 | 124 | // If any Views being loaded have entry locking, enqueue the scripts |
125 | - foreach( $views->all() as $view ) { |
|
125 | + foreach ( $views->all() as $view ) { |
|
126 | 126 | |
127 | 127 | // Make sure the View has edit locking enabled |
128 | - if( ! $view->settings->get( 'edit_locking' ) ) { |
|
128 | + if ( ! $view->settings->get( 'edit_locking' ) ) { |
|
129 | 129 | continue; |
130 | 130 | } |
131 | 131 | |
132 | 132 | // Make sure that the entry belongs to one of the forms connected to one of the Views in this request |
133 | 133 | $joined_forms = $view::get_joined_forms( $view->ID ); |
134 | 134 | |
135 | - $entry_form_id = $entry_array['form_id']; |
|
135 | + $entry_form_id = $entry_array[ 'form_id' ]; |
|
136 | 136 | |
137 | - if( ! isset( $joined_forms[ $entry_form_id ] ) ) { |
|
137 | + if ( ! isset( $joined_forms[ $entry_form_id ] ) ) { |
|
138 | 138 | continue; |
139 | 139 | } |
140 | 140 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | break; |
144 | 144 | } |
145 | 145 | |
146 | - if( ! $continue_enqueuing ) { |
|
146 | + if ( ! $continue_enqueuing ) { |
|
147 | 147 | return; |
148 | 148 | } |
149 | 149 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | */ |
164 | 164 | protected function enqueue_scripts( $entry ) { |
165 | 165 | |
166 | - $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || isset( $_GET['gform_debug'] ) ? '' : '.min'; |
|
166 | + $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG || isset( $_GET[ 'gform_debug' ] ) ? '' : '.min'; |
|
167 | 167 | $locking_path = GFCommon::get_base_url() . '/includes/locking/'; |
168 | 168 | |
169 | 169 | wp_enqueue_script( 'gforms_locking', $locking_path . "js/locking{$min}.js", array( 'jquery', 'heartbeat' ), GFCommon::$version ); |
@@ -172,20 +172,20 @@ discard block |
||
172 | 172 | $translations = array_map( 'wp_strip_all_tags', $this->get_strings() ); |
173 | 173 | |
174 | 174 | $strings = array( |
175 | - 'noResponse' => $translations['no_response'], |
|
176 | - 'requestAgain' => $translations['request_again'], |
|
177 | - 'requestError' => $translations['request_error'], |
|
178 | - 'gainedControl' => $translations['gained_control'], |
|
179 | - 'rejected' => $translations['request_rejected'], |
|
180 | - 'pending' => $translations['request_pending'], |
|
175 | + 'noResponse' => $translations[ 'no_response' ], |
|
176 | + 'requestAgain' => $translations[ 'request_again' ], |
|
177 | + 'requestError' => $translations[ 'request_error' ], |
|
178 | + 'gainedControl' => $translations[ 'gained_control' ], |
|
179 | + 'rejected' => $translations[ 'request_rejected' ], |
|
180 | + 'pending' => $translations[ 'request_pending' ], |
|
181 | 181 | ); |
182 | 182 | |
183 | - $lock_user_id = $this->check_lock( $entry['id'] ); |
|
183 | + $lock_user_id = $this->check_lock( $entry[ 'id' ] ); |
|
184 | 184 | |
185 | 185 | $vars = array( |
186 | 186 | 'hasLock' => ! $lock_user_id ? 1 : 0, |
187 | 187 | 'lockUI' => $this->get_lock_ui( $lock_user_id ), |
188 | - 'objectID' => $entry['id'], |
|
188 | + 'objectID' => $entry[ 'id' ], |
|
189 | 189 | 'objectType' => 'entry', |
190 | 190 | 'strings' => $strings, |
191 | 191 | ); |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | $hidden = $locked ? '' : ' hidden'; |
216 | 216 | if ( $locked ) { |
217 | 217 | |
218 | - if( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
218 | + if ( GVCommon::has_cap( 'gravityforms_edit_entries' ) ) { |
|
219 | 219 | $avatar = get_avatar( $user->ID, 64 ); |
220 | 220 | $person_editing_text = $user->display_name; |
221 | 221 | } else { |
@@ -322,11 +322,11 @@ discard block |
||
322 | 322 | |
323 | 323 | $current_url = add_query_arg( $wp->query_string, '', home_url( $wp->request ) ); |
324 | 324 | |
325 | - if ( isset( $_GET['get-edit-lock'] ) ) { |
|
325 | + if ( isset( $_GET[ 'get-edit-lock' ] ) ) { |
|
326 | 326 | $this->set_lock( $entry_id ); |
327 | 327 | echo '<script>window.location = ' . json_encode( remove_query_arg( 'get-edit-lock', $current_url ) ) . ';</script>'; |
328 | 328 | exit(); |
329 | - } else if ( isset( $_GET['release-edit-lock'] ) ) { |
|
329 | + } else if ( isset( $_GET[ 'release-edit-lock' ] ) ) { |
|
330 | 330 | $this->delete_lock_meta( $entry_id ); |
331 | 331 | $current_url = remove_query_arg( 'edit', $current_url ); |
332 | 332 | echo '<script>window.location = ' . json_encode( remove_query_arg( 'release-edit-lock', $current_url ) ) . ';</script>'; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | /** @var WP_Admin_Bar $wp_admin_bar */ |
39 | 39 | global $wp_admin_bar; |
40 | 40 | |
41 | - if( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
41 | + if ( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
42 | 42 | return; |
43 | 43 | } |
44 | 44 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | 'meta' => array( |
104 | 104 | 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), $entry->get_slug() ), |
105 | 105 | ), |
106 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry['form_id'], $entry['id'] ) ) ), |
|
106 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry[ 'form_id' ], $entry[ 'id' ] ) ) ), |
|
107 | 107 | ) ); |
108 | 108 | |
109 | 109 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | /** @var WP_Admin_Bar $wp_admin_bar */ |
120 | 120 | global $wp_admin_bar; |
121 | 121 | |
122 | - if( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
122 | + if ( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
123 | 123 | |
124 | 124 | $view_data = GravityView_View_Data::getInstance(); |
125 | 125 | $views = $view_data->get_views(); |
@@ -131,21 +131,21 @@ discard block |
||
131 | 131 | $added_views = array(); |
132 | 132 | |
133 | 133 | foreach ( $views as $view ) { |
134 | - $view = \GV\View::by_id( $view['id'] ); |
|
134 | + $view = \GV\View::by_id( $view[ 'id' ] ); |
|
135 | 135 | $view_id = $view->ID; |
136 | 136 | $form_id = $view->form ? $view->form->ID : null; |
137 | 137 | |
138 | 138 | $edit_view_title = __( 'Edit View', 'gravityview' ); |
139 | 139 | $edit_form_title = __( 'Edit Form', 'gravityview' ); |
140 | 140 | |
141 | - if( sizeof( $views ) > 1 ) { |
|
141 | + if ( sizeof( $views ) > 1 ) { |
|
142 | 142 | $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view_id ); |
143 | 143 | $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $form_id ); |
144 | 144 | } |
145 | 145 | |
146 | - if( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
146 | + if ( GVCommon::has_cap( 'edit_gravityview', $view_id ) && ! in_array( $view_id, $added_views ) ) { |
|
147 | 147 | |
148 | - $added_views[] = $view_id; |
|
148 | + $added_views[ ] = $view_id; |
|
149 | 149 | |
150 | 150 | $wp_admin_bar->add_menu( array( |
151 | 151 | 'id' => 'edit-view-' . $view_id, |
@@ -155,9 +155,9 @@ discard block |
||
155 | 155 | ) ); |
156 | 156 | } |
157 | 157 | |
158 | - if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
158 | + if ( ! empty( $form_id ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $form_id ) && ! in_array( $form_id, $added_forms ) ) { |
|
159 | 159 | |
160 | - $added_forms[] = $form_id; |
|
160 | + $added_forms[ ] = $form_id; |
|
161 | 161 | |
162 | 162 | $wp_admin_bar->add_menu( array( |
163 | 163 | 'id' => 'edit-form-' . $form_id, |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | |
114 | 114 | $args = array(); |
115 | 115 | |
116 | - $view_id = is_null ( $view ) ? null : $view->ID; |
|
116 | + $view_id = is_null( $view ) ? null : $view->ID; |
|
117 | 117 | |
118 | 118 | $permalink = null; |
119 | 119 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | |
127 | 127 | $view_collection = View_Collection::from_post( $post ); |
128 | 128 | |
129 | - if( 1 < $view_collection->count() ) { |
|
130 | - $args['gvid'] = $view_id; |
|
129 | + if ( 1 < $view_collection->count() ) { |
|
130 | + $args[ 'gvid' ] = $view_id; |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | } |
@@ -157,21 +157,21 @@ discard block |
||
157 | 157 | */ |
158 | 158 | $link_parts = explode( '?', $permalink ); |
159 | 159 | |
160 | - $query = ! empty( $link_parts[1] ) ? '?' . $link_parts[1] : ''; |
|
160 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
161 | 161 | |
162 | - $permalink = trailingslashit( $link_parts[0] ) . $entry_endpoint_name . '/'. $entry_slug .'/' . $query; |
|
162 | + $permalink = trailingslashit( $link_parts[ 0 ] ) . $entry_endpoint_name . '/' . $entry_slug . '/' . $query; |
|
163 | 163 | } else { |
164 | 164 | $args[ $entry_endpoint_name ] = $entry_slug; |
165 | 165 | } |
166 | 166 | |
167 | 167 | if ( $track_directory ) { |
168 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
169 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
168 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
169 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | if ( $sort = Utils::_GET( 'sort' ) ) { |
173 | - $args['sort'] = $sort; |
|
174 | - $args['dir'] = Utils::_GET( 'dir' ); |
|
173 | + $args[ 'sort' ] = $sort; |
|
174 | + $args[ 'dir' ] = Utils::_GET( 'dir' ); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | |
210 | 210 | $entry_slug = \GravityView_API::get_entry_slug( $this->ID, $this->as_entry() ); |
211 | 211 | |
212 | - if( ! $apply_filter ) { |
|
212 | + if ( ! $apply_filter ) { |
|
213 | 213 | return $entry_slug; |
214 | 214 | } |
215 | 215 |
@@ -106,14 +106,14 @@ discard block |
||
106 | 106 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
107 | 107 | */ |
108 | 108 | public static function from_entry( $entry ) { |
109 | - if ( empty( $entry['id'] ) ) { |
|
109 | + if ( empty( $entry[ 'id' ] ) ) { |
|
110 | 110 | return null; |
111 | 111 | } |
112 | 112 | |
113 | 113 | $self = new self(); |
114 | 114 | $self->entry = $entry; |
115 | 115 | |
116 | - $self->ID = $self->entry['id']; |
|
116 | + $self->ID = $self->entry[ 'id' ]; |
|
117 | 117 | $self->slug = $self->get_slug(); |
118 | 118 | |
119 | 119 | return $self; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * @return bool Whether the offset exists or not. |
129 | 129 | */ |
130 | 130 | public function offsetExists( $offset ) { |
131 | - return isset( $this->entry[$offset] ); |
|
131 | + return isset( $this->entry[ $offset ] ); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * @return mixed The value of the requested entry data. |
144 | 144 | */ |
145 | 145 | public function offsetGet( $offset ) { |
146 | - return $this->entry[$offset]; |
|
146 | + return $this->entry[ $offset ]; |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -64,6 +64,9 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | |
67 | + /** |
|
68 | + * @param string $component |
|
69 | + */ |
|
67 | 70 | private function load_components( $component ) { |
68 | 71 | |
69 | 72 | $dir = trailingslashit( self::$file ); |
@@ -183,7 +186,7 @@ discard block |
||
183 | 186 | * "You can edit this post from the post page" fields, for example. |
184 | 187 | * |
185 | 188 | * @param $entry array Gravity Forms entry object |
186 | - * @param $view_id int GravityView view id |
|
189 | + * @param integer $view_id int GravityView view id |
|
187 | 190 | * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
188 | 191 | * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
189 | 192 | * @return string |
@@ -286,7 +289,7 @@ discard block |
||
286 | 289 | * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
287 | 290 | * |
288 | 291 | * @param array $entry Gravity Forms entry array |
289 | - * @param \GV\View|int $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
292 | + * @param integer $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
290 | 293 | * @return bool |
291 | 294 | */ |
292 | 295 | public static function check_user_cap_edit_entry( $entry, $view = 0 ) { |
@@ -18,83 +18,83 @@ discard block |
||
18 | 18 | |
19 | 19 | class GravityView_Edit_Entry { |
20 | 20 | |
21 | - /** |
|
22 | - * @var string |
|
23 | - */ |
|
21 | + /** |
|
22 | + * @var string |
|
23 | + */ |
|
24 | 24 | static $file; |
25 | 25 | |
26 | 26 | static $instance; |
27 | 27 | |
28 | - /** |
|
29 | - * Component instances. |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - public $instances = array(); |
|
28 | + /** |
|
29 | + * Component instances. |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + public $instances = array(); |
|
33 | 33 | |
34 | 34 | |
35 | 35 | function __construct() { |
36 | 36 | |
37 | - self::$file = plugin_dir_path( __FILE__ ); |
|
37 | + self::$file = plugin_dir_path( __FILE__ ); |
|
38 | 38 | |
39 | - if( is_admin() ) { |
|
40 | - $this->load_components( 'admin' ); |
|
41 | - } |
|
39 | + if( is_admin() ) { |
|
40 | + $this->load_components( 'admin' ); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | $this->load_components( 'locking' ); |
44 | 44 | |
45 | - $this->load_components( 'render' ); |
|
45 | + $this->load_components( 'render' ); |
|
46 | 46 | |
47 | - // If GF User Registration Add-on exists |
|
48 | - $this->load_components( 'user-registration' ); |
|
47 | + // If GF User Registration Add-on exists |
|
48 | + $this->load_components( 'user-registration' ); |
|
49 | 49 | |
50 | - $this->add_hooks(); |
|
50 | + $this->add_hooks(); |
|
51 | 51 | |
52 | 52 | // Process hooks for addons that may or may not be present |
53 | 53 | $this->addon_specific_hooks(); |
54 | 54 | } |
55 | 55 | |
56 | 56 | |
57 | - static function getInstance() { |
|
57 | + static function getInstance() { |
|
58 | 58 | |
59 | - if( empty( self::$instance ) ) { |
|
60 | - self::$instance = new GravityView_Edit_Entry; |
|
61 | - } |
|
59 | + if( empty( self::$instance ) ) { |
|
60 | + self::$instance = new GravityView_Edit_Entry; |
|
61 | + } |
|
62 | 62 | |
63 | - return self::$instance; |
|
64 | - } |
|
63 | + return self::$instance; |
|
64 | + } |
|
65 | 65 | |
66 | 66 | |
67 | - private function load_components( $component ) { |
|
67 | + private function load_components( $component ) { |
|
68 | 68 | |
69 | - $dir = trailingslashit( self::$file ); |
|
69 | + $dir = trailingslashit( self::$file ); |
|
70 | 70 | |
71 | - $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
72 | - $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
71 | + $filename = $dir . 'class-edit-entry-' . $component . '.php'; |
|
72 | + $classname = 'GravityView_Edit_Entry_' . str_replace( ' ', '_', ucwords( str_replace( '-', ' ', $component ) ) ); |
|
73 | 73 | |
74 | - // Loads component and pass extension's instance so that component can |
|
75 | - // talk each other. |
|
76 | - require_once $filename; |
|
77 | - $this->instances[ $component ] = new $classname( $this ); |
|
78 | - $this->instances[ $component ]->load(); |
|
74 | + // Loads component and pass extension's instance so that component can |
|
75 | + // talk each other. |
|
76 | + require_once $filename; |
|
77 | + $this->instances[ $component ] = new $classname( $this ); |
|
78 | + $this->instances[ $component ]->load(); |
|
79 | 79 | |
80 | - } |
|
80 | + } |
|
81 | 81 | |
82 | - private function add_hooks() { |
|
82 | + private function add_hooks() { |
|
83 | 83 | |
84 | - // Add front-end access to Gravity Forms delete file action |
|
85 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
84 | + // Add front-end access to Gravity Forms delete file action |
|
85 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
86 | 86 | |
87 | - // Make sure this hook is run for non-admins |
|
88 | - add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
87 | + // Make sure this hook is run for non-admins |
|
88 | + add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
89 | 89 | |
90 | - add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
90 | + add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
|
91 | 91 | |
92 | - // add template path to check for field |
|
93 | - add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
92 | + // add template path to check for field |
|
93 | + add_filter( 'gravityview_template_paths', array( $this, 'add_template_path' ) ); |
|
94 | 94 | |
95 | 95 | add_filter( 'gravityview/field/is_visible', array( $this, 'maybe_not_visible' ), 10, 3 ); |
96 | 96 | |
97 | - } |
|
97 | + } |
|
98 | 98 | |
99 | 99 | /** |
100 | 100 | * Trigger hooks that are normally run in the admin for Addons, but need to be triggered manually because we're not in the admin |
@@ -149,74 +149,74 @@ discard block |
||
149 | 149 | return false; |
150 | 150 | } |
151 | 151 | |
152 | - /** |
|
153 | - * Include this extension templates path |
|
154 | - * @param array $file_paths List of template paths ordered |
|
155 | - */ |
|
156 | - public function add_template_path( $file_paths ) { |
|
157 | - |
|
158 | - // Index 100 is the default GravityView template path. |
|
159 | - $file_paths[ 110 ] = self::$file; |
|
160 | - |
|
161 | - return $file_paths; |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * |
|
166 | - * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
167 | - * |
|
168 | - * @param $view_id int GravityView view id |
|
169 | - * @param $form_id int Gravity Forms form id |
|
170 | - * @param $entry_id int Gravity Forms entry id |
|
171 | - * @return string |
|
172 | - */ |
|
173 | - public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
174 | - return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
175 | - } |
|
176 | - |
|
177 | - |
|
178 | - /** |
|
179 | - * The edit entry link creates a secure link with a nonce |
|
180 | - * |
|
181 | - * It also mimics the URL structure Gravity Forms expects to have so that |
|
182 | - * it formats the display of the edit form like it does in the backend, like |
|
183 | - * "You can edit this post from the post page" fields, for example. |
|
184 | - * |
|
185 | - * @param $entry array Gravity Forms entry object |
|
186 | - * @param $view_id int GravityView view id |
|
187 | - * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
188 | - * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
189 | - * @return string |
|
190 | - */ |
|
191 | - public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
192 | - |
|
193 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
194 | - |
|
195 | - $base = gv_entry_link( $entry, $post_id ? : $view_id ); |
|
196 | - |
|
197 | - $url = add_query_arg( array( |
|
198 | - 'edit' => wp_create_nonce( $nonce_key ) |
|
199 | - ), $base ); |
|
200 | - |
|
201 | - if( $post_id ) { |
|
202 | - $url = add_query_arg( array( 'gvid' => $view_id ), $url ); |
|
203 | - } |
|
204 | - |
|
205 | - /** |
|
206 | - * Allow passing params to dynamically populate entry with values |
|
207 | - * @since 1.9.2 |
|
208 | - */ |
|
209 | - if( !empty( $field_values ) ) { |
|
210 | - |
|
211 | - if( is_array( $field_values ) ) { |
|
212 | - // If already an array, no parse_str() needed |
|
213 | - $params = $field_values; |
|
214 | - } else { |
|
215 | - parse_str( $field_values, $params ); |
|
216 | - } |
|
217 | - |
|
218 | - $url = add_query_arg( $params, $url ); |
|
219 | - } |
|
152 | + /** |
|
153 | + * Include this extension templates path |
|
154 | + * @param array $file_paths List of template paths ordered |
|
155 | + */ |
|
156 | + public function add_template_path( $file_paths ) { |
|
157 | + |
|
158 | + // Index 100 is the default GravityView template path. |
|
159 | + $file_paths[ 110 ] = self::$file; |
|
160 | + |
|
161 | + return $file_paths; |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * |
|
166 | + * Return a well formatted nonce key according to GravityView Edit Entry protocol |
|
167 | + * |
|
168 | + * @param $view_id int GravityView view id |
|
169 | + * @param $form_id int Gravity Forms form id |
|
170 | + * @param $entry_id int Gravity Forms entry id |
|
171 | + * @return string |
|
172 | + */ |
|
173 | + public static function get_nonce_key( $view_id, $form_id, $entry_id ) { |
|
174 | + return sprintf( 'edit_%d_%d_%d', $view_id, $form_id, $entry_id ); |
|
175 | + } |
|
176 | + |
|
177 | + |
|
178 | + /** |
|
179 | + * The edit entry link creates a secure link with a nonce |
|
180 | + * |
|
181 | + * It also mimics the URL structure Gravity Forms expects to have so that |
|
182 | + * it formats the display of the edit form like it does in the backend, like |
|
183 | + * "You can edit this post from the post page" fields, for example. |
|
184 | + * |
|
185 | + * @param $entry array Gravity Forms entry object |
|
186 | + * @param $view_id int GravityView view id |
|
187 | + * @param $post_id int GravityView Post ID where View may be embedded {@since 1.9.2} |
|
188 | + * @param string|array $field_values Parameters to pass in to the Edit Entry form to prefill data. Uses the same format as Gravity Forms "Allow field to be populated dynamically" {@since 1.9.2} {@see https://www.gravityhelp.com/documentation/article/allow-field-to-be-populated-dynamically/ } |
|
189 | + * @return string |
|
190 | + */ |
|
191 | + public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
|
192 | + |
|
193 | + $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
194 | + |
|
195 | + $base = gv_entry_link( $entry, $post_id ? : $view_id ); |
|
196 | + |
|
197 | + $url = add_query_arg( array( |
|
198 | + 'edit' => wp_create_nonce( $nonce_key ) |
|
199 | + ), $base ); |
|
200 | + |
|
201 | + if( $post_id ) { |
|
202 | + $url = add_query_arg( array( 'gvid' => $view_id ), $url ); |
|
203 | + } |
|
204 | + |
|
205 | + /** |
|
206 | + * Allow passing params to dynamically populate entry with values |
|
207 | + * @since 1.9.2 |
|
208 | + */ |
|
209 | + if( !empty( $field_values ) ) { |
|
210 | + |
|
211 | + if( is_array( $field_values ) ) { |
|
212 | + // If already an array, no parse_str() needed |
|
213 | + $params = $field_values; |
|
214 | + } else { |
|
215 | + parse_str( $field_values, $params ); |
|
216 | + } |
|
217 | + |
|
218 | + $url = add_query_arg( $params, $url ); |
|
219 | + } |
|
220 | 220 | |
221 | 221 | /** |
222 | 222 | * @filter `gravityview/edit/link` Filter the edit URL link. |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * @param \GV\View $view The View. |
226 | 226 | */ |
227 | 227 | return apply_filters( 'gravityview/edit/link', $url, $entry, \GV\View::by_id( $view_id ) ); |
228 | - } |
|
228 | + } |
|
229 | 229 | |
230 | 230 | /** |
231 | 231 | * Edit mode doesn't allow certain field types. |
@@ -280,19 +280,19 @@ discard block |
||
280 | 280 | } |
281 | 281 | |
282 | 282 | |
283 | - /** |
|
284 | - * checks if user has permissions to edit a specific entry |
|
285 | - * |
|
286 | - * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
287 | - * |
|
288 | - * @param array $entry Gravity Forms entry array |
|
289 | - * @param \GV\View|int $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
290 | - * @return bool |
|
291 | - */ |
|
292 | - public static function check_user_cap_edit_entry( $entry, $view = 0 ) { |
|
283 | + /** |
|
284 | + * checks if user has permissions to edit a specific entry |
|
285 | + * |
|
286 | + * Needs to be used combined with GravityView_Edit_Entry::user_can_edit_entry for maximum security!! |
|
287 | + * |
|
288 | + * @param array $entry Gravity Forms entry array |
|
289 | + * @param \GV\View|int $view ID of the view you want to check visibility against {@since 1.9.2}. Required since 2.0 |
|
290 | + * @return bool |
|
291 | + */ |
|
292 | + public static function check_user_cap_edit_entry( $entry, $view = 0 ) { |
|
293 | 293 | |
294 | - // No permission by default |
|
295 | - $user_can_edit = false; |
|
294 | + // No permission by default |
|
295 | + $user_can_edit = false; |
|
296 | 296 | |
297 | 297 | // get user_edit setting |
298 | 298 | if ( empty( $view ) ) { |
@@ -310,60 +310,60 @@ discard block |
||
310 | 310 | $user_edit = GVCommon::get_template_setting( $view_id, 'user_edit' ); |
311 | 311 | } |
312 | 312 | |
313 | - // If they can edit any entries (as defined in Gravity Forms) |
|
314 | - // Or if they can edit other people's entries |
|
315 | - // Then we're good. |
|
316 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
313 | + // If they can edit any entries (as defined in Gravity Forms) |
|
314 | + // Or if they can edit other people's entries |
|
315 | + // Then we're good. |
|
316 | + if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
317 | 317 | |
318 | - gravityview()->log->debug( 'User has ability to edit all entries.' ); |
|
318 | + gravityview()->log->debug( 'User has ability to edit all entries.' ); |
|
319 | 319 | |
320 | - $user_can_edit = true; |
|
320 | + $user_can_edit = true; |
|
321 | 321 | |
322 | - } else if( !isset( $entry['created_by'] ) ) { |
|
322 | + } else if( !isset( $entry['created_by'] ) ) { |
|
323 | 323 | |
324 | - gravityview()->log->error( 'Entry `created_by` doesn\'t exist.'); |
|
324 | + gravityview()->log->error( 'Entry `created_by` doesn\'t exist.'); |
|
325 | 325 | |
326 | - $user_can_edit = false; |
|
326 | + $user_can_edit = false; |
|
327 | 327 | |
328 | - } else { |
|
328 | + } else { |
|
329 | 329 | |
330 | - $current_user = wp_get_current_user(); |
|
330 | + $current_user = wp_get_current_user(); |
|
331 | 331 | |
332 | - // User edit is disabled |
|
333 | - if( empty( $user_edit ) ) { |
|
332 | + // User edit is disabled |
|
333 | + if( empty( $user_edit ) ) { |
|
334 | 334 | |
335 | - gravityview()->log->debug( 'User Edit is disabled. Returning false.' ); |
|
335 | + gravityview()->log->debug( 'User Edit is disabled. Returning false.' ); |
|
336 | 336 | |
337 | - $user_can_edit = false; |
|
338 | - } |
|
337 | + $user_can_edit = false; |
|
338 | + } |
|
339 | 339 | |
340 | - // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
341 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
340 | + // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
|
341 | + else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
342 | 342 | |
343 | - gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id', $current_user->ID ) ); |
|
343 | + gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id', $current_user->ID ) ); |
|
344 | 344 | |
345 | - $user_can_edit = true; |
|
345 | + $user_can_edit = true; |
|
346 | 346 | |
347 | - } else if( ! is_user_logged_in() ) { |
|
347 | + } else if( ! is_user_logged_in() ) { |
|
348 | 348 | |
349 | - gravityview()->log->debug( 'No user defined; edit entry requires logged in user' ); |
|
349 | + gravityview()->log->debug( 'No user defined; edit entry requires logged in user' ); |
|
350 | 350 | |
351 | - $user_can_edit = false; // Here just for clarity |
|
352 | - } |
|
351 | + $user_can_edit = false; // Here just for clarity |
|
352 | + } |
|
353 | 353 | |
354 | - } |
|
354 | + } |
|
355 | 355 | |
356 | - /** |
|
357 | - * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
358 | - * @since 1.15 Added `$entry` and `$view_id` parameters |
|
359 | - * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
360 | - * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
361 | - * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
362 | - */ |
|
363 | - $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
356 | + /** |
|
357 | + * @filter `gravityview/edit_entry/user_can_edit_entry` Modify whether user can edit an entry. |
|
358 | + * @since 1.15 Added `$entry` and `$view_id` parameters |
|
359 | + * @param[in,out] boolean $user_can_edit Can the current user edit the current entry? (Default: false) |
|
360 | + * @param[in] array $entry Gravity Forms entry array {@since 1.15} |
|
361 | + * @param[in] int $view_id ID of the view you want to check visibility against {@since 1.15} |
|
362 | + */ |
|
363 | + $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
|
364 | 364 | |
365 | - return (bool) $user_can_edit; |
|
366 | - } |
|
365 | + return (bool) $user_can_edit; |
|
366 | + } |
|
367 | 367 | |
368 | 368 | |
369 | 369 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | self::$file = plugin_dir_path( __FILE__ ); |
38 | 38 | |
39 | - if( is_admin() ) { |
|
39 | + if ( is_admin() ) { |
|
40 | 40 | $this->load_components( 'admin' ); |
41 | 41 | } |
42 | 42 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | static function getInstance() { |
58 | 58 | |
59 | - if( empty( self::$instance ) ) { |
|
59 | + if ( empty( self::$instance ) ) { |
|
60 | 60 | self::$instance = new GravityView_Edit_Entry; |
61 | 61 | } |
62 | 62 | |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | private function add_hooks() { |
83 | 83 | |
84 | 84 | // Add front-end access to Gravity Forms delete file action |
85 | - add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
85 | + add_action( 'wp_ajax_nopriv_rg_delete_file', array( 'GFForms', 'delete_file' ) ); |
|
86 | 86 | |
87 | 87 | // Make sure this hook is run for non-admins |
88 | - add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file') ); |
|
88 | + add_action( 'wp_ajax_rg_delete_file', array( 'GFForms', 'delete_file' ) ); |
|
89 | 89 | |
90 | 90 | add_filter( 'gravityview_blacklist_field_types', array( $this, 'modify_field_blacklist' ), 10, 2 ); |
91 | 91 | |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | */ |
103 | 103 | private function addon_specific_hooks() { |
104 | 104 | |
105 | - if( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
106 | - add_filter('gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script')); |
|
105 | + if ( class_exists( 'GFSignature' ) && is_callable( array( 'GFSignature', 'get_instance' ) ) ) { |
|
106 | + add_filter( 'gform_admin_pre_render', array( GFSignature::get_instance(), 'edit_lead_script' ) ); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | } |
@@ -190,15 +190,15 @@ discard block |
||
190 | 190 | */ |
191 | 191 | public static function get_edit_link( $entry, $view_id, $post_id = null, $field_values = '' ) { |
192 | 192 | |
193 | - $nonce_key = self::get_nonce_key( $view_id, $entry['form_id'], $entry['id'] ); |
|
193 | + $nonce_key = self::get_nonce_key( $view_id, $entry[ 'form_id' ], $entry[ 'id' ] ); |
|
194 | 194 | |
195 | - $base = gv_entry_link( $entry, $post_id ? : $view_id ); |
|
195 | + $base = gv_entry_link( $entry, $post_id ?: $view_id ); |
|
196 | 196 | |
197 | 197 | $url = add_query_arg( array( |
198 | 198 | 'edit' => wp_create_nonce( $nonce_key ) |
199 | 199 | ), $base ); |
200 | 200 | |
201 | - if( $post_id ) { |
|
201 | + if ( $post_id ) { |
|
202 | 202 | $url = add_query_arg( array( 'gvid' => $view_id ), $url ); |
203 | 203 | } |
204 | 204 | |
@@ -206,9 +206,9 @@ discard block |
||
206 | 206 | * Allow passing params to dynamically populate entry with values |
207 | 207 | * @since 1.9.2 |
208 | 208 | */ |
209 | - if( !empty( $field_values ) ) { |
|
209 | + if ( ! empty( $field_values ) ) { |
|
210 | 210 | |
211 | - if( is_array( $field_values ) ) { |
|
211 | + if ( is_array( $field_values ) ) { |
|
212 | 212 | // If already an array, no parse_str() needed |
213 | 213 | $params = $field_values; |
214 | 214 | } else { |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | * @param array $entry The entry. |
225 | 225 | * @param \GV\View $view The View. |
226 | 226 | */ |
227 | - return apply_filters( 'gravityview/edit/link', $url, $entry, \GV\View::by_id( $view_id ) ); |
|
227 | + return apply_filters( 'gravityview/edit/link', $url, $entry, \GV\View::by_id( $view_id ) ); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | /** |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | */ |
236 | 236 | public function modify_field_blacklist( $fields = array(), $context = NULL ) { |
237 | 237 | |
238 | - if( empty( $context ) || $context !== 'edit' ) { |
|
238 | + if ( empty( $context ) || $context !== 'edit' ) { |
|
239 | 239 | return $fields; |
240 | 240 | } |
241 | 241 | |
@@ -313,15 +313,15 @@ discard block |
||
313 | 313 | // If they can edit any entries (as defined in Gravity Forms) |
314 | 314 | // Or if they can edit other people's entries |
315 | 315 | // Then we're good. |
316 | - if( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry['id'] ) ) { |
|
316 | + if ( GVCommon::has_cap( array( 'gravityforms_edit_entries', 'gravityview_edit_others_entries' ), $entry[ 'id' ] ) ) { |
|
317 | 317 | |
318 | 318 | gravityview()->log->debug( 'User has ability to edit all entries.' ); |
319 | 319 | |
320 | 320 | $user_can_edit = true; |
321 | 321 | |
322 | - } else if( !isset( $entry['created_by'] ) ) { |
|
322 | + } else if ( ! isset( $entry[ 'created_by' ] ) ) { |
|
323 | 323 | |
324 | - gravityview()->log->error( 'Entry `created_by` doesn\'t exist.'); |
|
324 | + gravityview()->log->error( 'Entry `created_by` doesn\'t exist.' ); |
|
325 | 325 | |
326 | 326 | $user_can_edit = false; |
327 | 327 | |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | $current_user = wp_get_current_user(); |
331 | 331 | |
332 | 332 | // User edit is disabled |
333 | - if( empty( $user_edit ) ) { |
|
333 | + if ( empty( $user_edit ) ) { |
|
334 | 334 | |
335 | 335 | gravityview()->log->debug( 'User Edit is disabled. Returning false.' ); |
336 | 336 | |
@@ -338,13 +338,13 @@ discard block |
||
338 | 338 | } |
339 | 339 | |
340 | 340 | // User edit is enabled and the logged-in user is the same as the user who created the entry. We're good. |
341 | - else if( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry['created_by'] ) ) { |
|
341 | + else if ( is_user_logged_in() && intval( $current_user->ID ) === intval( $entry[ 'created_by' ] ) ) { |
|
342 | 342 | |
343 | 343 | gravityview()->log->debug( 'User {user_id} created the entry.', array( 'user_id', $current_user->ID ) ); |
344 | 344 | |
345 | 345 | $user_can_edit = true; |
346 | 346 | |
347 | - } else if( ! is_user_logged_in() ) { |
|
347 | + } else if ( ! is_user_logged_in() ) { |
|
348 | 348 | |
349 | 349 | gravityview()->log->debug( 'No user defined; edit entry requires logged in user' ); |
350 | 350 | |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | */ |
363 | 363 | $user_can_edit = apply_filters( 'gravityview/edit_entry/user_can_edit_entry', $user_can_edit, $entry, $view_id ); |
364 | 364 | |
365 | - return (bool) $user_can_edit; |
|
365 | + return (bool)$user_can_edit; |
|
366 | 366 | } |
367 | 367 | |
368 | 368 |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | wp_nonce_field( 'gravityview_select_form', 'gravityview_select_form_nonce' ); |
11 | 11 | |
12 | 12 | //current value |
13 | -$current_form = (int) \GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
13 | +$current_form = (int)\GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
14 | 14 | |
15 | 15 | // If form is in trash or not existing, show error |
16 | 16 | GravityView_Admin::connected_form_warning( $current_form ); |
17 | 17 | |
18 | 18 | // check for available gravity forms |
19 | -$forms = gravityview_get_forms('any', false, 'title' ); |
|
19 | +$forms = gravityview_get_forms( 'any', false, 'title' ); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * @param int $current_form Form currently selected in the View (0 if none selected) |
@@ -35,24 +35,24 @@ discard block |
||
35 | 35 | ?> |
36 | 36 | <a class="button button-primary" href="#gv_start_fresh" title="<?php esc_attr_e( 'Use a Form Preset', 'gravityview' ); ?>"><?php esc_html_e( 'Use a Form Preset', 'gravityview' ); ?></a> |
37 | 37 | |
38 | - <?php if( !empty( $forms ) ) { ?> |
|
38 | + <?php if ( ! empty( $forms ) ) { ?> |
|
39 | 39 | <span> <?php esc_html_e( 'or use an existing form', 'gravityview' ); ?> </span> |
40 | 40 | <?php } |
41 | 41 | } |
42 | 42 | |
43 | 43 | // If there are no forms to select, show no forms. |
44 | - if( !empty( $forms ) ) { ?> |
|
44 | + if ( ! empty( $forms ) ) { ?> |
|
45 | 45 | <select name="gravityview_form_id" id="gravityview_form_id"> |
46 | 46 | <option value="" <?php selected( '', $current_form, true ); ?>>— <?php esc_html_e( 'list of forms', 'gravityview' ); ?> —</option> |
47 | - <?php foreach( $forms as $form ) { ?> |
|
48 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
47 | + <?php foreach ( $forms as $form ) { ?> |
|
48 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
49 | 49 | <?php } ?> |
50 | 50 | </select> |
51 | 51 | <?php } else { ?> |
52 | 52 | <select name="gravityview_form_id" id="gravityview_form_id" class="hidden"><option selected="selected" value=""></option></select> |
53 | 53 | <?php } ?> |
54 | 54 | |
55 | - <button class="button button-primary" <?php if( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
55 | + <button class="button button-primary" <?php if ( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
56 | 56 | </p> |
57 | 57 | |
58 | 58 | <?php // confirm dialog box ?> |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | static public function get_email( $field_settings, $entry ) { |
72 | 72 | |
73 | 73 | // There was no logged in user. |
74 | - switch ( $field_settings['email_field'] ) { |
|
74 | + switch ( $field_settings[ 'email_field' ] ) { |
|
75 | 75 | case 'created_by_email': |
76 | 76 | |
77 | 77 | $created_by = \GV\Utils::get( $entry, 'created_by', null ); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | return $field_options; |
103 | 103 | } |
104 | 104 | |
105 | - $field_options['email_field'] = array( |
|
105 | + $field_options[ 'email_field' ] = array( |
|
106 | 106 | 'type' => 'select', |
107 | 107 | 'label' => __( 'Email to Use', 'gravityview' ), |
108 | 108 | 'value' => 'created_by_email', |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'choices' => $this->_get_email_field_choices( $form_id ), |
111 | 111 | ); |
112 | 112 | |
113 | - $field_options['default'] = array( |
|
113 | + $field_options[ 'default' ] = array( |
|
114 | 114 | 'type' => 'select', |
115 | 115 | 'label' => __( 'Default Image', 'gravityview' ), |
116 | 116 | 'desc' => __( 'Choose the default image to be shown when an email has no Gravatar.', 'gravityview' ) . ' <a href="https://en.gravatar.com/site/implement/images/">' . esc_html( sprintf( __( 'Read more about %s', 'gravityview' ), __( 'Default Image', 'gravityview' ) ) ) . '</a>', |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | ), |
127 | 127 | ); |
128 | 128 | |
129 | - $field_options['size'] = array( |
|
129 | + $field_options[ 'size' ] = array( |
|
130 | 130 | 'type' => 'number', |
131 | 131 | 'label' => __( 'Size in Pixels', 'gravityview' ), |
132 | 132 | 'value' => 80, |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $email_fields = GFAPI::get_fields_by_type( $form, array( 'email' ) ); |
160 | 160 | |
161 | 161 | foreach ( $email_fields as $email_field ) { |
162 | - $email_field_id = $email_field['id']; |
|
162 | + $email_field_id = $email_field[ 'id' ]; |
|
163 | 163 | $email_field_label = GVCommon::get_field_label( $form, $email_field_id ); |
164 | 164 | $email_field_label = sprintf( __( 'Field: %s', 'gravityview' ), $email_field_label ); |
165 | 165 | $field_choices[ $email_field_id ] = esc_html( $email_field_label ); |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | } |
452 | 452 | |
453 | 453 | // WooCommerce doesn't $post_id |
454 | - if ( empty( $passed_post_id ) ) { |
|
454 | + if ( empty( $passed_post_id ) ) { |
|
455 | 455 | return $passed_title; |
456 | 456 | } |
457 | 457 | |
@@ -1206,7 +1206,7 @@ discard block |
||
1206 | 1206 | */ |
1207 | 1207 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
1208 | 1208 | |
1209 | - switch( strtolower( $address_part ) ){ |
|
1209 | + switch( strtolower( $address_part ) ) { |
|
1210 | 1210 | case 'street': |
1211 | 1211 | $sort_field_id .= '.1'; |
1212 | 1212 | break; |
@@ -1296,7 +1296,7 @@ discard block |
||
1296 | 1296 | */ |
1297 | 1297 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
1298 | 1298 | |
1299 | - if ( empty( $single_entry ) ){ |
|
1299 | + if ( empty( $single_entry ) ) { |
|
1300 | 1300 | return false; |
1301 | 1301 | } else { |
1302 | 1302 | return $single_entry; |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | * |
228 | 228 | * |
229 | 229 | * |
230 | - * @param null $view_id |
|
230 | + * @param string $view_id |
|
231 | 231 | */ |
232 | 232 | public function set_context_view_id( $view_id = null ) { |
233 | 233 | $multiple_views = $this->getGvOutputData() && $this->getGvOutputData()->has_multiple_views(); |
@@ -922,7 +922,7 @@ discard block |
||
922 | 922 | * |
923 | 923 | * |
924 | 924 | * @uses gravityview_get_entries() |
925 | - * @param array $args\n |
|
925 | + * @param array $args |
|
926 | 926 | * - $id - View id |
927 | 927 | * - $page_size - Page |
928 | 928 | * - $sort_field - form field id to sort |
@@ -1051,7 +1051,6 @@ discard block |
||
1051 | 1051 | * @since 1.19.5 |
1052 | 1052 | * |
1053 | 1053 | * @param $args |
1054 | - * @param int $form_id |
|
1055 | 1054 | */ |
1056 | 1055 | public static function get_search_criteria_paging( $args ) { |
1057 | 1056 | |
@@ -1553,7 +1552,7 @@ discard block |
||
1553 | 1552 | /** |
1554 | 1553 | * Checks if field (column) is sortable |
1555 | 1554 | * |
1556 | - * @param string $field Field settings |
|
1555 | + * @param string $field_id Field settings |
|
1557 | 1556 | * @param array $form Gravity Forms form array |
1558 | 1557 | * |
1559 | 1558 | * @since 1.7 |
@@ -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 ); |
@@ -234,18 +234,18 @@ discard block |
||
234 | 234 | |
235 | 235 | if ( ! empty( $view_id ) ) { |
236 | 236 | |
237 | - $this->context_view_id = (int) $view_id; |
|
237 | + $this->context_view_id = (int)$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 = (int) $_GET['gvid']; |
|
244 | + $this->context_view_id = (int)$_GET[ 'gvid' ]; |
|
245 | 245 | |
246 | 246 | } elseif ( ! $multiple_views ) { |
247 | 247 | $array_keys = array_keys( $this->getGvOutputData()->get_views() ); |
248 | - $this->context_view_id = (int) array_pop( $array_keys ); |
|
248 | + $this->context_view_id = (int)array_pop( $array_keys ); |
|
249 | 249 | unset( $array_keys ); |
250 | 250 | } |
251 | 251 | |
@@ -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; |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | $gventry = gravityview()->request->is_entry(); |
439 | 439 | |
440 | 440 | // If this is the directory view, return. |
441 | - if( ! $gventry ) { |
|
441 | + if ( ! $gventry ) { |
|
442 | 442 | return $passed_title; |
443 | 443 | } |
444 | 444 | |
@@ -456,19 +456,19 @@ discard block |
||
456 | 456 | } |
457 | 457 | |
458 | 458 | // WooCommerce doesn't $post_id |
459 | - if ( empty( $passed_post_id ) ) { |
|
459 | + if ( empty( $passed_post_id ) ) { |
|
460 | 460 | return $passed_title; |
461 | 461 | } |
462 | 462 | |
463 | 463 | // Don't modify the title for anything other than the current view/post. |
464 | 464 | // This is true for embedded shortcodes and Views. |
465 | - if ( is_object( $post ) && (int) $post->ID !== (int) $passed_post_id ) { |
|
465 | + if ( is_object( $post ) && (int)$post->ID !== (int)$passed_post_id ) { |
|
466 | 466 | return $passed_title; |
467 | 467 | } |
468 | 468 | |
469 | 469 | $view = gravityview()->request->is_view(); |
470 | 470 | |
471 | - if( $view ) { |
|
471 | + if ( $view ) { |
|
472 | 472 | return $this->_get_single_entry_title( $view, $entry, $passed_title ); |
473 | 473 | } |
474 | 474 | |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | $view_collection = \GV\View_Collection::from_post( $post ); |
492 | 492 | |
493 | 493 | // We have multiple Views, but no gvid...this isn't valid security |
494 | - if( 1 < $view_collection->count() ) { |
|
494 | + if ( 1 < $view_collection->count() ) { |
|
495 | 495 | return $passed_title; |
496 | 496 | } |
497 | 497 | |
@@ -525,18 +525,18 @@ discard block |
||
525 | 525 | */ |
526 | 526 | $check_entry_display = apply_filters( 'gravityview/single/title/check_entry_display', true, $entry, $view ); |
527 | 527 | |
528 | - if( $check_entry_display ) { |
|
528 | + if ( $check_entry_display ) { |
|
529 | 529 | |
530 | 530 | $check_display = GVCommon::check_entry_display( $entry, $view ); |
531 | 531 | |
532 | - if( is_wp_error( $check_display ) ) { |
|
532 | + if ( is_wp_error( $check_display ) ) { |
|
533 | 533 | return $passed_title; |
534 | 534 | } |
535 | 535 | } |
536 | 536 | |
537 | 537 | $title = $view->settings->get( 'single_title', $passed_title ); |
538 | 538 | |
539 | - $form = GVCommon::get_form( $entry['form_id'] ); |
|
539 | + $form = GVCommon::get_form( $entry[ 'form_id' ] ); |
|
540 | 540 | |
541 | 541 | // We are allowing HTML in the fields, so no escaping the output |
542 | 542 | $title = GravityView_API::replace_variables( $title, $form, $entry ); |
@@ -607,7 +607,7 @@ discard block |
||
607 | 607 | |
608 | 608 | $context = GravityView_View::getInstance()->getContext(); |
609 | 609 | |
610 | - switch( $context ) { |
|
610 | + switch ( $context ) { |
|
611 | 611 | case 'directory': |
612 | 612 | $tab = __( 'Multiple Entries', 'gravityview' ); |
613 | 613 | break; |
@@ -621,12 +621,12 @@ discard block |
||
621 | 621 | } |
622 | 622 | |
623 | 623 | |
624 | - $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 ); |
|
624 | + $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 ); |
|
625 | 625 | $edit_link = admin_url( sprintf( 'post.php?post=%d&action=edit#%s-view', $view_id, $context ) ); |
626 | - $action_text = sprintf( esc_html__('Add fields to %s', 'gravityview' ), $tab ); |
|
626 | + $action_text = sprintf( esc_html__( 'Add fields to %s', 'gravityview' ), $tab ); |
|
627 | 627 | $message = esc_html__( 'You can only see this message because you are able to edit this View.', 'gravityview' ); |
628 | 628 | |
629 | - $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 ) ) ); |
|
629 | + $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 ) ) ); |
|
630 | 630 | $output = sprintf( '<h3>%s <strong><a href="%s">%s</a></strong></h3><p>%s</p>', $title, esc_url( $edit_link ), $action_text, $message ); |
631 | 631 | |
632 | 632 | echo GVCommon::generate_notice( $output . $image, 'gv-error error', 'edit_gravityview', $view_id ); |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | $direct_access = apply_filters( 'gravityview_direct_access', true, $view->ID ); |
674 | 674 | $embed_only = $view->settings->get( 'embed_only' ); |
675 | 675 | |
676 | - if( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
676 | + if ( ! $direct_access || ( $embed_only && ! GVCommon::has_cap( 'read_private_gravityviews' ) ) ) { |
|
677 | 677 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
678 | 678 | } |
679 | 679 | |
@@ -720,7 +720,7 @@ discard block |
||
720 | 720 | $datetime_format = 'Y-m-d H:i:s'; |
721 | 721 | $search_is_outside_view_bounds = false; |
722 | 722 | |
723 | - if( ! empty( $search_criteria[ $key ] ) ) { |
|
723 | + if ( ! empty( $search_criteria[ $key ] ) ) { |
|
724 | 724 | |
725 | 725 | $search_date = strtotime( $search_criteria[ $key ], GFCommon::get_local_timestamp() ); |
726 | 726 | |
@@ -748,14 +748,14 @@ discard block |
||
748 | 748 | if ( empty( $search_criteria[ $key ] ) || $search_is_outside_view_bounds ) { |
749 | 749 | |
750 | 750 | // Then we override the search and re-set the start date |
751 | - $return_search_criteria[ $key ] = date_i18n( $datetime_format , $date, true ); |
|
751 | + $return_search_criteria[ $key ] = date_i18n( $datetime_format, $date, true ); |
|
752 | 752 | } |
753 | 753 | } |
754 | 754 | } |
755 | 755 | |
756 | - if( isset( $return_search_criteria['start_date'] ) && isset( $return_search_criteria['end_date'] ) ) { |
|
756 | + if ( isset( $return_search_criteria[ 'start_date' ] ) && isset( $return_search_criteria[ 'end_date' ] ) ) { |
|
757 | 757 | // The start date is AFTER the end date. This will result in no results, but let's not force the issue. |
758 | - if ( strtotime( $return_search_criteria['start_date'] ) > strtotime( $return_search_criteria['end_date'] ) ) { |
|
758 | + if ( strtotime( $return_search_criteria[ 'start_date' ] ) > strtotime( $return_search_criteria[ 'end_date' ] ) ) { |
|
759 | 759 | gravityview()->log->error( 'Invalid search: the start date is after the end date.', array( 'data' => $return_search_criteria ) ); |
760 | 760 | } |
761 | 761 | } |
@@ -774,19 +774,19 @@ discard block |
||
774 | 774 | public static function process_search_only_approved( $args, $search_criteria ) { |
775 | 775 | |
776 | 776 | /** @since 1.19 */ |
777 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
777 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
778 | 778 | gravityview()->log->debug( 'User can moderate entries; showing all approval statuses' ); |
779 | 779 | return $search_criteria; |
780 | 780 | } |
781 | 781 | |
782 | - if ( ! empty( $args['show_only_approved'] ) ) { |
|
782 | + if ( ! empty( $args[ 'show_only_approved' ] ) ) { |
|
783 | 783 | |
784 | - $search_criteria['field_filters'][] = array( |
|
784 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
785 | 785 | 'key' => GravityView_Entry_Approval::meta_key, |
786 | 786 | 'value' => GravityView_Entry_Approval_Status::APPROVED |
787 | 787 | ); |
788 | 788 | |
789 | - $search_criteria['field_filters']['mode'] = 'all'; // force all the criterias to be met |
|
789 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; // force all the criterias to be met |
|
790 | 790 | |
791 | 791 | gravityview()->log->debug( '[process_search_only_approved] Search Criteria if show only approved: ', array( 'data' => $search_criteria ) ); |
792 | 792 | } |
@@ -813,18 +813,18 @@ discard block |
||
813 | 813 | */ |
814 | 814 | public static function is_entry_approved( $entry, $args = array() ) { |
815 | 815 | |
816 | - if ( empty( $entry['id'] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args['show_only_approved'] ) ) { |
|
816 | + if ( empty( $entry[ 'id' ] ) || ( array_key_exists( 'show_only_approved', $args ) && ! $args[ 'show_only_approved' ] ) ) { |
|
817 | 817 | // is implicitly approved if entry is null or View settings doesn't require to check for approval |
818 | 818 | return true; |
819 | 819 | } |
820 | 820 | |
821 | 821 | /** @since 1.19 */ |
822 | - if( ! empty( $args['admin_show_all_statuses'] ) && GVCommon::has_cap('gravityview_moderate_entries') ) { |
|
822 | + if ( ! empty( $args[ 'admin_show_all_statuses' ] ) && GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
823 | 823 | gravityview()->log->debug( 'User can moderate entries, so entry is approved for viewing' ); |
824 | 824 | return true; |
825 | 825 | } |
826 | 826 | |
827 | - $is_approved = gform_get_meta( $entry['id'], GravityView_Entry_Approval::meta_key ); |
|
827 | + $is_approved = gform_get_meta( $entry[ 'id' ], GravityView_Entry_Approval::meta_key ); |
|
828 | 828 | |
829 | 829 | return GravityView_Entry_Approval_Status::is_approved( $is_approved ); |
830 | 830 | } |
@@ -848,7 +848,7 @@ discard block |
||
848 | 848 | * Compatibility with filters hooking in `gravityview_search_criteria` instead of `gravityview_fe_search_criteria`. |
849 | 849 | */ |
850 | 850 | $criteria = apply_filters( 'gravityview_search_criteria', array(), array( $form_id ), \GV\Utils::get( $args, 'id' ) ); |
851 | - $search_criteria = isset( $criteria['search_criteria'] ) ? $criteria['search_criteria'] : array( 'field_filters' => array() ); |
|
851 | + $search_criteria = isset( $criteria[ 'search_criteria' ] ) ? $criteria[ 'search_criteria' ] : array( 'field_filters' => array() ); |
|
852 | 852 | |
853 | 853 | /** |
854 | 854 | * @filter `gravityview_fe_search_criteria` Modify the search criteria |
@@ -868,29 +868,29 @@ discard block |
||
868 | 868 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after hook gravityview_fe_search_criteria: ', array( 'data' =>$search_criteria ) ); |
869 | 869 | |
870 | 870 | // implicity search |
871 | - if ( ! empty( $args['search_value'] ) ) { |
|
871 | + if ( ! empty( $args[ 'search_value' ] ) ) { |
|
872 | 872 | |
873 | 873 | // Search operator options. Options: `is` or `contains` |
874 | - $operator = ! empty( $args['search_operator'] ) && in_array( $args['search_operator'], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains'; |
|
874 | + $operator = ! empty( $args[ 'search_operator' ] ) && in_array( $args[ 'search_operator' ], array( 'is', 'isnot', '>', '<', 'contains' ) ) ? $args[ 'search_operator' ] : 'contains'; |
|
875 | 875 | |
876 | - $search_criteria['field_filters'][] = array( |
|
876 | + $search_criteria[ 'field_filters' ][ ] = array( |
|
877 | 877 | 'key' => \GV\Utils::_GET( 'search_field', \GV\Utils::get( $args, 'search_field' ) ), // The field ID to search |
878 | - 'value' => _wp_specialchars( $args['search_value'] ), // The value to search. Encode ampersands but not quotes. |
|
878 | + 'value' => _wp_specialchars( $args[ 'search_value' ] ), // The value to search. Encode ampersands but not quotes. |
|
879 | 879 | 'operator' => $operator, |
880 | 880 | ); |
881 | 881 | |
882 | 882 | // Lock search mode to "all" with implicit presearch filter. |
883 | - $search_criteria['field_filters']['mode'] = 'all'; |
|
883 | + $search_criteria[ 'field_filters' ][ 'mode' ] = 'all'; |
|
884 | 884 | } |
885 | 885 | |
886 | - if( $search_criteria !== $original_search_criteria ) { |
|
886 | + if ( $search_criteria !== $original_search_criteria ) { |
|
887 | 887 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after implicity search: ', array( 'data' => $search_criteria ) ); |
888 | 888 | } |
889 | 889 | |
890 | 890 | // Handle setting date range |
891 | 891 | $search_criteria = self::process_search_dates( $args, $search_criteria ); |
892 | 892 | |
893 | - if( $search_criteria !== $original_search_criteria ) { |
|
893 | + if ( $search_criteria !== $original_search_criteria ) { |
|
894 | 894 | gravityview()->log->debug( '[get_search_criteria] Search Criteria after date params: ', array( 'data' => $search_criteria ) ); |
895 | 895 | } |
896 | 896 | |
@@ -901,7 +901,7 @@ discard block |
||
901 | 901 | * @filter `gravityview_status` Modify entry status requirements to be included in search results. |
902 | 902 | * @param string $status Default: `active`. Accepts all Gravity Forms entry statuses, including `spam` and `trash` |
903 | 903 | */ |
904 | - $search_criteria['status'] = apply_filters( 'gravityview_status', 'active', $args ); |
|
904 | + $search_criteria[ 'status' ] = apply_filters( 'gravityview_status', 'active', $args ); |
|
905 | 905 | |
906 | 906 | return $search_criteria; |
907 | 907 | } |
@@ -1013,7 +1013,7 @@ discard block |
||
1013 | 1013 | 'search_criteria' => $search_criteria, |
1014 | 1014 | 'sorting' => self::updateViewSorting( $args, $form_id ), |
1015 | 1015 | 'paging' => $paging, |
1016 | - 'cache' => isset( $args['cache'] ) ? $args['cache'] : true, |
|
1016 | + 'cache' => isset( $args[ 'cache' ] ) ? $args[ 'cache' ] : true, |
|
1017 | 1017 | ); |
1018 | 1018 | |
1019 | 1019 | /** |
@@ -1038,7 +1038,7 @@ discard block |
||
1038 | 1038 | * @param array $parameters Array with `search_criteria`, `sorting` and `paging` keys. |
1039 | 1039 | * @param array $args View configuration args. |
1040 | 1040 | */ |
1041 | - $parameters = apply_filters( 'gravityview_get_entries_'.\GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
1041 | + $parameters = apply_filters( 'gravityview_get_entries_' . \GV\Utils::get( $args, 'id' ), $parameters, $args, $form_id ); |
|
1042 | 1042 | |
1043 | 1043 | gravityview()->log->debug( '$parameters passed to gravityview_get_entries(): ', array( 'data' => $parameters ) ); |
1044 | 1044 | |
@@ -1063,17 +1063,17 @@ discard block |
||
1063 | 1063 | $default_page_size = apply_filters( 'gravityview_default_page_size', 25 ); |
1064 | 1064 | |
1065 | 1065 | // Paging & offset |
1066 | - $page_size = ! empty( $args['page_size'] ) ? intval( $args['page_size'] ) : $default_page_size; |
|
1066 | + $page_size = ! empty( $args[ 'page_size' ] ) ? intval( $args[ 'page_size' ] ) : $default_page_size; |
|
1067 | 1067 | |
1068 | 1068 | if ( -1 === $page_size ) { |
1069 | 1069 | $page_size = PHP_INT_MAX; |
1070 | 1070 | } |
1071 | 1071 | |
1072 | - $curr_page = empty( $_GET['pagenum'] ) ? 1 : intval( $_GET['pagenum'] ); |
|
1072 | + $curr_page = empty( $_GET[ 'pagenum' ] ) ? 1 : intval( $_GET[ 'pagenum' ] ); |
|
1073 | 1073 | $offset = ( $curr_page - 1 ) * $page_size; |
1074 | 1074 | |
1075 | - if ( ! empty( $args['offset'] ) ) { |
|
1076 | - $offset += intval( $args['offset'] ); |
|
1075 | + if ( ! empty( $args[ 'offset' ] ) ) { |
|
1076 | + $offset += intval( $args[ 'offset' ] ); |
|
1077 | 1077 | } |
1078 | 1078 | |
1079 | 1079 | $paging = array( |
@@ -1098,11 +1098,11 @@ discard block |
||
1098 | 1098 | public static function updateViewSorting( $args, $form_id ) { |
1099 | 1099 | $sorting = array(); |
1100 | 1100 | |
1101 | - $has_values = isset( $_GET['sort'] ); |
|
1101 | + $has_values = isset( $_GET[ 'sort' ] ); |
|
1102 | 1102 | |
1103 | - if ( $has_values && is_array( $_GET['sort'] ) ) { |
|
1104 | - $sorts = array_keys( $_GET['sort'] ); |
|
1105 | - $dirs = array_values( $_GET['sort'] ); |
|
1103 | + if ( $has_values && is_array( $_GET[ 'sort' ] ) ) { |
|
1104 | + $sorts = array_keys( $_GET[ 'sort' ] ); |
|
1105 | + $dirs = array_values( $_GET[ 'sort' ] ); |
|
1106 | 1106 | |
1107 | 1107 | if ( $has_values = array_filter( $dirs ) ) { |
1108 | 1108 | $sort_field_id = end( $sorts ); |
@@ -1111,11 +1111,11 @@ discard block |
||
1111 | 1111 | } |
1112 | 1112 | |
1113 | 1113 | if ( ! isset( $sort_field_id ) ) { |
1114 | - $sort_field_id = isset( $_GET['sort'] ) ? $_GET['sort'] : \GV\Utils::get( $args, 'sort_field' ); |
|
1114 | + $sort_field_id = isset( $_GET[ 'sort' ] ) ? $_GET[ 'sort' ] : \GV\Utils::get( $args, 'sort_field' ); |
|
1115 | 1115 | } |
1116 | 1116 | |
1117 | 1117 | if ( ! isset( $sort_direction ) ) { |
1118 | - $sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1118 | + $sort_direction = isset( $_GET[ 'dir' ] ) ? $_GET[ 'dir' ] : \GV\Utils::get( $args, 'sort_direction' ); |
|
1119 | 1119 | } |
1120 | 1120 | |
1121 | 1121 | if ( is_array( $sort_field_id ) ) { |
@@ -1147,10 +1147,10 @@ discard block |
||
1147 | 1147 | $form = GFAPI::get_form( $form_id ); |
1148 | 1148 | |
1149 | 1149 | // Get the first GF_Field field ID, set as the key for entry randomization |
1150 | - if ( ! empty( $form['fields'] ) ) { |
|
1150 | + if ( ! empty( $form[ 'fields' ] ) ) { |
|
1151 | 1151 | |
1152 | 1152 | /** @var GF_Field $field */ |
1153 | - foreach ( $form['fields'] as $field ) { |
|
1153 | + foreach ( $form[ 'fields' ] as $field ) { |
|
1154 | 1154 | if ( ! is_a( $field, 'GF_Field' ) ) { |
1155 | 1155 | continue; |
1156 | 1156 | } |
@@ -1195,7 +1195,7 @@ discard block |
||
1195 | 1195 | if ( is_array( $sort_field_id ) ) { |
1196 | 1196 | $modified_ids = array(); |
1197 | 1197 | foreach ( $sort_field_id as $_sort_field_id ) { |
1198 | - $modified_ids []= self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1198 | + $modified_ids [ ] = self::_override_sorting_id_by_field_type( $_sort_field_id, $form_id ); |
|
1199 | 1199 | } |
1200 | 1200 | return $modified_ids; |
1201 | 1201 | } |
@@ -1204,11 +1204,11 @@ discard block |
||
1204 | 1204 | |
1205 | 1205 | $sort_field = GFFormsModel::get_field( $form, $sort_field_id ); |
1206 | 1206 | |
1207 | - if( ! $sort_field ) { |
|
1207 | + if ( ! $sort_field ) { |
|
1208 | 1208 | return $sort_field_id; |
1209 | 1209 | } |
1210 | 1210 | |
1211 | - switch ( $sort_field['type'] ) { |
|
1211 | + switch ( $sort_field[ 'type' ] ) { |
|
1212 | 1212 | |
1213 | 1213 | case 'address': |
1214 | 1214 | // Sorting by full address |
@@ -1225,7 +1225,7 @@ discard block |
||
1225 | 1225 | */ |
1226 | 1226 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
1227 | 1227 | |
1228 | - switch( strtolower( $address_part ) ){ |
|
1228 | + switch ( strtolower( $address_part ) ) { |
|
1229 | 1229 | case 'street': |
1230 | 1230 | $sort_field_id .= '.1'; |
1231 | 1231 | break; |
@@ -1298,7 +1298,7 @@ discard block |
||
1298 | 1298 | if ( ! class_exists( '\GV\Entry' ) ) { |
1299 | 1299 | |
1300 | 1300 | // Not using gravityview()->log->error(), since that may not exist yet either! |
1301 | - do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary() ); |
|
1301 | + do_action( 'gravityview_log_error', '\GV\Entry not defined yet. Backtrace: ' . wp_debug_backtrace_summary() ); |
|
1302 | 1302 | |
1303 | 1303 | return null; |
1304 | 1304 | } |
@@ -1315,7 +1315,7 @@ discard block |
||
1315 | 1315 | */ |
1316 | 1316 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
1317 | 1317 | |
1318 | - if ( empty( $single_entry ) ){ |
|
1318 | + if ( empty( $single_entry ) ) { |
|
1319 | 1319 | return false; |
1320 | 1320 | } else { |
1321 | 1321 | return $single_entry; |
@@ -1336,7 +1336,7 @@ discard block |
||
1336 | 1336 | $views = $this->getGvOutputData()->get_views(); |
1337 | 1337 | |
1338 | 1338 | foreach ( $views as $view_id => $data ) { |
1339 | - $view = \GV\View::by_id( $data['id'] ); |
|
1339 | + $view = \GV\View::by_id( $data[ 'id' ] ); |
|
1340 | 1340 | $view_id = $view->ID; |
1341 | 1341 | $template_id = gravityview_get_template_id( $view->ID ); |
1342 | 1342 | $data = $view->as_data(); |
@@ -1345,7 +1345,7 @@ discard block |
||
1345 | 1345 | * Don't enqueue the scripts or styles if it's not going to be displayed. |
1346 | 1346 | * @since 1.15 |
1347 | 1347 | */ |
1348 | - if( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1348 | + if ( is_user_logged_in() && false === GVCommon::has_cap( 'read_gravityview', $view_id ) ) { |
|
1349 | 1349 | continue; |
1350 | 1350 | } |
1351 | 1351 | |
@@ -1378,7 +1378,7 @@ discard block |
||
1378 | 1378 | * @param \GV\View The View. |
1379 | 1379 | */ |
1380 | 1380 | apply_filters( 'gravityview_lightbox_script', $js_dependency, $view ); |
1381 | - $js_dependencies[] = $js_dependency; |
|
1381 | + $js_dependencies[ ] = $js_dependency; |
|
1382 | 1382 | |
1383 | 1383 | if ( ! empty( $wp_filter[ 'gravity_view_lightbox_style' ] ) ) { |
1384 | 1384 | gravityview()->log->warning( 'gravity_view_lightbox_style filter is deprecated use gravityview_lightbox_style instead' ); |
@@ -1398,7 +1398,7 @@ discard block |
||
1398 | 1398 | * @param \GV\View The View. |
1399 | 1399 | */ |
1400 | 1400 | $css_dependency = apply_filters( 'gravityview_lightbox_style', $css_dependency, $view ); |
1401 | - $css_dependencies[] = $css_dependency; |
|
1401 | + $css_dependencies[ ] = $css_dependency; |
|
1402 | 1402 | } |
1403 | 1403 | |
1404 | 1404 | /** |
@@ -1406,19 +1406,19 @@ discard block |
||
1406 | 1406 | * @see https://github.com/katzwebservices/GravityView/issues/536 |
1407 | 1407 | * @since 1.15 |
1408 | 1408 | */ |
1409 | - if( gravityview_view_has_single_checkbox_or_radio( $data['form'], $data['fields'] ) ) { |
|
1410 | - $css_dependencies[] = 'dashicons'; |
|
1409 | + if ( gravityview_view_has_single_checkbox_or_radio( $data[ 'form' ], $data[ 'fields' ] ) ) { |
|
1410 | + $css_dependencies[ ] = 'dashicons'; |
|
1411 | 1411 | } |
1412 | 1412 | |
1413 | 1413 | wp_register_script( 'gravityview-jquery-cookie', plugins_url( 'assets/lib/jquery.cookie/jquery.cookie.min.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version, true ); |
1414 | 1414 | |
1415 | 1415 | $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
1416 | 1416 | |
1417 | - 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 ); |
|
1417 | + 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 ); |
|
1418 | 1418 | |
1419 | 1419 | wp_enqueue_script( 'gravityview-fe-view' ); |
1420 | 1420 | |
1421 | - if ( ! empty( $data['atts']['sort_columns'] ) ) { |
|
1421 | + if ( ! empty( $data[ 'atts' ][ 'sort_columns' ] ) ) { |
|
1422 | 1422 | wp_enqueue_style( 'gravityview_font', plugins_url( 'assets/css/font.css', GRAVITYVIEW_FILE ), $css_dependencies, GravityView_Plugin::version, 'all' ); |
1423 | 1423 | } |
1424 | 1424 | |
@@ -1481,7 +1481,7 @@ discard block |
||
1481 | 1481 | public static function add_style( $template_id ) { |
1482 | 1482 | |
1483 | 1483 | if ( ! empty( $template_id ) && wp_style_is( 'gravityview_style_' . $template_id, 'registered' ) ) { |
1484 | - gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1484 | + gravityview()->log->debug( 'Adding extra template style for {template_id}', array( 'template_id' => $template_id ) ); |
|
1485 | 1485 | wp_enqueue_style( 'gravityview_style_' . $template_id ); |
1486 | 1486 | } elseif ( empty( $template_id ) ) { |
1487 | 1487 | gravityview()->log->error( 'Cannot add template style; template_id is empty' ); |
@@ -1512,11 +1512,11 @@ discard block |
||
1512 | 1512 | * Not a table-based template; don't add sort icons |
1513 | 1513 | * @since 1.12 |
1514 | 1514 | */ |
1515 | - if( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1515 | + if ( ! preg_match( '/table/ism', GravityView_View::getInstance()->getTemplatePartSlug() ) ) { |
|
1516 | 1516 | return $label; |
1517 | 1517 | } |
1518 | 1518 | |
1519 | - if ( ! $this->is_field_sortable( $field['id'], $form ) ) { |
|
1519 | + if ( ! $this->is_field_sortable( $field[ 'id' ], $form ) ) { |
|
1520 | 1520 | return $label; |
1521 | 1521 | } |
1522 | 1522 | |
@@ -1524,29 +1524,29 @@ discard block |
||
1524 | 1524 | |
1525 | 1525 | $class = 'gv-sort'; |
1526 | 1526 | |
1527 | - $sort_field_id = self::_override_sorting_id_by_field_type( $field['id'], $form['id'] ); |
|
1527 | + $sort_field_id = self::_override_sorting_id_by_field_type( $field[ 'id' ], $form[ 'id' ] ); |
|
1528 | 1528 | |
1529 | 1529 | $sort_args = array( |
1530 | - 'sort' => $field['id'], |
|
1530 | + 'sort' => $field[ 'id' ], |
|
1531 | 1531 | 'dir' => 'asc', |
1532 | 1532 | ); |
1533 | 1533 | |
1534 | - if ( ! empty( $sorting['key'] ) && (string) $sort_field_id === (string) $sorting['key'] ) { |
|
1534 | + if ( ! empty( $sorting[ 'key' ] ) && (string)$sort_field_id === (string)$sorting[ 'key' ] ) { |
|
1535 | 1535 | //toggle sorting direction. |
1536 | - if ( 'asc' === $sorting['direction'] ) { |
|
1537 | - $sort_args['dir'] = 'desc'; |
|
1536 | + if ( 'asc' === $sorting[ 'direction' ] ) { |
|
1537 | + $sort_args[ 'dir' ] = 'desc'; |
|
1538 | 1538 | $class .= ' gv-icon-sort-desc'; |
1539 | 1539 | } else { |
1540 | - $sort_args['dir'] = 'asc'; |
|
1540 | + $sort_args[ 'dir' ] = 'asc'; |
|
1541 | 1541 | $class .= ' gv-icon-sort-asc'; |
1542 | 1542 | } |
1543 | 1543 | } else { |
1544 | 1544 | $class .= ' gv-icon-caret-up-down'; |
1545 | 1545 | } |
1546 | 1546 | |
1547 | - $url = add_query_arg( $sort_args, remove_query_arg( array('pagenum') ) ); |
|
1547 | + $url = add_query_arg( $sort_args, remove_query_arg( array( 'pagenum' ) ) ); |
|
1548 | 1548 | |
1549 | - return '<a href="'. esc_url_raw( $url ) .'" class="'. $class .'" ></a> '. $label; |
|
1549 | + return '<a href="' . esc_url_raw( $url ) . '" class="' . $class . '" ></a> ' . $label; |
|
1550 | 1550 | |
1551 | 1551 | } |
1552 | 1552 | |
@@ -1564,7 +1564,7 @@ discard block |
||
1564 | 1564 | |
1565 | 1565 | $field_type = $field_id; |
1566 | 1566 | |
1567 | - if( is_numeric( $field_id ) ) { |
|
1567 | + if ( is_numeric( $field_id ) ) { |
|
1568 | 1568 | $field = GFFormsModel::get_field( $form, $field_id ); |
1569 | 1569 | $field_type = $field ? $field->type : $field_id; |
1570 | 1570 | } |
@@ -1587,7 +1587,7 @@ discard block |
||
1587 | 1587 | return false; |
1588 | 1588 | } |
1589 | 1589 | |
1590 | - return apply_filters( "gravityview/sortable/formfield_{$form['id']}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1590 | + return apply_filters( "gravityview/sortable/formfield_{$form[ 'id' ]}_{$field_id}", apply_filters( "gravityview/sortable/field_{$field_id}", true, $form ) ); |
|
1591 | 1591 | |
1592 | 1592 | } |
1593 | 1593 |