Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/landing/lib/site/ |
Upload File : |
<?php namespace Bitrix\Landing\Site; abstract class Scope { protected static $currentScopeId = null; /** * Method for first time initialization scope. * @param array $params Additional params. * @return void */ public static function init(array $params = []) { $reflectionClass = new \ReflectionClass(get_called_class()); self::$currentScopeId = mb_strtoupper($reflectionClass->getShortName()); } /** * Returns current scope id. * @return string|null */ public static function getCurrentScopeId() { return self::$currentScopeId; } /** * Should return publication path string. * @return string */ abstract public static function getPublicationPath(); /** * Should return general key for site path (ID or CODE). * @return string */ abstract public static function getKeyCode(); /** * Should return domain id for new site. * @return int|string */ abstract public static function getDomainId(); /** * Should return filter value for 'TYPE' key. * @return mixed */ abstract public static function getFilterType(); /** * Returns array of hook's codes, which excluded by scope. * @return array */ abstract public static function getExcludedHooks(): array; }