• Модуль: bitrixcloud
  • Путь к файлу: ~/bitrix/modules/bitrixcloud/classes/general/option.php
  • Класс: CBitrixCloudOption
  • Вызов: CBitrixCloudOption::_read_all_db
private function _read_all_db()
{
	global $DB;
	$result = /*.(array[string][string]string).*/ array();
	$rs = $DB->Query("
		select NAME, PARAM_KEY, PARAM_VALUE
		from b_bitrixcloud_option
		order by NAME, SORT
	");
	while (is_array($ar = $rs->Fetch()))
	{
		$name = $ar["NAME"];
		$key = $ar["PARAM_KEY"];
		$result[$name][$key] = $ar["PARAM_VALUE"];
	}
	return $result;
}