I have successfully added the Last Date Modified and Last User Modified macro to our Wiki thanks to, https://community.atlassian.com/t5/Confluence-questions/Include-last-modified-date-and-user-in-Page-Properties-Report/qaq-p/18371
What I am wondering, is it possible to add an additional option to link a specific page as well when editing the macro? Similar to how you can add a title or color, etc
Hopefully I can clearly express this...
Page A wants to have a table showing the last modified date and last user modification of Page B, C, D.
Currently, when using the Last Date Modified and Last User Modified macros on Page A, it only shows the Date and User of Page A. Is it possible to add a field to include which page the Last Date Modified and Last User Modified is pointing to/referencing regardless of what page the macro is on? How can this be accomplished?
Thank you
Are you looking something like this:
## @param Page:title=Page Id|type=string|required=true|desc=Source Page Id
#set($Integer = 0)
#set($pageId= $Integer.parseInt($paramPage))
#set($page=$pageManager.getPage($pageId))
#if($page)
$action.dateFormatter.formatDateTime($page.getLastModificationDate())
#else
Page not found $paramPage!
#end
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.