• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Controller/BaseController.php
  • Класс: BitrixImV2ControllerBaseController
  • Вызов: BaseController::convertCharToBool
protected function convertCharToBool(string $char, bool $default = false): bool
{
	if ($char === 'Y')
	{
		return true;
	}
	if ($char === 'N')
	{
		return false;
	}

	return $default;
}