• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/model/timeline.php
  • Класс: BitrixRpaModelTimeline
  • Вызов: Timeline::getTitle
public function getTitle(): ?string
{
	if(empty(parent::getTitle()))
	{
		$action = $this->getAction();
		if(!empty($action))
		{
			return Loc::getMessage('RPA_TIMELINE_TITLE_'.mb_strtoupper($action));
		}
	}

	return parent::getTitle();
}