• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/controller/sitemap/job.php
  • Класс: BitrixSeoControllerSitemapJob
  • Вызов: Job::addAction
public function addAction(int $sitemapId): AjaxJson
{
	try {
		$job = SitemapJob::addJob($sitemapId);

		return $job
			? self::createSuccess($job->getData())
			: self::createError("Can't add job {$sitemapId}")
		;
	}
	catch (MainSystemException $e)
	{
		return self::createError($e->getMessage() . " Sitemap id: {$sitemapId}");
	}
}