mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
14 lines
233 B
PHP
14 lines
233 B
PHP
<?php
|
|
/**
|
|
* Action that clears all fields on a form.
|
|
* Inserts an input tag with type=reset.
|
|
* @package forms
|
|
* @subpackage actions
|
|
*/
|
|
class ResetFormAction extends FormAction {
|
|
|
|
public function Type() {
|
|
return 'reset';
|
|
}
|
|
|
|
} |