• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/CustomSection/Manager.php
  • Класс: BitrixIntranetCustomSectionManager
  • Вызов: Manager::getLastOpenedPage
protected function getLastOpenedPage(string $customSectionCode, array $pages): ?CustomSectionPage
{
	$lastOpenedPageCode = $this->getLastOpenedPageCode($customSectionCode);
	if (empty($lastOpenedPageCode))
	{
		return null;
	}

	foreach ($pages as $page)
	{
		if ($page->getCode() === $lastOpenedPageCode)
		{
			return $page;
		}
	}

	return null;
}