• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/shiftplan/shiftplan.php
  • Класс: BitrixTimemanModelScheduleShiftPlanShiftPlan
  • Вызов: ShiftPlan::create
static function create(ShiftPlanForm $shiftPlanForm)
{
	$shiftPlan = new static($default = false);
	$shiftPlan->setUserId($shiftPlanForm->userId);
	$shiftPlan->setShiftId($shiftPlanForm->shiftId);
	$shiftPlan->setDateAssigned($shiftPlanForm->getDateAssigned());
	$shiftPlan->setDeleted(ShiftPlanTable::DELETED_NO);
	$shiftPlan->setCreatedAt(TimeHelper::getInstance()->getUtcNowTimestamp());
	return $shiftPlan;
}