Split includes/HTMLForm
[lhc/web/wiklou.git] / includes / htmlform / HTMLSubmitField.php
1 <?php
2 /**
3 * Add a submit button inline in the form (as opposed to
4 * HTMLForm::addButton(), which will add it at the end).
5 */
6 class HTMLSubmitField extends HTMLButtonField {
7 protected $buttonType = 'submit';
8 }