10 lines
193 B
PHP
10 lines
193 B
PHP
|
<?php
|
||
|
namespace nur\v\bs3\fo;
|
||
|
|
||
|
class FormInline extends Form {
|
||
|
const HORIZONTAL = false;
|
||
|
const SHOW_HELP = false;
|
||
|
const FORM_CLASS = "form-inline";
|
||
|
const ALLOW_AUTOHIDE_LABEL = true;
|
||
|
}
|