mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 19:48:49 +02:00
Add UIBlocks to twig (Spinner)
This commit is contained in:
@@ -20,7 +20,7 @@ class Input extends AbstractInput
|
||||
|
||||
public const INPUT_HIDDEN = 'hidden';
|
||||
|
||||
protected $bChecked = false;
|
||||
protected $bIsChecked = false;
|
||||
|
||||
/** @var string */
|
||||
protected $sType;
|
||||
@@ -47,9 +47,9 @@ class Input extends AbstractInput
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetChecked($bChecked)
|
||||
public function SetIsChecked($bIsChecked)
|
||||
{
|
||||
$this->bChecked = $bChecked;
|
||||
$this->bIsChecked = $bIsChecked;
|
||||
return $this;
|
||||
}
|
||||
|
||||
@@ -58,6 +58,6 @@ class Input extends AbstractInput
|
||||
*/
|
||||
public function IsChecked()
|
||||
{
|
||||
return $this->bChecked;
|
||||
return $this->bIsChecked;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user