• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/configuration/action/base.php
  • Класс: BitrixRestConfigurationActionBase
  • Вызов: Base::setContext
public function setContext($context = ''): bool
{
	if ($context !== $this->context)
	{
		$this->context = (string) $context;
		$this->reset();
		$this->init();

		return true;
	}

	return false;
}