• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/controller/storage.php
  • Класс: BitrixDiskControllerStorage
  • Вызов: Storage::isEnabledSizeLimitRestrictionAction
public function isEnabledSizeLimitRestrictionAction(DiskStorage $storage)
{
	if ($storage->isEnabledSizeLimitRestriction())
	{
		return [
			'isEnabledSizeLimitRestriction' => $storage->isEnabledSizeLimitRestriction(),
			'sizeLimitRestriction' => $storage->getSizeLimit(),
		] ;
	}

	return [
		'isEnabledSizeLimitRestriction' => false,
	];
}