From 281d6c23f8b67e193a2d9dd06d5684b71142912b Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 20 Aug 2017 03:37:17 +0000 Subject: [PATCH] Docs: Explicitly deprecate the `add_tab()`, `remove_tab()`, and `print_tab_image()` methods for `WP_Customize_Image_Control`, originally soft-deprecated in 4.1. Props jrf. See #41121. git-svn-id: https://develop.svn.wordpress.org/trunk@41273 602fd350-edb4-49c9-b593-d223f7449a82 --- .../customize/class-wp-customize-image-control.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/customize/class-wp-customize-image-control.php b/src/wp-includes/customize/class-wp-customize-image-control.php index ffb89e3f4a..38ac608f1f 100644 --- a/src/wp-includes/customize/class-wp-customize-image-control.php +++ b/src/wp-includes/customize/class-wp-customize-image-control.php @@ -56,7 +56,9 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control { * @param string $label * @param mixed $callback */ - public function add_tab( $id, $label, $callback ) {} + public function add_tab( $id, $label, $callback ) { + _deprecated_function( __METHOD__, '4.1.0' ); + } /** * @since 3.4.0 @@ -64,7 +66,9 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control { * * @param string $id */ - public function remove_tab( $id ) {} + public function remove_tab( $id ) { + _deprecated_function( __METHOD__, '4.1.0' ); + } /** * @since 3.4.0 @@ -73,5 +77,7 @@ class WP_Customize_Image_Control extends WP_Customize_Upload_Control { * @param string $url * @param string $thumbnail_url */ - public function print_tab_image( $url, $thumbnail_url = null ) {} + public function print_tab_image( $url, $thumbnail_url = null ) { + _deprecated_function( __METHOD__, '4.1.0' ); + } }