N°9567 - add enc_type in UIForm to be able to change content type in twigs

This commit is contained in:
odain
2026-05-12 11:54:46 +02:00
parent 9f028c6452
commit 4ff0f3c4a0
3 changed files with 25 additions and 2 deletions

View File

@@ -24,6 +24,8 @@ class Form extends UIContentBlock
protected $sOnSubmitJsCode;
/** @var string */
protected $sAction;
/** @var string */
protected $sEncType = "multipart/form-data";
public function __construct(?string $sId = null)
{
@@ -65,4 +67,25 @@ class Form extends UIContentBlock
return $this;
}
/**
* Override default enctype (default : "multipart/form-data")
* @param string $sEncType
* @return $this
* @since 3.3.0
*/
public function SetEncType(string $sEncType)
{
$this->sEncType = $sEncType;
return $this;
}
/**
* @return string
* @since 3.3.0
*/
public function GetEncType(): string
{
return $this->sEncType;
}
}