• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/theme.php
  • Класс: BitrixLandingHookPageTheme
  • Вызов: Theme::enabled
public function enabled()
{
	if ($this->issetCustomExec())
	{
		return true;
	}

	if ($this->isPage())
	{
		if (
			$this->fields['CODE']->getValue()
			&& !$this->fields['COLOR']->getValue()
		)
		{
			return true;
		}
		return $this->fields['USE']->getValue() === 'Y';
	}

	return true;
}