summaryrefslogtreecommitdiff
path: root/includes/htmlform/HTMLSubmitField.php
blob: 938e428a12c93191f3c7a368f931a91aedce43d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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';

	protected $mFlags = array( 'primary', 'constructive' );
}