• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/schedulecollection.php
  • Класс: BitrixTimemanModelScheduleScheduleCollection
  • Вызов: ScheduleCollection::hasFlextime
public function hasFlextime()
{
	foreach ($this->getAll() as $schedule)
	{
		if ($schedule->isFlextime())
		{
			return true;
		}
	}
	return false;
}