mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-22 11:54:11 +01:00
39 lines
730 B
PHP
39 lines
730 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2025 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Forms\IO\Format;
|
|
|
|
class BooleanIOFormat extends AbstractIOFormat
|
|
{
|
|
public bool $bValue;
|
|
|
|
public function __construct(bool $bValue)
|
|
{
|
|
$this->bValue = $bValue;
|
|
}
|
|
|
|
public function IsTrue(): bool
|
|
{
|
|
return $this->bValue;
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->bValue ? 'true' : 'false';
|
|
}
|
|
|
|
public function jsonSerialize(): mixed
|
|
{
|
|
return $this->bValue;
|
|
}
|
|
|
|
public static function IsCompatible(string $sOtherFormatClass): bool
|
|
{
|
|
return is_a($sOtherFormatClass, BooleanIOFormat::class, true) || is_a($sOtherFormatClass, RawFormat::class, true);
|
|
}
|
|
}
|