• Модуль: bitrixcloud
  • Путь к файлу: ~/bitrix/modules/bitrixcloud/classes/general/option.php
  • Класс: CBitrixCloudOption
  • Вызов: CBitrixCloudOption::setArrayValue
public function setArrayValue($value)
{
	global $CACHE_MANAGER;
	if ($this->name <> '')
	{
		$stored = $this->getArrayValue();
		if ($stored !== $value)
		{
			$this->value = null;
			$this->_update_db($value);
			if (CACHED_b_bitrixcloud_option !== false)
				$CACHE_MANAGER->Clean("b_bitrixcloud_option");
		}
	}
}