Enctype for theme html helper
This commit is contained in:
parent
80f50b927b
commit
4362d6add9
|
@ -44,8 +44,9 @@ class HTML {
|
||||||
{
|
{
|
||||||
$class = empty($args['class']) ? '' : ' '.$args['class'];
|
$class = empty($args['class']) ? '' : ' '.$args['class'];
|
||||||
$id = empty($args['id']) ? '' : ' id="'.$args['id'].'" ';
|
$id = empty($args['id']) ? '' : ' id="'.$args['id'].'" ';
|
||||||
|
$enctype = empty($args['enctype']) ? '' : ' enctype="'.$args['enctype'].'" ';
|
||||||
|
|
||||||
$html = '<form class="uk-form'.$class.'" '.$id.' method="post" action="" autocomplete="off">';
|
$html = '<form class="uk-form'.$class.'" '.$enctype.$id.' method="post" action="" autocomplete="off">';
|
||||||
echo $html;
|
echo $html;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue