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/sender/lib/internals/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage sender * @copyright 2001-2012 Bitrix */ namespace Bitrix\Sender\Internals; use Bitrix\Sender\Transport; /** * Class CodeBasedFactory * @package Bitrix\Sender\Internals */ abstract class CodeBasedFactory { protected static $instances = array(); protected static $classNames = array(); public static function reset() { static::$instances = array(); static::$classNames = array(); } protected static function getClasses() { return array(); } protected static function getObjectInstance($interface, $code) { $classList = static::getObjectClassList($interface); foreach ($classList as $className) { if ($code == $className::CODE) { return new $className(); } } return null; } protected static function getObjectInstances($interface) { /** @var Transport\iBase $interface Interface. */ $eventName = $interface::EVENT_NAME; if (isset(static::$instances[$eventName])) { return static::$instances[$eventName]; } static::$instances[$eventName] = array(); $classList = static::getObjectClassList($interface); foreach ($classList as $className) { static::$instances[$eventName][] = new $className(); } return static::$instances[$eventName]; } protected static function getObjectClassList($interface) { $interfaceCode = $interface; /** @var Transport\iBase $interface Interface. */ $eventName = $interface::EVENT_NAME; if (isset(static::$classNames[$eventName])) { return static::$classNames[$eventName]; } static::$classNames[$eventName] = array(); $classList = static::getClasses(); $classList = isset($classList[$eventName]) ? $classList[$eventName] : array(); foreach ($classList as $className) { $interfaces = class_implements($className); if ($interfaces && isset($interfaces[$interfaceCode])) { static::$classNames[$eventName][] = $className; } } return static::$classNames[$eventName]; } }