silverstripe-framework/src/Forms/ResetFormAction.php

25 lines
412 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Forms;
/**
* Action that clears all fields on a form.
* Inserts an input tag with type=reset.
*/
2016-11-29 00:31:16 +01:00
class ResetFormAction extends FormAction
{
2016-11-29 00:31:16 +01:00
public function getAttributes()
{
return array_merge(
parent::getAttributes(),
array('type' => 'reset')
);
}
2016-11-29 00:31:16 +01:00
public function Type()
{
return 'resetformaction';
}
}