• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/statistics/statisticfieldbindingmap.php
  • Класс: Bitrix\Crm\Statistics\StatisticFieldBindingMap
  • Вызов: StatisticFieldBindingMap::save
public function save()
{
	if($this->bindings === null)
	{
		return;
	}

	if(!empty($this->bindings))
	{
		Main\Config\Option::set('crm', $this->typeName, serialize($this->toArray()));
	}
	else
	{
		Main\Config\Option::delete('crm', array('name' => $this->typeName));
	}
}