• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/lib/composite/engine.php
  • Класс: BitrixMainCompositeEngine
  • Вызов: Engine::getDeletionLimit
static function getDeletionLimit()
{
	$options = Helper::getOptions();
	if (isset($options["PAGE_DELETION_LIMIT"]) && intval($options["PAGE_DELETION_LIMIT"]) > 0)
	{
		return intval($options["PAGE_DELETION_LIMIT"]);
	}
	else
	{
		return self::PAGE_DELETION_LIMIT;
	}
}