blob: 653c08c0691568212772bc745bf9e1a382ae921f (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
/**
* Add a submit button inline in the form (as opposed to
* HTMLForm::addButton(), which will add it at the end).
*/
class HTMLSubmitField extends HTMLButtonField {
protected $buttonType = 'submit';
}
|