Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
bitrixengine.php
1<?php
8namespace Bitrix\Seo\Engine;
9
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()
Definition service.php:278