• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/iblock.php
  • Класс: CWebDavIblock
  • Вызов: CWebDavIblock::_dataCache
function _dataCache($type, $value = null)
{
	if ($type == 'all')
	{
		$type = self::GET_ALL_CACHED_SETTINGS;
	}
	if ($value === null) // GET
	{
		return $this->GetCachedSettings($type);
	}
	else
	{
		$this->SetCachedSettings($type, $value);
	}
}