Changeset 45599 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 07/05/2019 01:44:41 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r45590 r45599 3074 3074 * @param array $args An array of arguments to delete the page. 3075 3075 */ 3076 do_action( 'xmlrpc_call_success_wp_deletePage', $page_id, $args ); 3076 do_action( 'xmlrpc_call_success_wp_deletePage', $page_id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3077 3077 3078 3078 return true; … … 3381 3381 * @param array $args An array of new category arguments. 3382 3382 */ 3383 do_action( 'xmlrpc_call_success_wp_newCategory', $cat_id, $args ); 3383 do_action( 'xmlrpc_call_success_wp_newCategory', $cat_id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3384 3384 3385 3385 return $cat_id; … … 3431 3431 * @param array $args An array of arguments to delete the category. 3432 3432 */ 3433 do_action( 'xmlrpc_call_success_wp_deleteCategory', $category_id, $args ); 3433 do_action( 'xmlrpc_call_success_wp_deleteCategory', $category_id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3434 3434 } 3435 3435 … … 3678 3678 * @param array $args An array of arguments to delete the comment. 3679 3679 */ 3680 do_action( 'xmlrpc_call_success_wp_deleteComment', $comment_ID, $args ); 3680 do_action( 'xmlrpc_call_success_wp_deleteComment', $comment_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3681 3681 } 3682 3682 … … 3790 3790 * @param array $args An array of arguments to update the comment. 3791 3791 */ 3792 do_action( 'xmlrpc_call_success_wp_editComment', $comment_ID, $args ); 3792 do_action( 'xmlrpc_call_success_wp_editComment', $comment_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3793 3793 3794 3794 return true; … … 3927 3927 * @param array $args An array of new comment arguments. 3928 3928 */ 3929 do_action( 'xmlrpc_call_success_wp_newComment', $comment_ID, $args ); 3929 do_action( 'xmlrpc_call_success_wp_newComment', $comment_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 3930 3930 3931 3931 return $comment_ID; … … 5056 5056 * @param array $args An array of new post arguments. 5057 5057 */ 5058 do_action( 'xmlrpc_call_success_blogger_newPost', $post_ID, $args ); 5058 do_action( 'xmlrpc_call_success_blogger_newPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 5059 5059 5060 5060 return $post_ID; … … 5135 5135 * @param array $args An array of arguments for the post to edit. 5136 5136 */ 5137 do_action( 'xmlrpc_call_success_blogger_editPost', $post_ID, $args ); 5137 do_action( 'xmlrpc_call_success_blogger_editPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 5138 5138 5139 5139 return true; … … 5194 5194 * @param array $args An array of arguments to delete the post. 5195 5195 */ 5196 do_action( 'xmlrpc_call_success_blogger_deletePost', $post_ID, $args ); 5196 do_action( 'xmlrpc_call_success_blogger_deletePost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 5197 5197 5198 5198 return true; … … 5546 5546 * @param array $args An array of arguments to create the new post. 5547 5547 */ 5548 do_action( 'xmlrpc_call_success_mw_newPost', $post_ID, $args ); 5548 do_action( 'xmlrpc_call_success_mw_newPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 5549 5549 5550 5550 return strval( $post_ID ); … … 5930 5930 * @param array $args An array of arguments to update the post. 5931 5931 */ 5932 do_action( 'xmlrpc_call_success_mw_editPost', $post_ID, $args ); 5932 do_action( 'xmlrpc_call_success_mw_editPost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 5933 5933 5934 5934 return true; … … 6365 6365 * @param array $args An array of arguments to add the attachment. 6366 6366 */ 6367 do_action( 'xmlrpc_call_success_mw_newMediaObject', $id, $args ); 6367 do_action( 'xmlrpc_call_success_mw_newMediaObject', $id, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 6368 6368 6369 6369 $struct = $this->_prepare_media_item( get_post( $id ) );
Note: See TracChangeset
for help on using the changeset viewer.