CURRENTMINUTE
Discuss0
35,794pages on
this wiki
this wiki
Template page
- The following documentation is transcluded from Template:CURRENTMINUTE/doc:
This template extracts the current integer minute in two digits (between 00 and 59) from the current UTC time (as set on the Memory Alpha server). The displayed value should match the right hand side of 21:05.
Usage
Edit
{{ CURRENTMINUTE }}
- Use {{subst:{{CURRENTMINUTE}}|subst=subst:}} to substitute the current minute.
Formula
Edit
- {{ padleft: (( {{CURRENTTIMESTAMP}} -30 round -2 ) mod 10000 ) div 100 | 2 | 0 }}
- {{ subst: {{CURRENTMINUTE}} }} copies this code ready for optional substitution into another template. To avoid an obscure intermittent MOD bug for large numbers the template actually uses
- ( {{CURRENTTIMESTAMP}} - 10000000000 * {{CURRENTYEAR}} )
Warning
Edit
- Pages asking for the current minute often also need other parts of {{CURRENTTIMESTAMP}} = 20130523210503, and different "current" templates and variables can reflect different timestamps near hh:mm:59.
Note
Edit
- To retrieve the current hour, use the built-in magic word {{CURRENTHOUR}}.