• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/calllist/calllist.php
  • Класс: Bitrix\Crm\CallList\CallList
  • Вызов: CallList::getItem
protected function getItem($elementId)
{
	$foundItem = null;
	foreach ($this->items as $item)
	{
		if($item->getElementId() == $elementId)
		{
			$foundItem = $item;
			break;
		}
	}

	return (is_null($foundItem) ? false: $foundItem);
}