• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/iblock.php
  • Класс: CWebDavIblock
  • Вызов: CWebDavIblock::OnBeforeIBlockSectionAdd
static function OnBeforeIBlockSectionAdd($fields)
{
	if(!static::needBlockByDisk())
	{
		return true;
	}
	if(empty($fields['IBLOCK_ID']))
	{
		return true;
	}
	if(CIBlock::GetArrayByID($fields['IBLOCK_ID'], 'IBLOCK_TYPE_ID') === 'library')
	{
		global $APPLICATION;
		$APPLICATION->throwException(GetMessage('WD_BLOCKED_BY_DISK'));
		return false;
	}

}