• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/icsbuilder.php
  • Класс: BitrixCalendarICalIcsBuilder
  • Вызов: IcsBuilder::setProperties
public function setProperties($properties)
{
	if (is_array($properties))
	{
		foreach ($properties as $key => $value)
		{
			if (in_array($key, $this->availableProperties) && !empty($value))
			{
				$this->properties[$key] = $this->prepareValue($value, $key);
			}
		}
	}
}