silverstripe-framework/forms/ResetFormAction.php
2012-09-20 10:46:59 +02:00

22 lines
366 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 getAttributes() {
return array_merge(
parent::getAttributes(),
array('type' => 'reset')
);
}
public function Type() {
return 'resetformaction';
}
}