We have 6.5 SP18.
We have this structur on Author which is activated
Folder
- Page 1
- Page 2
I deaktivate the folder on author instance:
I have three events on publisher
I delete the folder on author instance:
I have one event on publisher
My question: How can I get the three events on publisher when deleting a folder because I need them to update our external search index.
My idea: change the delete on author to deaktivate and delete but I do not know how.
I allready tried: To intercept the delete event on publisher does not help because the folder and the Pages are allready deleted so I could not get information about the Pages that was under the folder. I found no way to start befor the deletion starts on publisher.
I hope someone can help me!
Thank you,
Anja
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi
Please check
Disable Delete button
Create New Delete button
https://medium.com/@theopendle/aem-adding-a-button-to-a-touchui-toolbar-ae1d1dc1c530
Views
Replies
Total Likes
Hi @anjabed
You can hide the OOTB 'delete' button using ACL and create a workflow to delete folder/page. Use workflow to deactivate/delete and have a process step in between to capture all the payloads including children.
Views
Replies
Total Likes
The author must be able to delete a folder so deactivating the "delete" button will not help.
The workflows I found and tried to change them but they are not used when using the delete Button. Can I "hang" the workflow behind the delete button? When this is possible how can we do this?
Views
Replies
Total Likes
Hi @anjabed
Could you please explain which folder? you meant in DAM?
I think it is possible to create workflows with folder as well
Views
Replies
Total Likes
Normal pages under /content/.
I just found the delete.js which starts the deletion when clicking the button. Perhaps I can change it like the unpublish.js or add the unpublish before starting delete.js.
Views
Replies
Total Likes
No, changing the delete.js will not work because the function delete just delete the selected folder and not the items unter the pages under the folder.
The unpublish command seams to work different and unpublish the folder and the pages under the folder individualy.
So I need help to "disable" the delete button and put a new "delete" button on the page which starts the workflow.
Views
Replies
Total Likes
Hi
Please check
Disable Delete button
Create New Delete button
https://medium.com/@theopendle/aem-adding-a-button-to-a-touchui-toolbar-ae1d1dc1c530
Views
Replies
Total Likes
Thanks, I will try it but the documentation is just for assets and I need it unter sites. But I will search for it and try it an will give an report if it works or not.
Views
Replies
Total Likes
Hi @anjabed ,
You can try using query builder to run a query which will find all the deactivated & deleted pages.
All these pages will reside under var folder.
The query will look something like below:
map.put("group.type", "cq:AuditEvent");
map.put("group.path", "/var/audit/com.day.cq.replication" + <variable-page-path>);
map.put("group.property", "cq:type");
map.put("group.property.1_value", "Deactivate");
map.put("group.property.2_value", "Delete");
-Tarun
Views
Replies
Total Likes
Sorry, this does not help because the information is just on author. I would need it on publisher. An deleting the folder just add one note with delete for the folder and not delete notes for the pages under the folder. I just checked it.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies