CBPSchedulerService::getDelayMinLimit

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPSchedulerService
  4. getDelayMinLimit
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/schedulerservice.php
  • Класс: CBPSchedulerService
  • Вызов: CBPSchedulerService::getDelayMinLimit
static function getDelayMinLimit($withType = false)
{
	$result = (int) BitrixMainConfigOption::get('bizproc', 'delay_min_limit', 0);
	if (!$withType)
		return $result;
	$type = 's';
	if ($result > 0)
	{
		if ($result % (3600 * 24) == 0)
		{
			$result = $result / (3600 * 24);
			$type = 'd';
		}
		elseif ($result % 3600 == 0)
		{
			$result = $result / 3600;
			$type = 'h';
		}
		elseif ($result % 60 == 0)
		{
			$result = $result / 60;
			$type = 'm';
		}
	}
	return array($result, $type);
}

Добавить комментарий