• Модуль: conversion
  • Путь к файлу: ~/bitrix/modules/conversion/lib/reportcontext.php
  • Класс: BitrixConversionReportContext
  • Вызов: ReportContext::unsetAttribute
public function unsetAttribute($name, $value = null)
{
	if (! is_string($name))
		throw new ArgumentTypeException('name', 'string');

	if ($this->id !== null)
		throw new SystemException('Cannot modify existent context!');

	unset($this->attributes[$name]);
}