• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_event.php
  • Класс: CCalendarEvent
  • Вызов: CCalendarEvent::updateColor
static function updateColor($eventId, $color = '')
{
	global $DB;
	$strSql = "UPDATE b_calendar_event SET ".
		$DB->PrepareUpdate("b_calendar_event", array('COLOR' => $color)).
		" WHERE ID=". (int)$eventId;
	$DB->Query($strSql, false, "File: ".__FILE__."
Line: ".__LINE__); }