• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/settings/arraysetting.php
  • Класс: Bitrix\Crm\Settings\ArraySetting
  • Вызов: ArraySetting::get
public function get()
{
	if($this->value !== null)
	{
		return $this->value;
	}

	$value = Main\Config\Option::get('crm', $this->name, '', '');
	$this->value = $value !== '' ? unserialize($value, ['allowed_classes' => false]) : $this->default;
	return $this->value;
}