• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/google/sectionmanager.php
  • Класс: BitrixCalendarSyncGoogleSectionManager
  • Вызов: SectionManager::prepareUpdateColorParams
private function prepareUpdateColorParams(SyncEntitiesSyncSection $syncSection)
{
	$parameters = [];

	if ($color = $syncSection->getSection()->getColor())
	{
		$parameters['backgroundColor'] = $color;
		$parameters['foregroundColor'] = '#ffffff';
	}

	$parameters['selected'] = 'true';

	return Json::encode($parameters, JSON_UNESCAPED_SLASHES);
}