CFLib.org – Common Function Library Project

GetValentinesDay([TheYear])

Last updated September 04, 2001

author

Ken McCafferty

Version: 1 | Requires: CF5 | Library: DateLib

Description:
Returns the date for Valentines Day in a given year. If no year is specified, defaults to current year.

Return Values:
Returns a date object.

Example:

<CFOUTPUT>
This year, Valentine's Day is on #DateFormat(GetValentinesDay(), 'dddd, mmm dd')#.
</CFOUTPUT>

Parameters:

Name Description Required
TheYear Year you want to return Valentine's day for. No

Full UDF Source:

/**
 * Returns the date for Valentines Day in a given year.
 * 
 * @param TheYear      Year you want to return Valentine's day for. 
 * @return Returns a date object. 
 * @author Ken McCafferty (mccjdk@yahoo.com) 
 * @version 1.0, September 4, 2001 
 */
// Valentines Day: February 14
function GetValentinesDay() 
{
  Var TheYear=Year(Now());
  if(ArrayLen(Arguments)) 
    TheYear = Arguments[1];
  return CreateDate(TheYear,2,14);
}

Search CFLib.org


Latest Additions

Raymond Camden added
QueryDeleteRows
November 04, 2017

Leigh added
nullPad
May 11, 2016

Raymond Camden added
stripHTML
May 10, 2016

Kevin Cotton added
date2ExcelDate
May 05, 2016

Raymond Camden added
CapFirst
April 25, 2016

Created by Raymond Camden / Design by Justin Johnson