mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
20 lines
309 B
PHP
20 lines
309 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
use SilverStripe\Core\Convert;
|
|
|
|
/**
|
|
* The readonly class for our {@link TimeField}.
|
|
*/
|
|
class TimeField_Readonly extends TimeField
|
|
{
|
|
protected $readonly = true;
|
|
protected $disabled = true;
|
|
|
|
public function Type()
|
|
{
|
|
return 'readonly';
|
|
}
|
|
}
|