<% Root.sys_deleteAfterWarning %> |
macro rendering Number of days to wait before deleting inactive site |
Sourcecode in Root/sysmgr_macros.js:
1: function sys_deleteAfterWarning_macro(param) { 2: // this macro is allowed just for sysadmins 3: if (!session.user.sysadmin) 4: return; 5: if (param.as == "editor") 6: Html.input(this.createInputParam("sys_deleteAfterWarning", param)); 7: else 8: res.write(this.sys_deleteAfterWarning); 9: return; 10: } |