• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/historyservice.php
  • Класс: CBPHistoryService
  • Вызов: CBPHistoryService::getById
static function getById($id)
{
	$id = intval($id);
	if ($id <= 0)
		throw new CBPArgumentNullException("id");

	$h = new CBPHistoryService();
	$db = $h->GetHistoryList(array(), array("ID" => $id));
	return $db->GetNext();
}