mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
78 lines
1.6 KiB
PHP
78 lines
1.6 KiB
PHP
|
<?php
|
||
|
|
||
|
class PopupDateTimeField extends CalendarDateField {
|
||
|
|
||
|
function Field() {
|
||
|
|
||
|
Requirements::css( 'sapphire/css/PopupDateTimeField.css' );
|
||
|
|
||
|
$field = parent::Field();
|
||
|
|
||
|
DropdownTimeField::Requirements();
|
||
|
|
||
|
$id = $this->id();
|
||
|
$val = $this->attrValue();
|
||
|
|
||
|
$date = $this->attrValueDate();
|
||
|
$time = $this->attrValueTime();
|
||
|
|
||
|
$futureClass = $this->futureOnly ? ' futureonly' : '';
|
||
|
|
||
|
$innerHTMLDate = parent::HTMLField( $id . '_Date', $this->name . '[Date]', $date );
|
||
|
$innerHTMLTime = DropdownTimeField::HTMLField( $id . '_Time', $this->name . '[Time]', $time );
|
||
|
|
||
|
return <<<HTML
|
||
|
<div class="popupdatetime">
|
||
|
<ul>
|
||
|
<li class="calendardate$futureClass">$innerHTMLDate</li>
|
||
|
<li class="dropdowntime">$innerHTMLTime</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
HTML;
|
||
|
}
|
||
|
|
||
|
function attrValueDate() {
|
||
|
if( $this->value )
|
||
|
return date( 'd/m/Y', strtotime( $this->value ) );
|
||
|
else
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
function attrValueTime() {
|
||
|
if( $this->value )
|
||
|
return date( 'h:i a', strtotime( $this->value ) );
|
||
|
else
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
function setValue( $val ) {
|
||
|
if( is_array( $val ) ) {
|
||
|
|
||
|
// 1) Date
|
||
|
|
||
|
if( $val[ 'Date' ] && preg_match( '/^([\d]{1,2})\/([\d]{1,2})\/([\d]{2,4})/', $val[ 'Date' ], $parts ) )
|
||
|
$date = "$parts[3]-$parts[2]-$parts[1]";
|
||
|
else
|
||
|
$date = null;
|
||
|
|
||
|
// 2) Time
|
||
|
|
||
|
$time = $val[ 'Time' ] ? date( 'H:i:s', strtotime( $val[ 'Time' ] ) ) : null;
|
||
|
|
||
|
if( $date == null )
|
||
|
$this->value = $time;
|
||
|
else if( $time == null )
|
||
|
$this->value = $date;
|
||
|
else
|
||
|
$this->value = $date . ' ' . $time;
|
||
|
}
|
||
|
else
|
||
|
$this->value = $val;
|
||
|
}
|
||
|
|
||
|
function dataValue() {
|
||
|
return $this->value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|