• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_event.php
  • Класс: CCalendarEvent
  • Вызов: CCalendarEvent::PackRRule
static function PackRRule($RRule = [])
{
	$strRes = "";
	if (is_array($RRule))
	{
		foreach($RRule as $key => $val)
			$strRes .= $key.'='.$val.';';
	}
	$strRes = trim($strRes, ', ');
	return $strRes;
}