@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * Verify permissions. Check expected $_POST. Parse args, then send to process_delete_notes |
| 270 | 270 | * |
| 271 | - * @since 1.17 |
|
| 271 | + * @since 1.17 |
|
| 272 | 272 | * |
| 273 | 273 | * @see process_delete_notes |
| 274 | 274 | * |
@@ -421,7 +421,7 @@ discard block |
||
| 421 | 421 | 'subject-label' => __( 'Subject', 'gravityview' ), |
| 422 | 422 | 'subject' => __( 'Email subject', 'gravityview' ), |
| 423 | 423 | 'default-email-subject' => __( 'New entry note', 'gravityview' ), |
| 424 | - 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
| 424 | + 'email-footer' => __( 'This note was sent from {url}', 'gravityview' ), |
|
| 425 | 425 | 'also-email' => __( 'Also email this note to', 'gravityview' ), |
| 426 | 426 | 'error-add-note' => __( 'There was an error adding the note.', 'gravityview' ), |
| 427 | 427 | 'error-invalid' => __( 'The request was invalid. Refresh the page and try again.', 'gravityview' ), |
@@ -710,7 +710,7 @@ discard block |
||
| 710 | 710 | 'gv-note-to-custom' => '', |
| 711 | 711 | 'gv-note-subject' => '', |
| 712 | 712 | 'gv-note-content' => '', |
| 713 | - 'current-url' => '', |
|
| 713 | + 'current-url' => '', |
|
| 714 | 714 | ); |
| 715 | 715 | |
| 716 | 716 | $current_user = wp_get_current_user(); |
@@ -762,9 +762,9 @@ discard block |
||
| 762 | 762 | $message .= $this->get_email_footer( $email_footer, $is_html, $email_data ); |
| 763 | 763 | |
| 764 | 764 | /** |
| 765 | - * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
| 765 | + * @filter `gravityview/field/notes/wpautop_email` Should the message content have paragraphs added automatically, if using HTML message format |
|
| 766 | 766 | * @since 1.18 |
| 767 | - * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
| 767 | + * @param bool $wpautop_email True: Apply wpautop() to the email message if using; False: Leave as entered (Default: true) |
|
| 768 | 768 | */ |
| 769 | 769 | $wpautop_email = apply_filters( 'gravityview/field/notes/wpautop_email', true ); |
| 770 | 770 | |
@@ -784,12 +784,12 @@ discard block |
||
| 784 | 784 | } |
| 785 | 785 | |
| 786 | 786 | /** |
| 787 | - * Get the footer for Entry Note emails |
|
| 788 | - * |
|
| 789 | - * `{url}` is replaced by the URL of the page where the note form was embedded |
|
| 790 | - * |
|
| 791 | - * @since 1.18 |
|
| 792 | - * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
| 787 | + * Get the footer for Entry Note emails |
|
| 788 | + * |
|
| 789 | + * `{url}` is replaced by the URL of the page where the note form was embedded |
|
| 790 | + * |
|
| 791 | + * @since 1.18 |
|
| 792 | + * @see GravityView_Field_Notes::strings The default value of $message_footer is set here, with the key 'email-footer' |
|
| 793 | 793 | * |
| 794 | 794 | * @param string $email_footer The message footer value |
| 795 | 795 | * @param bool $is_html True: Email is being sent as HTML; False: sent as text |
@@ -798,10 +798,10 @@ discard block |
||
| 798 | 798 | */ |
| 799 | 799 | private function get_email_footer( $email_footer = '', $is_html = true, $email_data = array() ) { |
| 800 | 800 | |
| 801 | - $output = ''; |
|
| 801 | + $output = ''; |
|
| 802 | 802 | |
| 803 | 803 | if( ! empty( $email_footer ) ) { |
| 804 | - $url = rgar( $email_data, 'current-url' ); |
|
| 804 | + $url = rgar( $email_data, 'current-url' ); |
|
| 805 | 805 | $url = html_entity_decode( $url ); |
| 806 | 806 | $url = site_url( $url ); |
| 807 | 807 | |