@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * |
317 | 317 | * @param array $file_paths List of template paths ordered |
318 | 318 | * |
319 | - * @return array File paths with `./` and `./partials/` paths added |
|
319 | + * @return string[] File paths with `./` and `./partials/` paths added |
|
320 | 320 | */ |
321 | 321 | public function add_template_path( $file_paths ) { |
322 | 322 | |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | * @param array $entry |
486 | 486 | * @param array $data Note details array |
487 | 487 | * |
488 | - * @return int|WP_Error |
|
488 | + * @return integer |
|
489 | 489 | */ |
490 | 490 | private function add_note( $entry, $data ) { |
491 | 491 | global $current_user, $wpdb; |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | * |
585 | 585 | * @since 1.17 |
586 | 586 | * |
587 | - * @param int|string $entry_slug Current entry unique ID |
|
587 | + * @param string $entry_slug Current entry unique ID |
|
588 | 588 | * |
589 | 589 | * @return string HTML output |
590 | 590 | */ |
@@ -175,10 +175,10 @@ discard block |
||
175 | 175 | |
176 | 176 | if( 'gv_note_add' === $_POST['action'] ) { |
177 | 177 | |
178 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
179 | - do_action( 'gravityview_log_error', __METHOD__ . ': The user isnt allowed to add entry notes.' ); |
|
180 | - return; |
|
181 | - } |
|
178 | + if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
179 | + do_action( 'gravityview_log_error', __METHOD__ . ': The user isnt allowed to add entry notes.' ); |
|
180 | + return; |
|
181 | + } |
|
182 | 182 | |
183 | 183 | $post = wp_unslash( $_POST ); |
184 | 184 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * |
279 | 279 | * Verify permissions. Check expected $_POST. Parse args, then send to process_delete_notes |
280 | 280 | * |
281 | - * @since 1.17 |
|
281 | + * @since 1.17 |
|
282 | 282 | * |
283 | 283 | * @see process_delete_notes |
284 | 284 | * |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | 'subject-label' => __( 'Subject', 'gravityview' ), |
432 | 432 | 'subject' => __( 'Email subject', 'gravityview' ), |
433 | 433 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
434 | - 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
434 | + 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
435 | 435 | 'also-email' => __( 'Also email this note to', 'gravityview' ), |
436 | 436 | 'error-add-note' => __( 'There was an error adding the note.', 'gravityview' ), |
437 | 437 | 'error-invalid' => __( 'The request was invalid. Refresh the page and try again.', 'gravityview' ), |
@@ -751,7 +751,7 @@ discard block |
||
751 | 751 | 'gv-note-to-custom' => '', |
752 | 752 | 'gv-note-subject' => '', |
753 | 753 | 'gv-note-content' => '', |
754 | - 'current-url' => '', |
|
754 | + 'current-url' => '', |
|
755 | 755 | ); |
756 | 756 | |
757 | 757 | $current_user = wp_get_current_user(); |
@@ -803,9 +803,9 @@ discard block |
||
803 | 803 | $message .= $this->get_email_footer( $email_footer, $is_html, $email_data ); |
804 | 804 | |
805 | 805 | /** |
806 | - * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
806 | + * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
807 | 807 | * @since 1.18 |
808 | - * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
808 | + * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
809 | 809 | */ |
810 | 810 | $wpautop_email = apply_filters( 'gravityview/field/notes/wpautop_email', true ); |
811 | 811 | |
@@ -825,12 +825,12 @@ discard block |
||
825 | 825 | } |
826 | 826 | |
827 | 827 | /** |
828 | - * Get the footer for Entry Note emails |
|
829 | - * |
|
830 | - * `{url}` is replaced by the URL of the page where the note form was embedded |
|
831 | - * |
|
832 | - * @since 1.18 |
|
833 | - * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
828 | + * Get the footer for Entry Note emails |
|
829 | + * |
|
830 | + * `{url}` is replaced by the URL of the page where the note form was embedded |
|
831 | + * |
|
832 | + * @since 1.18 |
|
833 | + * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
834 | 834 | * |
835 | 835 | * @param string $email_footer The message footer value |
836 | 836 | * @param bool $is_html True: Email is being sent as HTML; False: sent as text |
@@ -839,10 +839,10 @@ discard block |
||
839 | 839 | */ |
840 | 840 | private function get_email_footer( $email_footer = '', $is_html = true, $email_data = array() ) { |
841 | 841 | |
842 | - $output = ''; |
|
842 | + $output = ''; |
|
843 | 843 | |
844 | 844 | if( ! empty( $email_footer ) ) { |
845 | - $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
845 | + $url = \GV\Utils::get( $email_data, 'current-url' ); |
|
846 | 846 | $url = html_entity_decode( $url ); |
847 | 847 | $url = site_url( $url ); |
848 | 848 |
@@ -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 | } |
@@ -164,31 +164,31 @@ discard block |
||
164 | 164 | */ |
165 | 165 | function maybe_add_note() { |
166 | 166 | |
167 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
167 | + if ( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
168 | 168 | gravityview()->log->error( 'The user isnt allowed to add entry notes.' ); |
169 | 169 | return; |
170 | 170 | } |
171 | 171 | |
172 | - if( ! isset( $_POST['action'] ) ) { |
|
172 | + if ( ! isset( $_POST[ 'action' ] ) ) { |
|
173 | 173 | return; |
174 | 174 | } |
175 | 175 | |
176 | - if( 'gv_note_add' === $_POST['action'] ) { |
|
176 | + if ( 'gv_note_add' === $_POST[ 'action' ] ) { |
|
177 | 177 | |
178 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
178 | + if ( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
179 | 179 | do_action( 'gravityview_log_error', __METHOD__ . ': The user isnt allowed to add entry notes.' ); |
180 | 180 | return; |
181 | 181 | } |
182 | 182 | |
183 | 183 | $post = wp_unslash( $_POST ); |
184 | 184 | |
185 | - if( $this->doing_ajax ) { |
|
186 | - parse_str( $post['data'], $data ); |
|
185 | + if ( $this->doing_ajax ) { |
|
186 | + parse_str( $post[ 'data' ], $data ); |
|
187 | 187 | } else { |
188 | 188 | $data = $post; |
189 | 189 | } |
190 | 190 | |
191 | - $this->process_add_note( (array) $data ); |
|
191 | + $this->process_add_note( (array)$data ); |
|
192 | 192 | } |
193 | 193 | } |
194 | 194 | |
@@ -215,23 +215,23 @@ discard block |
||
215 | 215 | $error = false; |
216 | 216 | $success = false; |
217 | 217 | |
218 | - if( empty( $data['entry-slug'] ) ) { |
|
218 | + if ( empty( $data[ 'entry-slug' ] ) ) { |
|
219 | 219 | |
220 | - $error = self::strings('error-invalid'); |
|
220 | + $error = self::strings( 'error-invalid' ); |
|
221 | 221 | gravityview()->log->error( 'The note is missing an Entry ID.' ); |
222 | 222 | |
223 | 223 | } else { |
224 | 224 | |
225 | - $valid = wp_verify_nonce( $data['gv_note_add'], 'gv_note_add_' . $data['entry-slug'] ); |
|
225 | + $valid = wp_verify_nonce( $data[ 'gv_note_add' ], 'gv_note_add_' . $data[ 'entry-slug' ] ); |
|
226 | 226 | |
227 | 227 | $has_cap = GVCommon::has_cap( 'gravityview_add_entry_notes' ); |
228 | 228 | |
229 | - if( ! $has_cap ) { |
|
229 | + if ( ! $has_cap ) { |
|
230 | 230 | $error = self::strings( 'error-cap-add' ); |
231 | 231 | gravityview()->log->error( 'Adding a note failed: the user does not have the "gravityview_add_entry_notes" capability.' ); |
232 | 232 | } elseif ( $valid ) { |
233 | 233 | |
234 | - $entry = gravityview_get_entry( $data['entry-slug'], true, false ); |
|
234 | + $entry = gravityview_get_entry( $data[ 'entry-slug' ], true, false ); |
|
235 | 235 | |
236 | 236 | $added = $this->add_note( $entry, $data ); |
237 | 237 | |
@@ -249,22 +249,22 @@ discard block |
||
249 | 249 | $this->maybe_send_entry_notes( $note, $entry, $data ); |
250 | 250 | |
251 | 251 | if ( $note ) { |
252 | - $success = self::display_note( $note, ! empty( $data['show-delete'] ) ); |
|
252 | + $success = self::display_note( $note, ! empty( $data[ 'show-delete' ] ) ); |
|
253 | 253 | gravityview()->log->debug( 'The note was successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
254 | 254 | } else { |
255 | - $error = self::strings('error-add-note'); |
|
255 | + $error = self::strings( 'error-add-note' ); |
|
256 | 256 | gravityview()->log->error( 'The note was not successfully created', array( 'data' => compact( 'note', 'data' ) ) ); |
257 | 257 | } |
258 | 258 | } |
259 | 259 | } else { |
260 | - $error = self::strings('error-invalid'); |
|
260 | + $error = self::strings( 'error-invalid' ); |
|
261 | 261 | gravityview()->log->error( 'Nonce validation failed; the note was not created' ); |
262 | 262 | } |
263 | 263 | } |
264 | 264 | |
265 | 265 | |
266 | - if( $this->doing_ajax ) { |
|
267 | - if( $success ) { |
|
266 | + if ( $this->doing_ajax ) { |
|
267 | + if ( $success ) { |
|
268 | 268 | wp_send_json_success( array( 'html' => $success ) ); |
269 | 269 | } else { |
270 | 270 | $error = $error ? $error : self::strings( 'error-invalid' ); |
@@ -290,11 +290,11 @@ discard block |
||
290 | 290 | return; |
291 | 291 | } |
292 | 292 | |
293 | - if ( isset( $_POST['action'] ) && 'gv_delete_notes' === $_POST['action'] ) { |
|
293 | + if ( isset( $_POST[ 'action' ] ) && 'gv_delete_notes' === $_POST[ 'action' ] ) { |
|
294 | 294 | |
295 | 295 | $post = wp_unslash( $_POST ); |
296 | 296 | if ( $this->doing_ajax ) { |
297 | - parse_str( $post['data'], $data ); |
|
297 | + parse_str( $post[ 'data' ], $data ); |
|
298 | 298 | } else { |
299 | 299 | $data = $post; |
300 | 300 | } |
@@ -325,18 +325,18 @@ discard block |
||
325 | 325 | */ |
326 | 326 | function process_delete_notes( $data ) { |
327 | 327 | |
328 | - $valid = wp_verify_nonce( $data['gv_delete_notes'], 'gv_delete_notes_' . $data['entry-slug'] ); |
|
328 | + $valid = wp_verify_nonce( $data[ 'gv_delete_notes' ], 'gv_delete_notes_' . $data[ 'entry-slug' ] ); |
|
329 | 329 | $has_cap = GVCommon::has_cap( 'gravityview_delete_entry_notes' ); |
330 | 330 | $success = false; |
331 | 331 | |
332 | 332 | if ( $valid && $has_cap ) { |
333 | - GravityView_Entry_Notes::delete_notes( $data['note'] ); |
|
333 | + GravityView_Entry_Notes::delete_notes( $data[ 'note' ] ); |
|
334 | 334 | $success = true; |
335 | 335 | } |
336 | 336 | |
337 | - if( $this->doing_ajax ) { |
|
337 | + if ( $this->doing_ajax ) { |
|
338 | 338 | |
339 | - if( $success ) { |
|
339 | + if ( $success ) { |
|
340 | 340 | wp_send_json_success(); |
341 | 341 | } else { |
342 | 342 | if ( ! $valid ) { |
@@ -369,13 +369,13 @@ discard block |
||
369 | 369 | |
370 | 370 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
371 | 371 | |
372 | - unset( $field_options['show_as_link'] ); |
|
372 | + unset( $field_options[ 'show_as_link' ] ); |
|
373 | 373 | |
374 | 374 | $notes_options = array( |
375 | 375 | 'notes' => array( |
376 | 376 | 'type' => 'checkboxes', |
377 | - 'label' => __('Note Settings', 'gravityview'), |
|
378 | - '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>' ), |
|
377 | + 'label' => __( 'Note Settings', 'gravityview' ), |
|
378 | + '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>' ), |
|
379 | 379 | 'options' => array( |
380 | 380 | 'view' => array( |
381 | 381 | 'label' => __( 'Display notes?', 'gravityview' ), |
@@ -427,7 +427,7 @@ discard block |
||
427 | 427 | 'processing' => __( 'Processing…', 'gravityview' ), |
428 | 428 | 'other-email' => __( 'Other email address', 'gravityview' ), |
429 | 429 | 'email-label' => __( 'Email address', 'gravityview' ), |
430 | - 'email-placeholder' => _x('[email protected]', 'Example email address used as a placeholder', 'gravityview'), |
|
430 | + 'email-placeholder' => _x( '[email protected]', 'Example email address used as a placeholder', 'gravityview' ), |
|
431 | 431 | 'subject-label' => __( 'Subject', 'gravityview' ), |
432 | 432 | 'subject' => __( 'Email subject', 'gravityview' ), |
433 | 433 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
@@ -447,7 +447,7 @@ discard block |
||
447 | 447 | */ |
448 | 448 | $strings = gv_map_deep( apply_filters( 'gravityview/field/notes/strings', $strings ), 'esc_html' ); |
449 | 449 | |
450 | - if( $key ) { |
|
450 | + if ( $key ) { |
|
451 | 451 | return isset( $strings[ $key ] ) ? $strings[ $key ] : ''; |
452 | 452 | } |
453 | 453 | |
@@ -469,7 +469,7 @@ discard block |
||
469 | 469 | */ |
470 | 470 | static public function display_note( $note, $show_delete = false, $context = null ) { |
471 | 471 | |
472 | - if( ! is_object( $note ) ) { |
|
472 | + if ( ! is_object( $note ) ) { |
|
473 | 473 | return ''; |
474 | 474 | } |
475 | 475 | |
@@ -518,7 +518,7 @@ discard block |
||
518 | 518 | } |
519 | 519 | |
520 | 520 | $replacements = array( |
521 | - '{note_id}' => $note_content['note_id'], |
|
521 | + '{note_id}' => $note_content[ 'note_id' ], |
|
522 | 522 | '{row_class}' => 'gv-note', |
523 | 523 | '{note_detail}' => $note_detail_html |
524 | 524 | ); |
@@ -550,13 +550,13 @@ discard block |
||
550 | 550 | |
551 | 551 | $user_data = get_userdata( $current_user->ID ); |
552 | 552 | |
553 | - $note_content = trim( $data['gv-note-content'] ); |
|
553 | + $note_content = trim( $data[ 'gv-note-content' ] ); |
|
554 | 554 | |
555 | - if( empty( $note_content ) ) { |
|
555 | + if ( empty( $note_content ) ) { |
|
556 | 556 | return new WP_Error( 'gv-add-note-empty', __( 'The note is empty.', 'gravityview' ) ); |
557 | 557 | } |
558 | 558 | |
559 | - $return = GravityView_Entry_Notes::add_note( $entry['id'], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
559 | + $return = GravityView_Entry_Notes::add_note( $entry[ 'id' ], $user_data->ID, $user_data->display_name, $note_content, 'gravityview/field/notes' ); |
|
560 | 560 | |
561 | 561 | return $return; |
562 | 562 | } |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | |
577 | 577 | $atts = shortcode_atts( array( 'entry' => null ), $atts ); |
578 | 578 | |
579 | - if( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
579 | + if ( ! GVCommon::has_cap( 'gravityview_add_entry_notes' ) ) { |
|
580 | 580 | gravityview()->log->error( 'User does not have permission to add entry notes ("gravityview_add_entry_notes").' ); |
581 | 581 | return ''; |
582 | 582 | } |
@@ -594,7 +594,7 @@ discard block |
||
594 | 594 | |
595 | 595 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
596 | 596 | |
597 | - if ( $atts['entry'] ) { |
|
597 | + if ( $atts[ 'entry' ] ) { |
|
598 | 598 | $entry = GFAPI::get_entry( $entry_id ); |
599 | 599 | } |
600 | 600 | |
@@ -605,19 +605,19 @@ discard block |
||
605 | 605 | |
606 | 606 | // Strip extra whitespace in template |
607 | 607 | $add_note_html = gravityview_strip_whitespace( $add_note_html ); |
608 | - $entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
608 | + $entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
609 | 609 | $nonce_field = wp_nonce_field( 'gv_note_add_' . $entry_slug, 'gv_note_add', false, false ); |
610 | 610 | |
611 | 611 | // Only generate the dropdown if the field settings allow it |
612 | 612 | $email_fields = ''; |
613 | - if( ! empty( $visibility_settings['email'] ) ) { |
|
613 | + if ( ! empty( $visibility_settings[ 'email' ] ) ) { |
|
614 | 614 | $email_fields = self::get_note_email_fields( $entry_slug ); |
615 | 615 | } |
616 | 616 | |
617 | 617 | $add_note_html = str_replace( '{entry_slug}', $entry_slug, $add_note_html ); |
618 | 618 | $add_note_html = str_replace( '{nonce_field}', $nonce_field, $add_note_html ); |
619 | - $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings['delete'] ) ? 0 : $visibility_settings['delete'] ), $add_note_html ); |
|
620 | - $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
619 | + $add_note_html = str_replace( '{show_delete}', intval( empty( $visibility_settings[ 'delete' ] ) ? 0 : $visibility_settings[ 'delete' ] ), $add_note_html ); |
|
620 | + $add_note_html = str_replace( '{email_fields}', $email_fields, $add_note_html ); |
|
621 | 621 | $add_note_html = str_replace( '{url}', esc_url_raw( add_query_arg( array() ) ), $add_note_html ); |
622 | 622 | |
623 | 623 | return $add_note_html; |
@@ -642,8 +642,8 @@ discard block |
||
642 | 642 | $note_emails = array(); |
643 | 643 | |
644 | 644 | foreach ( $email_fields as $email_field ) { |
645 | - if ( ! empty( $entry["{$email_field->id}"] ) && is_email( $entry["{$email_field->id}"] ) ) { |
|
646 | - $note_emails[] = $entry["{$email_field->id}"]; |
|
645 | + if ( ! empty( $entry[ "{$email_field->id}" ] ) && is_email( $entry[ "{$email_field->id}" ] ) ) { |
|
646 | + $note_emails[ ] = $entry[ "{$email_field->id}" ]; |
|
647 | 647 | } |
648 | 648 | } |
649 | 649 | |
@@ -655,7 +655,7 @@ discard block |
||
655 | 655 | */ |
656 | 656 | $note_emails = apply_filters( 'gravityview/field/notes/emails', $note_emails, $entry ); |
657 | 657 | |
658 | - return (array) $note_emails; |
|
658 | + return (array)$note_emails; |
|
659 | 659 | } |
660 | 660 | |
661 | 661 | /** |
@@ -671,7 +671,7 @@ discard block |
||
671 | 671 | */ |
672 | 672 | private static function get_note_email_fields( $entry_slug = '' ) { |
673 | 673 | |
674 | - if( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
674 | + if ( ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
675 | 675 | gravityview()->log->error( 'User does not have permission to email entry notes ("gravityview_email_entry_notes").' ); |
676 | 676 | return ''; |
677 | 677 | } |
@@ -693,27 +693,27 @@ discard block |
||
693 | 693 | |
694 | 694 | if ( ! empty( $note_emails ) || $include_custom ) { ?> |
695 | 695 | <div class="gv-note-email-container"> |
696 | - <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings['also-email']; ?></label> |
|
696 | + <label for="gv-note-email-to-<?php echo $entry_slug_esc; ?>" class="screen-reader-text"><?php echo $strings[ 'also-email' ]; ?></label> |
|
697 | 697 | <select class="gv-note-email-to" name="gv-note-to" id="gv-note-email-to-<?php echo $entry_slug_esc; ?>"> |
698 | - <option value=""><?php echo $strings['also-email']; ?></option> |
|
698 | + <option value=""><?php echo $strings[ 'also-email' ]; ?></option> |
|
699 | 699 | <?php foreach ( $note_emails as $email ) { |
700 | 700 | ?> |
701 | 701 | <option value="<?php echo esc_attr( $email ); ?>"><?php echo esc_html( $email ); ?></option> |
702 | 702 | <?php } |
703 | - if( $include_custom ) { ?> |
|
704 | - <option value="custom"><?php echo self::strings('other-email'); ?></option> |
|
703 | + if ( $include_custom ) { ?> |
|
704 | + <option value="custom"><?php echo self::strings( 'other-email' ); ?></option> |
|
705 | 705 | <?php } ?> |
706 | 706 | </select> |
707 | 707 | <fieldset class="gv-note-to-container"> |
708 | - <?php if( $include_custom ) { ?> |
|
708 | + <?php if ( $include_custom ) { ?> |
|
709 | 709 | <div class='gv-note-to-custom-container'> |
710 | - <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings['email-label']; ?></label> |
|
711 | - <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="" /> |
|
710 | + <label for="gv-note-email-to-custom-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'email-label' ]; ?></label> |
|
711 | + <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="" /> |
|
712 | 712 | </div> |
713 | 713 | <?php } ?> |
714 | 714 | <div class='gv-note-subject-container'> |
715 | - <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings['subject-label']; ?></label> |
|
716 | - <input type="text" name="gv-note-subject" placeholder="<?php echo $strings['subject']; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
715 | + <label for="gv-note-subject-<?php echo $entry_slug_esc; ?>"><?php echo $strings[ 'subject-label' ]; ?></label> |
|
716 | + <input type="text" name="gv-note-subject" placeholder="<?php echo $strings[ 'subject' ]; ?>" id="gv-note-subject-<?php echo $entry_slug_esc; ?>" value="" /> |
|
717 | 717 | </div> |
718 | 718 | </fieldset> |
719 | 719 | </div> |
@@ -736,7 +736,7 @@ discard block |
||
736 | 736 | */ |
737 | 737 | private function maybe_send_entry_notes( $note = false, $entry, $data ) { |
738 | 738 | |
739 | - if( ! $note || ! GVCommon::has_cap('gravityview_email_entry_notes') ) { |
|
739 | + if ( ! $note || ! GVCommon::has_cap( 'gravityview_email_entry_notes' ) ) { |
|
740 | 740 | gravityview()->log->debug( 'User doesn\'t have "gravityview_email_entry_notes" cap, or $note is empty', array( 'data' => $note ) ); |
741 | 741 | return; |
742 | 742 | } |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | gravityview()->log->debug( '$data', array( 'data' => $data ) ); |
745 | 745 | |
746 | 746 | //emailing notes if configured |
747 | - if ( ! empty( $data['gv-note-to'] ) ) { |
|
747 | + if ( ! empty( $data[ 'gv-note-to' ] ) ) { |
|
748 | 748 | |
749 | 749 | $default_data = array( |
750 | 750 | 'gv-note-to' => '', |
@@ -754,11 +754,11 @@ discard block |
||
754 | 754 | 'current-url' => '', |
755 | 755 | ); |
756 | 756 | |
757 | - $current_user = wp_get_current_user(); |
|
757 | + $current_user = wp_get_current_user(); |
|
758 | 758 | $email_data = wp_parse_args( $data, $default_data ); |
759 | 759 | |
760 | - $from = $current_user->user_email; |
|
761 | - $to = $email_data['gv-note-to']; |
|
760 | + $from = $current_user->user_email; |
|
761 | + $to = $email_data[ 'gv-note-to' ]; |
|
762 | 762 | |
763 | 763 | /** |
764 | 764 | * Documented in get_note_email_fields |
@@ -766,8 +766,8 @@ discard block |
||
766 | 766 | */ |
767 | 767 | $include_custom = apply_filters( 'gravityview/field/notes/custom-email', true ); |
768 | 768 | |
769 | - if( 'custom' === $to && $include_custom ) { |
|
770 | - $to = $email_data['gv-note-to-custom']; |
|
769 | + if ( 'custom' === $to && $include_custom ) { |
|
770 | + $to = $email_data[ 'gv-note-to-custom' ]; |
|
771 | 771 | gravityview()->log->debug( 'Sending note to a custom email address: {to}' . array( 'to' => $to ) ); |
772 | 772 | } |
773 | 773 | |
@@ -778,13 +778,13 @@ discard block |
||
778 | 778 | |
779 | 779 | $bcc = false; |
780 | 780 | $reply_to = $from; |
781 | - $subject = trim( $email_data['gv-note-subject'] ); |
|
781 | + $subject = trim( $email_data[ 'gv-note-subject' ] ); |
|
782 | 782 | |
783 | 783 | // We use empty() here because GF uses empty to check against, too. `0` isn't a valid subject to GF |
784 | 784 | $subject = empty( $subject ) ? self::strings( 'default-email-subject' ) : $subject; |
785 | - $message = $email_data['gv-note-content']; |
|
785 | + $message = $email_data[ 'gv-note-content' ]; |
|
786 | 786 | $email_footer = self::strings( 'email-footer' ); |
787 | - $from_name = $current_user->display_name; |
|
787 | + $from_name = $current_user->display_name; |
|
788 | 788 | $message_format = 'html'; |
789 | 789 | |
790 | 790 | /** |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | |
816 | 816 | GVCommon::send_email( $from, $to, $bcc, $reply_to, $subject, $message, $from_name, $message_format, '', $entry, false ); |
817 | 817 | |
818 | - $form = isset( $entry['form_id'] ) ? GFAPI::get_form( $entry['form_id'] ) : array(); |
|
818 | + $form = isset( $entry[ 'form_id' ] ) ? GFAPI::get_form( $entry[ 'form_id' ] ) : array(); |
|
819 | 819 | |
820 | 820 | /** |
821 | 821 | * @see https://www.gravityhelp.com/documentation/article/10146-2/ It's here for compatibility with Gravity Forms |
@@ -841,7 +841,7 @@ discard block |
||
841 | 841 | |
842 | 842 | $output = ''; |
843 | 843 | |
844 | - if( ! empty( $email_footer ) ) { |
|
844 | + if ( ! empty( $email_footer ) ) { |
|
845 | 845 | $url = \GV\Utils::get( $email_data, 'current-url' ); |
846 | 846 | $url = html_entity_decode( $url ); |
847 | 847 | $url = site_url( $url ); |
@@ -21,10 +21,10 @@ |
||
21 | 21 | {email_fields} |
22 | 22 | |
23 | 23 | <div class="gv-note-content-container"> |
24 | - <label for="gv-note-content-{entry_slug}" class="screen-reader-text"><?php echo GravityView_Field_Notes::strings('content-label'); ?></label> |
|
24 | + <label for="gv-note-content-{entry_slug}" class="screen-reader-text"><?php echo GravityView_Field_Notes::strings( 'content-label' ); ?></label> |
|
25 | 25 | <textarea name="gv-note-content" id="gv-note-content-{entry_slug}"></textarea> |
26 | 26 | </div> |
27 | 27 | |
28 | - <button type="submit" class="button gv-add-note-submit"><?php echo GravityView_Field_Notes::strings('add-note'); ?></button> |
|
28 | + <button type="submit" class="button gv-add-note-submit"><?php echo GravityView_Field_Notes::strings( 'add-note' ); ?></button> |
|
29 | 29 | </div> |
30 | 30 | </form> |
31 | 31 | \ No newline at end of file |
@@ -21,7 +21,7 @@ |
||
21 | 21 | * @return string |
22 | 22 | */ |
23 | 23 | function get_field_desc() { |
24 | - return !empty( $this->field['desc'] ) ? $this->field['desc'] : ''; |
|
24 | + return ! empty( $this->field[ 'desc' ] ) ? $this->field[ 'desc' ] : ''; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | } |
23 | 23 | |
24 | 24 | function render_input( $override_input = null ) { |
25 | - if( isset( $override_input ) ) { |
|
25 | + if ( isset( $override_input ) ) { |
|
26 | 26 | echo $override_input; |
27 | 27 | return; |
28 | 28 | } |
@@ -30,18 +30,18 @@ discard block |
||
30 | 30 | ?> |
31 | 31 | <ul class="gv-setting-list"> |
32 | 32 | <?php |
33 | - foreach( $this->field['options'] as $value => $label ) { ?> |
|
34 | - <li <?php if( isset( $label['requires'] ) ) { printf( 'class="gv-sub-setting" data-requires="%s"', $label['requires'] ); } ?>> |
|
33 | + foreach ( $this->field[ 'options' ] as $value => $label ) { ?> |
|
34 | + <li <?php if ( isset( $label[ 'requires' ] ) ) { printf( 'class="gv-sub-setting" data-requires="%s"', $label[ 'requires' ] ); } ?>> |
|
35 | 35 | <label> |
36 | 36 | <input name="<?php printf( '%s[%s]', esc_attr( $this->name ), esc_attr( $value ) ); ?>" type="hidden" |
37 | 37 | value="0"/> |
38 | 38 | <input name="<?php printf( '%s[%s]', esc_attr( $this->name ), esc_attr( $value ) ); ?>" |
39 | 39 | id="<?php echo $this->get_field_id(); ?>" type="checkbox" |
40 | 40 | value="1" <?php checked( ! empty( $this->value[ $value ] ) ); ?> /> |
41 | - <?php echo esc_html( $label['label'] ); ?> |
|
41 | + <?php echo esc_html( $label[ 'label' ] ); ?> |
|
42 | 42 | </label> |
43 | - <?php if( ! empty( $label['desc'] ) ) { |
|
44 | - printf( '<span class="howto">%s</span>', $label['desc'] ); |
|
43 | + <?php if ( ! empty( $label[ 'desc' ] ) ) { |
|
44 | + printf( '<span class="howto">%s</span>', $label[ 'desc' ] ); |
|
45 | 45 | } |
46 | 46 | ?> |
47 | 47 | </li> |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
10 | 10 | |
11 | 11 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
12 | -$show_notes_logged_out = ( ! empty( $visibility_settings['view'] ) && ! empty( $visibility_settings['view_loggedout'] ) ); |
|
12 | +$show_notes_logged_out = ( ! empty( $visibility_settings[ 'view' ] ) && ! empty( $visibility_settings[ 'view_loggedout' ] ) ); |
|
13 | 13 | |
14 | -if( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
14 | +if ( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
@@ -25,20 +25,20 @@ discard block |
||
25 | 25 | do_action( 'gravityview/field/notes/scripts' ); |
26 | 26 | |
27 | 27 | $entry = $gravityview_view->getCurrentEntry(); |
28 | -$notes = GravityView_Entry_Notes::get_notes( $entry['id'] ); |
|
28 | +$notes = GravityView_Entry_Notes::get_notes( $entry[ 'id' ] ); |
|
29 | 29 | $strings = GravityView_Field_Notes::strings(); |
30 | -$entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
30 | +$entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
31 | 31 | |
32 | -$show_add = ! empty( $visibility_settings['add'] ); |
|
33 | -$show_delete = ( ! empty( $visibility_settings['delete'] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
34 | -$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings['view'] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
32 | +$show_add = ! empty( $visibility_settings[ 'add' ] ); |
|
33 | +$show_delete = ( ! empty( $visibility_settings[ 'delete' ] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
34 | +$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings[ 'view' ] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
35 | 35 | |
36 | 36 | $container_class = ( sizeof( $notes ) > 0 ? 'gv-has-notes' : 'gv-no-notes' ); |
37 | 37 | $container_class .= $show_notes ? ' gv-show-notes' : ' gv-hide-notes'; |
38 | 38 | ?> |
39 | 39 | <div class="gv-notes <?php echo $container_class; ?>"> |
40 | 40 | <?php |
41 | - if( $show_notes ) { |
|
41 | + if ( $show_notes ) { |
|
42 | 42 | ?> |
43 | 43 | <form method="post" class="gv-notes-list"> |
44 | 44 | <?php if ( $show_delete ) { wp_nonce_field( 'gv_delete_notes_' . $entry_slug, 'gv_delete_notes' ); } ?> |
@@ -46,21 +46,21 @@ discard block |
||
46 | 46 | <input type="hidden" name="action" value="gv_delete_notes" /> |
47 | 47 | <input type="hidden" name="entry-slug" value="<?php echo esc_attr( $entry_slug ); ?>" /> |
48 | 48 | <table> |
49 | - <caption><?php echo $strings['caption']; ?></caption> |
|
49 | + <caption><?php echo $strings[ 'caption' ]; ?></caption> |
|
50 | 50 | <?php |
51 | 51 | if ( $show_delete ) { |
52 | 52 | ?> |
53 | 53 | <thead> |
54 | 54 | <tr> |
55 | 55 | <th colspan="2"> |
56 | - <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings['toggle-notes']; ?>"><span class="screen-reader-text"><?php echo $strings['toggle-notes']; ?></span></label> |
|
57 | - <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings['delete']; ?></button> |
|
56 | + <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings[ 'toggle-notes' ]; ?>"><span class="screen-reader-text"><?php echo $strings[ 'toggle-notes' ]; ?></span></label> |
|
57 | + <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings[ 'delete' ]; ?></button> |
|
58 | 58 | </th> |
59 | 59 | </tr> |
60 | 60 | </thead> |
61 | 61 | <?php } ?> |
62 | 62 | <tbody> |
63 | - <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings['no-notes']; ?></td></tr> |
|
63 | + <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings[ 'no-notes' ]; ?></td></tr> |
|
64 | 64 | <?php |
65 | 65 | foreach ( $notes as $note ) { |
66 | 66 | echo GravityView_Field_Notes::display_note( $note, $show_delete ); |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | <?php |
74 | 74 | } // End if can view notes |
75 | 75 | |
76 | - if( $show_add ) { |
|
76 | + if ( $show_add ) { |
|
77 | 77 | echo do_shortcode( '[gv_note_add]' ); |
78 | 78 | } |
79 | 79 | ?> |
@@ -50,7 +50,7 @@ |
||
50 | 50 | */ |
51 | 51 | public function if_gravityview_return_true( $has_content = false ) { |
52 | 52 | |
53 | - if( ! class_exists( 'GravityView_frontend' ) ) { |
|
53 | + if ( ! class_exists( 'GravityView_frontend' ) ) { |
|
54 | 54 | return $has_content; |
55 | 55 | } |
56 | 56 |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | |
117 | 117 | // Dequeue other jQuery styles even if no-conflict is off. |
118 | 118 | // Terrible-looking tabs help no one. |
119 | - if( !empty( $wp_styles->registered ) ) { |
|
119 | + if( !empty( $wp_styles->registered ) ) { |
|
120 | 120 | foreach ($wp_styles->registered as $key => $style) { |
121 | 121 | if( preg_match( '/^(?:wp\-)?jquery/ism', $key ) ) { |
122 | 122 | wp_dequeue_style( $key ); |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | |
190 | 190 | //unregistering scripts |
191 | 191 | $registered = array(); |
192 | - foreach( $wp_objects->registered as $handle => $script_registration ){ |
|
193 | - if( in_array( $handle, $required_objects ) ){ |
|
192 | + foreach( $wp_objects->registered as $handle => $script_registration ) { |
|
193 | + if( in_array( $handle, $required_objects ) ) { |
|
194 | 194 | $registered[ $handle ] = $script_registration; |
195 | 195 | } |
196 | 196 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | */ |
19 | 19 | public function __construct() { |
20 | 20 | |
21 | - if( ! is_admin() ) { return; } |
|
21 | + if ( ! is_admin() ) { return; } |
|
22 | 22 | |
23 | 23 | $this->add_hooks(); |
24 | 24 | } |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | */ |
33 | 33 | private function add_hooks() { |
34 | 34 | //Hooks for no-conflict functionality |
35 | - add_action( 'wp_print_scripts', array( $this, 'no_conflict_scripts' ), 1000); |
|
36 | - add_action( 'admin_print_footer_scripts', array( $this, 'no_conflict_scripts' ), 9); |
|
35 | + add_action( 'wp_print_scripts', array( $this, 'no_conflict_scripts' ), 1000 ); |
|
36 | + add_action( 'admin_print_footer_scripts', array( $this, 'no_conflict_scripts' ), 9 ); |
|
37 | 37 | |
38 | - add_action( 'wp_print_styles', array( $this, 'no_conflict_styles' ), 1000); |
|
39 | - add_action( 'admin_print_styles', array( $this, 'no_conflict_styles' ), 11); |
|
40 | - add_action( 'admin_print_footer_scripts', array( $this, 'no_conflict_styles' ), 1); |
|
41 | - add_action( 'admin_footer', array( $this, 'no_conflict_styles' ), 1); |
|
38 | + add_action( 'wp_print_styles', array( $this, 'no_conflict_styles' ), 1000 ); |
|
39 | + add_action( 'admin_print_styles', array( $this, 'no_conflict_styles' ), 11 ); |
|
40 | + add_action( 'admin_print_footer_scripts', array( $this, 'no_conflict_styles' ), 1 ); |
|
41 | + add_action( 'admin_footer', array( $this, 'no_conflict_styles' ), 1 ); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -51,13 +51,13 @@ discard block |
||
51 | 51 | function no_conflict_scripts() { |
52 | 52 | global $wp_scripts; |
53 | 53 | |
54 | - if( ! gravityview_is_admin_page() ) { |
|
54 | + if ( ! gravityview_is_admin_page() ) { |
|
55 | 55 | return; |
56 | 56 | } |
57 | 57 | |
58 | 58 | $no_conflict_mode = gravityview()->plugin->settings->get( 'no-conflict-mode' ); |
59 | 59 | |
60 | - if( empty( $no_conflict_mode ) ) { |
|
60 | + if ( empty( $no_conflict_mode ) ) { |
|
61 | 61 | return; |
62 | 62 | } |
63 | 63 | |
@@ -110,15 +110,15 @@ discard block |
||
110 | 110 | function no_conflict_styles() { |
111 | 111 | global $wp_styles; |
112 | 112 | |
113 | - if( ! gravityview_is_admin_page() ) { |
|
113 | + if ( ! gravityview_is_admin_page() ) { |
|
114 | 114 | return; |
115 | 115 | } |
116 | 116 | |
117 | 117 | // Dequeue other jQuery styles even if no-conflict is off. |
118 | 118 | // Terrible-looking tabs help no one. |
119 | - if( !empty( $wp_styles->registered ) ) { |
|
120 | - foreach ($wp_styles->registered as $key => $style) { |
|
121 | - if( preg_match( '/^(?:wp\-)?jquery/ism', $key ) ) { |
|
119 | + if ( ! empty( $wp_styles->registered ) ) { |
|
120 | + foreach ( $wp_styles->registered as $key => $style ) { |
|
121 | + if ( preg_match( '/^(?:wp\-)?jquery/ism', $key ) ) { |
|
122 | 122 | wp_dequeue_style( $key ); |
123 | 123 | } |
124 | 124 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $no_conflict_mode = gravityview()->plugin->settings->get( 'no-conflict-mode' ); |
128 | 128 | |
129 | 129 | // If no conflict is off, jQuery will suffice. |
130 | - if( empty( $no_conflict_mode ) ) { |
|
130 | + if ( empty( $no_conflict_mode ) ) { |
|
131 | 131 | return; |
132 | 132 | } |
133 | 133 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | /** |
155 | 155 | * @action `gravityview_remove_conflicts_after` Runs after no-conflict styles are removed. You can re-add styles here. |
156 | 156 | */ |
157 | - do_action('gravityview_remove_conflicts_after'); |
|
157 | + do_action( 'gravityview_remove_conflicts_after' ); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | /** |
@@ -178,9 +178,9 @@ discard block |
||
178 | 178 | |
179 | 179 | //reset queue |
180 | 180 | $queue = array(); |
181 | - foreach( $wp_objects->queue as $object ) { |
|
182 | - if( in_array( $object, $required_objects ) || preg_match('/gravityview|gf_|gravityforms/ism', $object ) ) { |
|
183 | - $queue[] = $object; |
|
181 | + foreach ( $wp_objects->queue as $object ) { |
|
182 | + if ( in_array( $object, $required_objects ) || preg_match( '/gravityview|gf_|gravityforms/ism', $object ) ) { |
|
183 | + $queue[ ] = $object; |
|
184 | 184 | } |
185 | 185 | } |
186 | 186 | $wp_objects->queue = $queue; |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | |
190 | 190 | //unregistering scripts |
191 | 191 | $registered = array(); |
192 | - foreach( $wp_objects->registered as $handle => $script_registration ){ |
|
193 | - if( in_array( $handle, $required_objects ) ){ |
|
192 | + foreach ( $wp_objects->registered as $handle => $script_registration ) { |
|
193 | + if ( in_array( $handle, $required_objects ) ) { |
|
194 | 194 | $registered[ $handle ] = $script_registration; |
195 | 195 | } |
196 | 196 | } |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | * @param array $registered [description] |
206 | 206 | * @param array $scripts [description] |
207 | 207 | */ |
208 | - private function add_script_dependencies($registered, $scripts) { |
|
208 | + private function add_script_dependencies( $registered, $scripts ) { |
|
209 | 209 | |
210 | 210 | //gets all dependent scripts linked to the $scripts array passed |
211 | 211 | do { |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $deps = isset( $registered[ $script ] ) && is_array( $registered[ $script ]->deps ) ? $registered[ $script ]->deps : array(); |
215 | 215 | foreach ( $deps as $dep ) { |
216 | 216 | if ( ! in_array( $dep, $scripts ) && ! in_array( $dep, $dependents ) ) { |
217 | - $dependents[] = $dep; |
|
217 | + $dependents[ ] = $dep; |
|
218 | 218 | } |
219 | 219 | } |
220 | 220 | } |
@@ -19,12 +19,12 @@ |
||
19 | 19 | } |
20 | 20 | |
21 | 21 | function render_input( $override_input = null ) { |
22 | - if( isset( $override_input ) ) { |
|
22 | + if ( isset( $override_input ) ) { |
|
23 | 23 | echo $override_input; |
24 | 24 | return; |
25 | 25 | } |
26 | 26 | |
27 | - foreach( $this->field['options'] as $value => $label ) : ?> |
|
27 | + foreach ( $this->field[ 'options' ] as $value => $label ) : ?> |
|
28 | 28 | <label class="<?php echo $this->get_label_class(); ?>"> |
29 | 29 | <input name="<?php echo esc_attr( $this->name ); ?>" id="<?php echo $this->get_field_id(); ?>-<?php echo esc_attr( $value ); ?>" type="radio" value="<?php echo esc_attr( $value ); ?>" <?php checked( $value, $this->value, true ); ?> /> <?php echo esc_html( $label ); ?> |
30 | 30 | </label> |
@@ -38,8 +38,8 @@ |
||
38 | 38 | // Set the $_field_id var |
39 | 39 | $field_options = parent::field_options( $field_options, $template_id, $field_id, $context, $input_type ); |
40 | 40 | |
41 | - if( $this->is_choice_value_enabled() ) { |
|
42 | - $field_options['choice_display'] = array( |
|
41 | + if ( $this->is_choice_value_enabled() ) { |
|
42 | + $field_options[ 'choice_display' ] = array( |
|
43 | 43 | 'type' => 'radio', |
44 | 44 | 'value' => 'value', |
45 | 45 | 'label' => __( 'What should be displayed:', 'gravityview' ), |