• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/icalendar.php
  • Класс: CDavICalendarComponent
  • Вызов: CDavICalendarComponent::GetPropertyValueParsed
public function GetPropertyValueParsed($type)
{
	$v = $this->GetPropertyValue($type);
	if (is_null($v))
		return $v;

	$arResult = array();

	$arV = explode(';', $v);
	foreach ($arV as $v1)
	{
		$pos = mb_strpos($v1, '=');
		$name = mb_substr($v1, 0, $pos);
		$value = mb_substr($v1, $pos + 1);
		$arResult[$name] = $value;
	}

	return $arResult;
}