• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/form/schedule/calendarform.php
  • Класс: BitrixTimemanFormScheduleCalendarForm
  • Вызов: CalendarForm::runAfterValidate
protected function runAfterValidate()
{
	$this->dates = [];
	if ($this->hasErrors())
	{
		return;
	}
	if (!is_null($this->datesJson) && $this->datesJson !== '')
	{
		try
		{
			$this->dates = Json::decode($this->datesJson);
		}
		catch (Exception $exc)
		{
		}
	}
}