• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/view/base.php
  • Класс: BitrixDiskViewBase
  • Вызов: Base::isShowTransformationUpgradeMessage
public function isShowTransformationUpgradeMessage()
{
	if(!ModuleManager::isModuleInstalled('bitrix24'))
	{
		return false;
	}

	if($this->getId())
	{
		return false;
	}

	if($this->isShowTransformationInfo() && !$this->isTransformationAllowed())
	{
		return true;
	}

	return false;
}