silverstripe-framework/forms/CalendarDateField.php
Hayden Smith 4a5d9b03f8 Moved Sapphire module to open source path
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-07-19 10:40:28 +00:00

40 lines
1.0 KiB
PHP
Executable File

<?php
/**
* This field creates a date field that shows a calendar on pop-up
*/
class CalendarDateField extends DateField {
protected $futureOnly;
function Field() {
Requirements::javascript("jsparty/calendar/calendar.js");
Requirements::javascript("jsparty/calendar/lang/calendar-en.js");
Requirements::javascript("jsparty/calendar/calendar-setup.js");
Requirements::css("sapphire/css/CalendarDateField.css");
Requirements::css("jsparty/calendar/calendar-win2k-1.css");
$field = parent::Field();
$id = $this->id();
$val = $this->attrValue();
$futureClass = $this->futureOnly ? ' futureonly' : '';
return <<<HTML
<div class="calendardate$futureClass">
<input type="text" id="$id" name="{$this->name}" value="$val" />
<img src="sapphire/images/calendar-icon.gif" id="{$id}-icon" />
<div class="calendarpopup" id="{$id}-calendar"></div>
</div>
HTML;
}
/**
* Sets the field so that only future dates can be set on them
*/
function futureDateOnly() {
$this->futureOnly = true;
}
}
?>