• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/grid/task/row/content/priority.php
  • Класс: BitrixTasksGridTaskRowContentPriority
  • Вызов: Priority::prepare
public function prepare(): string
{
	$row = $this->getRowData();

	if (!array_key_exists('PRIORITY', $row))
	{
		return '';
	}

	return Loc::getMessage('TASKS_GRID_TASK_ROW_CONTENT_PRIORITY_'.$row['PRIORITY']) ?? '';
}