mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-09-01 22:50:22 +00:00
Coding Standards: Consistently use do_action_deprecated() and apply_filters_deprecated() for deprecated hooks.
Props jrf. See #48255. git-svn-id: https://develop.svn.wordpress.org/trunk@46684 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -21,7 +21,7 @@ if ( 'category' == $taxonomy ) {
|
||||
*
|
||||
* @param WP_Term $tag Current category term object.
|
||||
*/
|
||||
do_action( 'edit_category_form_pre', $tag );
|
||||
do_action_deprecated( 'edit_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
|
||||
} elseif ( 'link_category' == $taxonomy ) {
|
||||
/**
|
||||
* Fires before the Edit Link Category form.
|
||||
@@ -31,7 +31,7 @@ if ( 'category' == $taxonomy ) {
|
||||
*
|
||||
* @param WP_Term $tag Current link category term object.
|
||||
*/
|
||||
do_action( 'edit_link_category_form_pre', $tag );
|
||||
do_action_deprecated( 'edit_link_category_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
|
||||
} else {
|
||||
/**
|
||||
* Fires before the Edit Tag form.
|
||||
@@ -41,7 +41,7 @@ if ( 'category' == $taxonomy ) {
|
||||
*
|
||||
* @param WP_Term $tag Current tag term object.
|
||||
*/
|
||||
do_action( 'edit_tag_form_pre', $tag );
|
||||
do_action_deprecated( 'edit_tag_form_pre', array( $tag ), '3.0.0', '{$taxonomy}_pre_edit_form' );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -201,7 +201,7 @@ if ( isset( $tag->name ) ) {
|
||||
*
|
||||
* @param WP_Term $tag Current category term object.
|
||||
*/
|
||||
do_action( 'edit_category_form_fields', $tag );
|
||||
do_action_deprecated( 'edit_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
|
||||
} elseif ( 'link_category' == $taxonomy ) {
|
||||
/**
|
||||
* Fires after the Edit Link Category form fields are displayed.
|
||||
@@ -211,7 +211,7 @@ if ( isset( $tag->name ) ) {
|
||||
*
|
||||
* @param WP_Term $tag Current link category term object.
|
||||
*/
|
||||
do_action( 'edit_link_category_form_fields', $tag );
|
||||
do_action_deprecated( 'edit_link_category_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
|
||||
} else {
|
||||
/**
|
||||
* Fires after the Edit Tag form fields are displayed.
|
||||
@@ -221,7 +221,7 @@ if ( isset( $tag->name ) ) {
|
||||
*
|
||||
* @param WP_Term $tag Current tag term object.
|
||||
*/
|
||||
do_action( 'edit_tag_form_fields', $tag );
|
||||
do_action_deprecated( 'edit_tag_form_fields', array( $tag ), '3.0.0', '{$taxonomy}_edit_form_fields' );
|
||||
}
|
||||
/**
|
||||
* Fires after the Edit Term form fields are displayed.
|
||||
@@ -241,10 +241,10 @@ if ( isset( $tag->name ) ) {
|
||||
// Back compat hooks
|
||||
if ( 'category' == $taxonomy ) {
|
||||
/** This action is documented in wp-admin/edit-tags.php */
|
||||
do_action( 'edit_category_form', $tag );
|
||||
do_action_deprecated( 'edit_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' );
|
||||
} elseif ( 'link_category' == $taxonomy ) {
|
||||
/** This action is documented in wp-admin/edit-tags.php */
|
||||
do_action( 'edit_link_category_form', $tag );
|
||||
do_action_deprecated( 'edit_link_category_form', array( $tag ), '3.0.0', '{$taxonomy}_add_form' );
|
||||
} else {
|
||||
/**
|
||||
* Fires at the end of the Edit Term form.
|
||||
@@ -254,7 +254,7 @@ if ( 'category' == $taxonomy ) {
|
||||
*
|
||||
* @param WP_Term $tag Current taxonomy term object.
|
||||
*/
|
||||
do_action( 'edit_tag_form', $tag );
|
||||
do_action_deprecated( 'edit_tag_form', array( $tag ), '3.0.0', '{$taxonomy}_edit_form' );
|
||||
}
|
||||
/**
|
||||
* Fires at the end of the Edit Term form for all taxonomies.
|
||||
|
||||
@@ -378,7 +378,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param object $arg Optional arguments cast to an object.
|
||||
*/
|
||||
do_action( 'add_category_form_pre', (object) array( 'parent' => 0 ) );
|
||||
do_action_deprecated( 'add_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
|
||||
} elseif ( 'link_category' == $taxonomy ) {
|
||||
/**
|
||||
* Fires before the link category form.
|
||||
@@ -388,7 +388,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param object $arg Optional arguments cast to an object.
|
||||
*/
|
||||
do_action( 'add_link_category_form_pre', (object) array( 'parent' => 0 ) );
|
||||
do_action_deprecated( 'add_link_category_form_pre', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_pre_add_form' );
|
||||
} else {
|
||||
/**
|
||||
* Fires before the Add Tag form.
|
||||
@@ -398,7 +398,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param string $taxonomy The taxonomy slug.
|
||||
*/
|
||||
do_action( 'add_tag_form_pre', $taxonomy );
|
||||
do_action_deprecated( 'add_tag_form_pre', array( $taxonomy ), '3.0.0', '{$taxonomy}_pre_add_form' );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -534,7 +534,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param object $arg Optional arguments cast to an object.
|
||||
*/
|
||||
do_action( 'edit_category_form', (object) array( 'parent' => 0 ) );
|
||||
do_action_deprecated( 'edit_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
|
||||
} elseif ( 'link_category' == $taxonomy ) {
|
||||
/**
|
||||
* Fires at the end of the Edit Link form.
|
||||
@@ -544,7 +544,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param object $arg Optional arguments cast to an object.
|
||||
*/
|
||||
do_action( 'edit_link_category_form', (object) array( 'parent' => 0 ) );
|
||||
do_action_deprecated( 'edit_link_category_form', array( (object) array( 'parent' => 0 ) ), '3.0.0', '{$taxonomy}_add_form' );
|
||||
} else {
|
||||
/**
|
||||
* Fires at the end of the Add Tag form.
|
||||
@@ -554,7 +554,7 @@ if ( $can_edit_terms ) {
|
||||
*
|
||||
* @param string $taxonomy The taxonomy slug.
|
||||
*/
|
||||
do_action( 'add_tag_form', $taxonomy );
|
||||
do_action_deprecated( 'add_tag_form', array( $taxonomy ), '3.0.0', '{$taxonomy}_add_form' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -796,7 +796,12 @@ final class WP_Screen {
|
||||
* @param array $old_compat_help Old contextual help.
|
||||
* @param WP_Screen $this Current WP_Screen instance.
|
||||
*/
|
||||
self::$_old_compat_help = apply_filters( 'contextual_help_list', self::$_old_compat_help, $this );
|
||||
self::$_old_compat_help = apply_filters_deprecated(
|
||||
'contextual_help_list',
|
||||
array( self::$_old_compat_help, $this ),
|
||||
'3.3.0',
|
||||
'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()'
|
||||
);
|
||||
|
||||
$old_help = isset( self::$_old_compat_help[ $this->id ] ) ? self::$_old_compat_help[ $this->id ] : '';
|
||||
|
||||
@@ -811,7 +816,12 @@ final class WP_Screen {
|
||||
* @param string $screen_id Screen ID.
|
||||
* @param WP_Screen $this Current WP_Screen instance.
|
||||
*/
|
||||
$old_help = apply_filters( 'contextual_help', $old_help, $this->id, $this );
|
||||
$old_help = apply_filters_deprecated(
|
||||
'contextual_help',
|
||||
array( $old_help, $this->id, $this ),
|
||||
'3.3.0',
|
||||
'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()'
|
||||
);
|
||||
|
||||
// Default help only if there is no old-style block of text and no new-style help tabs.
|
||||
if ( empty( $old_help ) && ! $this->get_help_tabs() ) {
|
||||
@@ -825,7 +835,12 @@ final class WP_Screen {
|
||||
*
|
||||
* @param string $old_help_default Default contextual help text.
|
||||
*/
|
||||
$default_help = apply_filters( 'default_contextual_help', '' );
|
||||
$default_help = apply_filters_deprecated(
|
||||
'default_contextual_help',
|
||||
array( '' ),
|
||||
'3.3.0',
|
||||
'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()'
|
||||
);
|
||||
if ( $default_help ) {
|
||||
$old_help = '<p>' . $default_help . '</p>';
|
||||
}
|
||||
|
||||
@@ -97,7 +97,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
*
|
||||
* @param int $tags_per_page Number of tags to be displayed. Default 20.
|
||||
*/
|
||||
$tags_per_page = apply_filters( 'tagsperpage', $tags_per_page );
|
||||
$tags_per_page = apply_filters_deprecated( 'tagsperpage', array( $tags_per_page ), '2.8.0', 'edit_tags_per_page' );
|
||||
} elseif ( 'category' === $this->screen->taxonomy ) {
|
||||
/**
|
||||
* Filters the number of terms displayed per page for the Categories list table.
|
||||
@@ -508,7 +508,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
* 'Edit', 'Quick Edit', 'Delete', and 'View'.
|
||||
* @param WP_Term $tag Term object.
|
||||
*/
|
||||
$actions = apply_filters( 'tag_row_actions', $actions, $tag );
|
||||
$actions = apply_filters_deprecated( 'tag_row_actions', array( $actions, $tag ), '3.0.0', '{$taxonomy}_row_actions' );
|
||||
|
||||
/**
|
||||
* Filters the action links displayed for each term in the terms list table.
|
||||
|
||||
@@ -292,7 +292,7 @@ function wp_stream_image( $image, $mime_type, $attachment_id ) {
|
||||
* @param resource $image Image resource to be streamed.
|
||||
* @param int $attachment_id The attachment post ID.
|
||||
*/
|
||||
$image = apply_filters( 'image_save_pre', $image, $attachment_id );
|
||||
$image = apply_filters_deprecated( 'image_save_pre', array( $image, $attachment_id ), '3.5.0', 'image_editor_save_pre' );
|
||||
|
||||
switch ( $mime_type ) {
|
||||
case 'image/jpeg':
|
||||
@@ -353,7 +353,7 @@ function wp_save_image_file( $filename, $image, $mime_type, $post_id ) {
|
||||
_deprecated_argument( __FUNCTION__, '3.5.0', sprintf( __( '%1$s needs to be a %2$s object.' ), '$image', 'WP_Image_Editor' ) );
|
||||
|
||||
/** This filter is documented in wp-admin/includes/image-edit.php */
|
||||
$image = apply_filters( 'image_save_pre', $image, $post_id );
|
||||
$image = apply_filters_deprecated( 'image_save_pre', array( $image, $post_id ), '3.5.0', 'image_editor_save_pre' );;
|
||||
|
||||
/**
|
||||
* Filters whether to skip saving the image file.
|
||||
@@ -370,7 +370,7 @@ function wp_save_image_file( $filename, $image, $mime_type, $post_id ) {
|
||||
* @param string $mime_type Image mime type.
|
||||
* @param int $post_id Post ID.
|
||||
*/
|
||||
$saved = apply_filters( 'wp_save_image_file', null, $filename, $image, $mime_type, $post_id );
|
||||
$saved = apply_filters_deprecated( 'wp_save_image_file', array( null, $filename, $image, $mime_type, $post_id ), '3.5.0', 'wp_save_image_editor_file' );
|
||||
|
||||
if ( null !== $saved ) {
|
||||
return $saved;
|
||||
@@ -570,7 +570,7 @@ function image_edit_apply_changes( $image, $changes ) {
|
||||
* @param resource $image GD image resource.
|
||||
* @param array $changes Array of change operations.
|
||||
*/
|
||||
$image = apply_filters( 'image_edit_before_change', $image, $changes );
|
||||
$image = apply_filters_deprecated( 'image_edit_before_change', array( $image, $changes ), '3.5.0', 'wp_image_editor_before_change' );
|
||||
}
|
||||
|
||||
foreach ( $changes as $operation ) {
|
||||
|
||||
@@ -654,7 +654,7 @@ function media_buttons( $editor_id = 'content' ) {
|
||||
*
|
||||
* @param string $string Media buttons context. Default empty.
|
||||
*/
|
||||
$legacy_filter = apply_filters( 'media_buttons_context', '' );
|
||||
$legacy_filter = apply_filters_deprecated( 'media_buttons_context', array( '' ), '3.5.0', 'media_buttons' );
|
||||
|
||||
if ( $legacy_filter ) {
|
||||
// #WP22559. Close <a> if a plugin started by closing <a> to open their own <a> tag.
|
||||
|
||||
@@ -1508,7 +1508,7 @@ function register_and_do_post_meta_boxes( $post ) {
|
||||
*
|
||||
* @param WP_Post $post Post object.
|
||||
*/
|
||||
do_action( 'dbx_post_advanced', $post );
|
||||
do_action_deprecated( 'dbx_post_advanced', array( $post ), '3.7.0', 'add_meta_boxes' );
|
||||
|
||||
// Allow the Discussion meta box to show up if the post type supports comments,
|
||||
// or if comments or pings are open.
|
||||
|
||||
Reference in New Issue
Block a user