Difference between revisions of "Template:SetDatePropertyValue"

From Encyclopedia of Scientonomy
Jump to navigation Jump to search
Line 23: Line 23:
 
   -->|{{#if: {{{month|}}}<!--
 
   -->|{{#if: {{{month|}}}<!--
 
     -->|{{#if: {{{day|}}}<!--
 
     -->|{{#if: {{{day|}}}<!--
       -->|{{#set: {{{property|}}} Day={{#time:j|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- store day
+
       -->|{{#set: {{{property|}}} Year={{#time:Y|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- store year
 +
        -->{{#set: {{{property|}}} Month={{#time:F|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- store month
 +
        -->{{#set: {{{property|}}} Day={{#time:j|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- store day
 
         -->{{#set: {{{property|}}}={{#time:j F Y|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- all components are present   
 
         -->{{#set: {{{property|}}}={{#time:j F Y|{{{year|}}}-{{{month|}}}-{{{day|}}} }}|}}<!-- all components are present   
       -->|{{#set: {{{property|}}} Month={{#time:F|{{{year|}}}-{{{month|}}}-28 }}|}}<!-- store month
+
       -->|{{#set: {{{property|}}} Year={{#time:F|{{{year|}}}-{{{month|}}}-28 }}|}}<!-- store year
 +
        -->{{#set: {{{property|}}} Month={{#time:F|{{{year|}}}-{{{month|}}}-28 }}|}}<!-- store month
 
         -->{{#set: {{{property|}}}={{#time:F Y|{{{year|}}}-{{{month|}}}-28 }}|}}<!-- only month and year are present
 
         -->{{#set: {{{property|}}}={{#time:F Y|{{{year|}}}-{{{month|}}}-28 }}|}}<!-- only month and year are present
 
       -->}}<!-- if day
 
       -->}}<!-- if day

Revision as of 22:41, 23 August 2016

This template is used to set a value of type date given the year, month, and day. Month and day are optional parameters. The template will also store all the parts individually to keep track of which parts of the date are incomplete.

The template will store up to four values:

  • {{{property|}}} - the combined date.
  • {{{property|}}} Year - the year part.
  • {{{property|}}} Month - the month part.
  • {{{property|}}} Day - the day part.

NOTE: As any "set" template, it doesn't print anything on the page, but merely sets the appropriate values.

Parameters:

  • |property= - the name of the property.
  • |year= - the year.
  • |month= - the month.
  • |day= - the day.