mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
25 lines
412 B
PHP
25 lines
412 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms;
|
|
|
|
/**
|
|
* Action that clears all fields on a form.
|
|
* Inserts an input tag with type=reset.
|
|
*/
|
|
class ResetFormAction extends FormAction
|
|
{
|
|
|
|
public function getAttributes()
|
|
{
|
|
return array_merge(
|
|
parent::getAttributes(),
|
|
array('type' => 'reset')
|
|
);
|
|
}
|
|
|
|
public function Type()
|
|
{
|
|
return 'resetformaction';
|
|
}
|
|
}
|