• Модуль: support
  • Путь к файлу: ~/bitrix/modules/support/classes/general/tablefields.php
  • Класс: CSupportTableFields
  • Вызов: CSupportTableFields::FromTable
public function FromTable($table, $fields = self::ALL, $notNull = array(), $removeExistingRows = false) //setFromTable
{
	if($removeExistingRows)
	{
		$this->RemoveExistingRows();
	}
	if(!is_array($table))
	{
		return;
	}
	foreach($table as $key => $arr) 
	{
		$this->AddRow();
		$this->FromArray($arr, $fields, $notNull); 
	}
}