2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Displays a date field with day, month and year boxes, with a calendar to select
|
2009-04-02 19:17:04 +02:00
|
|
|
* the date.
|
|
|
|
*
|
|
|
|
* @todo Add localization support, see http://open.silverstripe.com/ticket/2931
|
|
|
|
*
|
2008-01-09 05:18:36 +01:00
|
|
|
* @package forms
|
|
|
|
* @subpackage fields-datetime
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class DMYDateField extends CalendarDateField {
|
|
|
|
|
|
|
|
function setValue( $value ) {
|
|
|
|
if( is_array( $value ) && $value['Day'] && $value['Month'] && $value['Year'] )
|
|
|
|
$this->value = $value['Year'] . '-' . $value['Month'] . '-' . $value['Day'];
|
2007-11-27 03:15:23 +01:00
|
|
|
else if(is_array($value)&&(!$value['Day']||!$value['Month']||!$value['Year']))
|
|
|
|
$this->value = null;
|
|
|
|
else if(is_string($value))
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->value = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
function Field() {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/calendar/calendar.js");
|
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/calendar/lang/calendar-en.js");
|
|
|
|
Requirements::javascript(THIRDPARTY_DIR . "/calendar/calendar-setup.js");
|
|
|
|
Requirements::css(SAPPHIRE_DIR . "/css/CalendarDateField.css");
|
|
|
|
Requirements::css(THIRDPARTY_DIR . "/calendar/calendar-win2k-1.css");
|
|
|
|
Requirements::javascript(SAPPHIRE_DIR . "/javascript/CalendarDateField.js");
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
$field = DateField::Field();
|
|
|
|
|
|
|
|
$id = $this->id();
|
|
|
|
$val = $this->attrValue();
|
|
|
|
|
|
|
|
if( preg_match( '/^\d{2}\/\d{2}\/\d{4}$/', $val ) ) {
|
|
|
|
$dateArray = explode( '/', $val );
|
|
|
|
|
|
|
|
$val = $dateArray[2] . '-' . $dateArray[1] . '-' . $dateArray[0];
|
|
|
|
}
|
2008-09-23 03:44:40 +02:00
|
|
|
|
|
|
|
$day = $month = $year = null;
|
|
|
|
if($val) {
|
|
|
|
$dateArray = explode( '-', $val );
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-09-23 03:44:40 +02:00
|
|
|
$day = $dateArray[2];
|
|
|
|
$month = $dateArray[1];
|
|
|
|
$year = $dateArray[0];
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
$fieldName = $this->name;
|
|
|
|
|
2008-04-06 06:08:45 +02:00
|
|
|
$tabIndex0 = $this->getTabIndexHTML(0);
|
|
|
|
$tabIndex1 = $this->getTabIndexHTML(1);
|
|
|
|
$tabIndex2 = $this->getTabIndexHTML(2);
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return <<<HTML
|
|
|
|
<div class="dmycalendardate">
|
|
|
|
<input type="hidden" id="$id" name="{$this->name}" value="$val" />
|
2008-04-06 06:08:45 +02:00
|
|
|
<input type="text" id="$id-day" class="day numeric" name="{$fieldName}[Day]" value="$day" maxlength="2"$tabIndex0 />/
|
|
|
|
<input type="text" id="$id-month" class="month numeric" name="{$fieldName}[Month]" value="$month" maxlength="2"$tabIndex1 />/
|
|
|
|
<input type="text" id="$id-year" class="year numeric" name="{$fieldName}[Year]" value="$year" maxlength="4"$tabIndex2 />
|
2007-07-19 12:40:28 +02:00
|
|
|
<div class="calendarpopup" id="{$id}-calendar"></div>
|
|
|
|
</div>
|
|
|
|
HTML;
|
|
|
|
}
|
2007-11-27 04:27:59 +01:00
|
|
|
|
|
|
|
function validate($validator)
|
|
|
|
{
|
|
|
|
if(!empty ($this->value) && !preg_match('/^[0-90-9]{2,4}\-[0-9]{1,2}\-[0-90-9]{1,2}$/', $this->value))
|
|
|
|
{
|
|
|
|
$validator->validationError(
|
|
|
|
$this->name,
|
2009-06-17 13:36:49 +02:00
|
|
|
_t('DMYDateField.VALIDDATEFORMAT', "Please enter a valid date format (DD-MM-YYYY)."),
|
2007-11-27 04:27:59 +01:00
|
|
|
"validation",
|
|
|
|
false
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
?>
|