<% Root.sys_blockAfterWarning %> |
macro rendering Number of days to wait before blocking private site |
Sourcecode in Root/sysmgr_macros.js:
1: function sys_blockAfterWarning_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_blockAfterWarning", param)); 7: else 8: res.write(this.sys_blockAfterWarning); 9: return; 10: } |