• Модуль: support
  • Путь к файлу: ~/bitrix/modules/support/classes/general/tablefields.php
  • Класс: CSupportTableFields
  • Вызов: CSupportTableFields::GetColumn
public function GetColumn($name)
{
	$res = array();
	if(!array_key_exists($name, $this->_arFieldsTypes))
	{
		return false;
	}
	foreach($this->_arFields as $nom => $row) $res[$nom] = $row[$name];
	return $res;
}