To know when the document has been unpublished in admin panel - you can call Content context menu by clicking right mouse button, and then select "Audit Trail".
Or in database table [umbracoLog].
SQL query for example SELECT * FROM [dbo].[umbracoLog] WHERE [NodeId] = 1111 Where you will see all events with content.
Get the unpublished date
Hi,
Is it a way to know when the document has been unpublished ?
Thank you
http://stackoverflow.com/questions/20824193/how-to-know-if-a-nodefactory-node-is-published
Hi KoosMos,
This is example code to get date when your Content will be unpublished:
https://our.umbraco.org/documentation/Reference/management/Models/Content#expiredate
To know when the document has been unpublished in admin panel - you can call Content context menu by clicking right mouse button, and then select "Audit Trail".
Or in database table [umbracoLog].
SQL query for example
SELECT * FROM [dbo].[umbracoLog] WHERE [NodeId] = 1111
Where you will see all events with content.Hope it help you :)
Regards, Ivan.
is working on a reply...