• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/model/schedule/schedule.php
  • Класс: BitrixTimemanModelScheduleSchedule
  • Вызов: Schedule::isAutoStartingEnabledForSchedule
static function isAutoStartingEnabledForSchedule($schedule)
{
	return static::isControlledActionsConfigured($schedule)
		   &&
		   in_array(
			   (int)$schedule['CONTROLLED_ACTIONS'],
			   [ScheduleTable::CONTROLLED_ACTION_END],
			   true
		   );
}