1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
bitrixengine.php
См. документацию.
1<?php
8namespace Bitrix\Seo\Engine;
9
10use Bitrix\Main\Text;
11use Bitrix\Main\Web;
12use Bitrix\Seo\Engine;
13use Bitrix\Seo\Service;
14
15class BitrixEngine extends Engine
16{
17 protected $engineId = 'bitrix_generic';
18
19 public function __construct()
20 {
21 parent::__construct();
22 }
23
24 public function getProxy()
25 {
26 return Service::getEngine();
27 }
28
29 public function getAuthSettings()
30 {
31 $proxy = $this->getProxy();
32 if($proxy && $proxy->getAuthSettings())
33 {
34 return parent::getAuthSettings();
35 }
36
37 return null;
38 }
39}
static getEngine(?Request $request=null)
Определения service.php:292
$proxy
Определения proxy.php:11
Определения action.php:3