• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/icalendar.php
  • Класс: CDavICalendarComponent
  • Вызов: CDavICalendarComponent::GetProperties
public function GetProperties($type = null)
{
	$arProps = array();
	foreach ($this->arProperties as $val)
	{
		if ($type == null || $val->Name() == $type)
			$arProps[] = $val;
	}
	return $arProps;
}