• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/schedule/shiftplanrepository.php
  • Класс: BitrixTimemanRepositoryScheduleShiftPlanRepository
  • Вызов: ShiftPlanRepository::findActiveById
public function findActiveById($id, $select = [], $filter = null)
{
	if (empty($select))
	{
		$select = ['ID'];
	}
	return $this->buildAllActiveQuery($select, $filter)
		->where('ID', $id)
		->exec()
		->fetchObject();
}