• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Timeline/Item/Activity/ConfigurableRestApp.php
  • Класс: Bitrix\Crm\Service\Timeline\Item\Activity\ConfigurableRestApp
  • Вызов: ConfigurableRestApp::getTags
public function getTags(): ?array
{
	$header = $this->getLayoutDto()->header;
	if (!$header || empty($header->tags))
	{
		return [];
	}

	$result = [];
	foreach ($header->tags as $tagId => $tagDto)
	{
		$tag = $this->createTag($tagDto);
		if ($tag)
		{
			$result[(string)$tagId] = $tag;
		}
	}
	return $result;
}