• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/schedulecollection.php
  • Класс: BitrixTimemanModelScheduleScheduleCollection
  • Вызов: ScheduleCollection::createFromArray
static function createFromArray($schedules)
{
	$collection = new static();
	foreach ($schedules as $schedule)
	{
		if ($schedule instanceof Schedule)
		{
			$collection->add($schedule);
		}
	}
	return $collection;
}