• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/schedule.php
  • Класс: BitrixTimemanModelScheduleSchedule
  • Вызов: Schedule::obtainScheduleViolationRules
public function obtainScheduleViolationRules()
{
	$nullViolationRulesObject = ViolationRules::create($this->getId());
	try
	{
		$violationRules = $this->get('SCHEDULE_VIOLATION_RULES');
		if ($violationRules)
		{
			return $violationRules;
		}
		return $nullViolationRulesObject;
	}
	catch (Exception $exc)
	{
		return $nullViolationRulesObject;
	}
}