• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/form/schedule/scheduleform.php
  • Класс: BitrixTimemanFormScheduleScheduleForm
  • Вызов: ScheduleForm::getShiftIds
public function getShiftIds()
{
	if (empty($this->getShiftForms()))
	{
		return [];
	}
	$shiftIds = array_map(function ($shiftForm) {
		return $shiftForm->shiftId;
	}, $this->getShiftForms());
	return array_filter(array_unique($shiftIds));
}