• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/webdavstorage.php
  • Класс: CWebDavStorageCore
  • Вызов: CWebDavStorageCore::formatSectionsToResponse
protected function formatSectionsToResponse(array $sections, $markAsSymlink = null)
{
	$result = array();
	foreach ($sections as $section)
	{
		if(empty($section) || $this->isHiddenElement($section))
		{
			continue;
		}
		$result[] = $this->formatSectionToResponse($section, $markAsSymlink);
	}
	unset($section);

	return $result;
}