Limiter::getMonthlyLimitPercentage

  1. Bitrix24 API (v. 23.675.0)
  2. sender
  3. Limiter
  4. getMonthlyLimitPercentage
  • Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/integration/bitrix24/limitation/limiter.php
  • Класс: Bitrix\Sender\Integration\Bitrix24\Limitation\Limiter
  • Вызов: Limiter::getMonthlyLimitPercentage
static function getMonthlyLimitPercentage()
{
	$value = (int) Option::get('sender', '~mail_month_limit_percent', 90);
	$value = $value < 10 ? 10 : $value;
	$value = $value > 100 ? 100 : $value;

	return $value;
}

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