• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/entitydetails/timelinemenubar/repository.php
  • Класс: Bitrix\Crm\Component\EntityDetails\TimelineMenuBar\Repository
  • Вызов: Repository::getAllItems
public function getAllItems(): array
{
	$items = [
		new ToDo($this->context),
		new Comment($this->context),
		new Task($this->context),
		new Sharing($this->context),
		new Sms($this->context),
		new Email($this->context),
		new Delivery($this->context),
		new Wait($this->context),
		new Zoom($this->context),
		new Meeting($this->context),
		new Call($this->context),
		new Visit($this->context),
	];
	$items = array_merge(
		$items,
		$this->getRestPlacementItems(),
	);

	$items[] = new Market($this->context);

	return $items;
}