• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/publicaction/utils.php
  • Класс: BitrixLandingPublicActionUtils
  • Вызов: Utils::isTrue
static function isTrue($value)
{
	static $internal = true;

	if (
		$value === 'true' ||
		$value === true ||
		(int)$value === 1
	)
	{
		return true;
	}

	return false;
}