Make WordPress Core

Opened 13 years ago

Closed 11 years ago

#18710 closed enhancement (fixed)

post_deleted_messages filter

Reported by: jgadbois's profile jgadbois Owned by: nacin's profile nacin
Milestone: 3.7 Priority: normal
Severity: normal Version:
Component: Administration Keywords: has-patch commit
Focuses: Cc:

Description

It would be nice to be able to updated post deleted messages like you can through the post_updated_messages filter.

Attachments (4)

18710.patch (4.7 KB) - added by johnbillion 13 years ago.
18710.diff (5.3 KB) - added by johnbillion 11 years ago.
Refreshed patch
18710.2.diff (5.0 KB) - added by nacin 11 years ago.
18710.3.diff (5.5 KB) - added by nacin 11 years ago.

Download all attachments as: .zip

Change History (18)

#1 @SergeyBiryukov
13 years ago

You mean "Item moved to the Trash" and similar strings in wp-admin/edit.php?

#2 @jgadbois
13 years ago

Yes, exactly

#3 @DrewAPicture
13 years ago

+1 to this. Can currently set 'Custom field deleted' but not 'Post moved to the trash.'

#4 @johnbillion
13 years ago

Related: #18714

Last edited 13 years ago by johnbillion (previous) (diff)

#5 @johnbillion
13 years ago

  • Owner set to johnbillion
  • Status changed from new to accepted

@johnbillion
13 years ago

#6 @johnbillion
13 years ago

  • Component changed from General to Administration
  • Keywords has-patch added; needs-patch removed

Patch which adds a bulk_post_updated_messages filter. No new strings introduced.

Plugin usage:

function bulk_foo_updated_messages( $messages, $counts ) {
	$messages['foo'] = array(
		0 => '',
		1 => _n( '%s foo updated.', '%s foos updated.', $counts[1], 'foo' ),
		2 => _n( '%s foo not updated, somebody is editing it.', '%s foos not updated, somebody is editing them.', $counts[2], 'foo' ),
		3 => _n( 'Foo permanently deleted.', '%s foos permanently deleted.', $counts[3], 'foo' ),
		4 => _n( 'Foo moved to the Trash.', '%s foos moved to the Trash.', $counts[4], 'foo' ),
		5 => _n( 'Foo restored from the Trash.', '%s foos restored from the Trash.', $counts[5], 'foo' ),
	);
	return $messages;
}
add_filter( 'bulk_post_updated_messages', 'bulk_foo_updated_messages', 10, 2 );

#7 @nacin
13 years ago

  • Keywords 3.4-early added
  • Milestone changed from Awaiting Review to Future Release
  • Owner changed from johnbillion to nacin

#9 @markoheijnen
12 years ago

  • Cc markoheijnen added

About the patch, the fallback to post is wrong. This should be to the current messages since someone can remove post from the array.

Also ticket #20898 is not a duplicate ticket but related. It's only duplicated when the current patch will be committed.

@johnbillion
11 years ago

Refreshed patch

#10 @johnbillion
11 years ago

  • Keywords 3.4-early removed

Patch refreshed.

#11 @SergeyBiryukov
11 years ago

  • Milestone changed from Future Release to 3.7

#12 @helen
11 years ago

  • Keywords needs-docs added

@nacin
11 years ago

@nacin
11 years ago

#13 @nacin
11 years ago

  • Keywords commit added; needs-docs removed

18710.3.diff adds docs, avoids magic numbers, and tries to simplify the logic.

The post_updated_messages filter uses 1-10 to correspond to actual ?message=X arguments. I figured this filter could benefit from a bit more structure.

#14 @nacin
11 years ago

  • Resolution set to fixed
  • Status changed from accepted to closed

In 25577:

Introduce a bulk_post_updated_messages filter.

props johnbillion for initial patch.
fixes #18710.

Note: See TracTickets for help on using tickets.