uawdijnntqw1x1x1
IP : 18.116.241.205
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
perm.axolotls.ru
/
bitrix
/
modules
/
sender
/
lib
/
internals
/
codebasedfactory.php
/
/
<?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]; } }
/var/www/axolotl/data/www/perm.axolotls.ru/bitrix/modules/sender/lib/internals/codebasedfactory.php