Current Path : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/seo/lib/engine/ |
Current File : /var/www/www-root/data/www/info.monolith-realty.ru/bitrix/modules/seo/lib/engine/bitrixengine.php |
<?php /** * Bitrix Framework * @package bitrix * @subpackage seo * @copyright 2001-2013 Bitrix */ namespace Bitrix\Seo\Engine; use Bitrix\Main\Text; use Bitrix\Main\Web; use Bitrix\Seo\Engine; use Bitrix\Seo\Service; class BitrixEngine extends Engine { protected $engineId = 'bitrix_generic'; public function __construct() { parent::__construct(); } public function getProxy() { return Service::getEngine(); } public function getAuthSettings() { $proxy = $this->getProxy(); if($proxy && $proxy->getAuthSettings()) { return parent::getAuthSettings(); } return null; } }