Administration: Explicitly deprecate screen_icon() and get_screen_icon(), which were soft-deprecated in [26537] for 3.8.0.

Props ippei-sumida for the initial patch.
Fixes #41153.


git-svn-id: https://develop.svn.wordpress.org/trunk@41274 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2017-08-20 04:02:16 +00:00
parent 281d6c23f8
commit 9bf29bd7a0

View File

@ -1220,22 +1220,23 @@ function the_attachment_links( $id = false ) {
* Displays a screen icon. * Displays a screen icon.
* *
* @since 2.7.0 * @since 2.7.0
* @since 3.8.0 Screen icons are no longer used in WordPress. This function no longer produces output. * @deprecated 3.8.0
* @deprecated 3.8.0 Use get_screen_icon()
* @see get_screen_icon()
*/ */
function screen_icon() { function screen_icon() {
_deprecated_function( __FUNCTION__, '3.8.0' );
echo get_screen_icon(); echo get_screen_icon();
} }
/** /**
* Retrieves the screen icon (no longer used in 3.8+). * Retrieves the screen icon (no longer used in 3.8+).
* *
* @since 3.2.0
* @deprecated 3.8.0 * @deprecated 3.8.0
* *
* @return string * @return string
*/ */
function get_screen_icon() { function get_screen_icon() {
_deprecated_function( __FUNCTION__, '3.8.0' );
return '<!-- Screen icons are no longer used as of WordPress 3.8. -->'; return '<!-- Screen icons are no longer used as of WordPress 3.8. -->';
} }