mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
17 lines
259 B
PHP
17 lines
259 B
PHP
<?php
|
|
|
|
namespace SilverStripe\UserForms\Model\EditableFormField\EditableDateField;
|
|
|
|
use SilverStripe\Forms\DateField;
|
|
|
|
/**
|
|
* @package userforms
|
|
*/
|
|
class FormField extends DateField
|
|
{
|
|
public function Type()
|
|
{
|
|
return 'date-alt text';
|
|
}
|
|
}
|