for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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';
}