N°1318 - multiple choice in a template - first step

This commit is contained in:
acognet
2023-06-05 23:26:58 +02:00
parent 6abf65bfb7
commit 413a798510
4 changed files with 24 additions and 10 deletions

View File

@@ -26,4 +26,15 @@ namespace Combodo\iTop\Form\Field;
*/
class TagSetObjectField extends MultipleSelectObjectField
{
function SetCurrentValue($currentValue)
{
if ($currentValue != null) {
$this->currentValue = $currentValue;
} else {
$this->currentValue = "";
}
return $this;
}
}