• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/Sitemap/Job.php
  • Класс: BitrixSeoSitemapJob
  • Вызов: Job::checkSitemapExists
static function checkSitemapExists(int $sitemapId): bool
{
	$sitemap = SitemapTable::query()
		->setSelect(['ID'])
		->where('ID', $sitemapId)
		->exec()
		->fetch()
	;

	return (bool)$sitemap;
}