• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/folder.php
  • Класс: BitrixDiskFolder
  • Вызов: Folder::getMapAttributes
static function getMapAttributes()
{
	static $shelve = null;
	if($shelve !== null)
	{
		return $shelve;
	}

	$shelve = array_merge(parent::getMapAttributes(), array(
		'HAS_SUBFOLDERS' => 'hasSubFolders',
	));

	return $shelve;
}