Page 1 of 1

Managing Post

Posted: Fri Jul 19, 2013 3:08 pm
by lstench
Is there a way to edit multiple post at once? Like changing all selected post to publish or draft?

Re: Managing Post

Posted: Fri Jul 19, 2013 3:19 pm
by Timbalu
Not that I know!
You may need to learn writing a Serendipity plugin to do this, executing php loops interacting with the database and/or learn how to set up a well done database query with updating existing entries by ORDER.

Re: Managing Post

Posted: Fri Jul 19, 2013 3:20 pm
by yellowled
lstench wrote:Is there a way to edit multiple post at once? Like changing all selected post to publish or draft?
Apart from deleting multiple entries at once, no.

I'm not sure why we don't have this, I guess it doesn't really apply to the average workflow of blogging. I know what you mean from other CMSs, but it always felt a bit awkward there.

We might, however, want to put that on our agenda for future versions, unless there are specific aspects of the basic core architecture which make this hard to implement. Anyone?

YL

Re: Managing Post

Posted: Fri Jul 19, 2013 3:23 pm
by onli
Not a problem for the core. But I'd say it's an interface problem, where would you place the controls?

Re: Managing Post

Posted: Fri Jul 19, 2013 3:37 pm
by lstench
I am not sure I am up for writing a plugin, Is there any documentation for doing this as this may be a future project I would like to attempt.

I would love to see this feature added as it can be useful at times.

Re: Managing Post

Posted: Fri Jul 19, 2013 5:51 pm
by yellowled
onli wrote:But I'd say it's an interface problem, where would you place the controls?
That's what I meant by “awkward”. :) Contao uses this, and it basically lets you choose:

1. which bits of content (of the same type, I think) to multi-edit
2. what fields of those to multi-edit

and then gives you a list of the chosen fields in the chosen bits of content which you can edit.

YL

Re: Managing Post

Posted: Fri Jul 19, 2013 6:07 pm
by Timbalu
lstench wrote:I am not sure I am up for writing a plugin, Is there any documentation for doing this as this may be a future project I would like to attempt.
There are quite a few simple on-the-fly plugins in some forum threads, mostly posted by Garvin, though it will be not that easy to find them again. And there are some howto's out there, like the ones Onli posted on his blog. And this http://www.s9y.org/116.html to get known of the supported API hooks. Additionally you also might inspect some easy ones here https://github.com/s9y/additional_plugins by yourself.

I think the usage is a to specific need to have this in core by default.