I have a customer that is using Umbraco for daily activities. They create one node for each day, creating these maybe a month in advance.
One thing that would make their job easier is a "Save and create new" function when creating a node. As it is now, I can choose between "Save and publish" and "Save". I would like a "Save, publish and create new" or maybe "Save and create new" option (and then I can publish them all afterwards)
Is this something that exists, maybe as a plugin? I haven't found anything.
But it would be a good addition to Umbraco, as this feature comes in handy when you need to create multiple nodes of the same time - f.x. adding older news stories when converting etc.
Save and create new
Hi
I have a customer that is using Umbraco for daily activities. They create one node for each day, creating these maybe a month in advance.
One thing that would make their job easier is a "Save and create new" function when creating a node. As it is now, I can choose between "Save and publish" and "Save". I would like a "Save, publish and create new" or maybe "Save and create new" option (and then I can publish them all afterwards)
Is this something that exists, maybe as a plugin? I haven't found anything.
But it would be a good addition to Umbraco, as this feature comes in handy when you need to create multiple nodes of the same time - f.x. adding older news stories when converting etc.
Hi Limberg,
it would be a possibility to use the ContentService.Published-Event (Documentation: http://our.umbraco.org/documentation/Reference/Events-v6/ContentService-Events).
I would check in it the CreateDate of all child nodes from the current parent node. And if the current day is not set to any childnode, I would be create a new node with ContentService (Documentation: http://our.umbraco.org/documentation/Reference/Management-v6/Services/ContentService).
Hope this helps.
Best regards
Sören
is working on a reply...