From 124c0ec6dcb7394b84e710fa2936c3e65822ad8f Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Tue, 8 Oct 2019 06:39:38 +0200
Subject: [PATCH] Documentation: use short docblock style comments for "filter
documented elsewhere" comments
---
src/wp-includes/script-loader.php | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/wp-includes/script-loader.php b/src/wp-includes/script-loader.php
index ee36191ec2..e2cacdf426 100644
a
|
b
|
function wp_tinymce_inline_scripts() { |
777 | 777 | 'wpview', |
778 | 778 | ); |
779 | 779 | |
780 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 780 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
781 | 781 | $tinymce_plugins = apply_filters( 'tiny_mce_plugins', $tinymce_plugins, 'classic-block' ); |
782 | 782 | $tinymce_plugins = array_unique( $tinymce_plugins ); |
783 | 783 | |
… |
… |
function wp_tinymce_inline_scripts() { |
806 | 806 | 'wp_adv', |
807 | 807 | ); |
808 | 808 | |
809 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 809 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
810 | 810 | $toolbar1 = apply_filters( 'mce_buttons', $toolbar1, 'classic-block' ); |
811 | 811 | |
812 | 812 | $toolbar2 = array( |
… |
… |
function wp_tinymce_inline_scripts() { |
823 | 823 | 'wp_help', |
824 | 824 | ); |
825 | 825 | |
826 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 826 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
827 | 827 | $toolbar2 = apply_filters( 'mce_buttons_2', $toolbar2, 'classic-block' ); |
828 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 828 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
829 | 829 | $toolbar3 = apply_filters( 'mce_buttons_3', array(), 'classic-block' ); |
830 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 830 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
831 | 831 | $toolbar4 = apply_filters( 'mce_buttons_4', array(), 'classic-block' ); |
832 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 832 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
833 | 833 | $external_plugins = apply_filters( 'mce_external_plugins', array(), 'classic-block' ); |
834 | 834 | |
835 | 835 | $tinymce_settings = array( |
… |
… |
function wp_tinymce_inline_scripts() { |
850 | 850 | array_merge( $tinymce_settings, $editor_settings['tinymce'] ); |
851 | 851 | } |
852 | 852 | |
853 | | /* This filter is documented in wp-includes/class-wp-editor.php */ |
| 853 | /** This filter is documented in wp-includes/class-wp-editor.php */ |
854 | 854 | $tinymce_settings = apply_filters( 'tiny_mce_before_init', $tinymce_settings, 'classic-block' ); |
855 | 855 | |
856 | 856 | // Do "by hand" translation from PHP array to js object. |