14 private static $entityList = [];
21 return "/.well-known/";
29 return "/bitrix/services/sale/domainverification.php";
38 protected static function getEntityList() : array
40 if (empty(self::$entityList))
42 foreach (
Sale\PaySystem\Manager::getHandlerList() as $handlers)
44 foreach (array_keys($handlers) as $handler)
47 [$className] = Sale\PaySystem\Manager::includeHandler($handler);
48 if (is_subclass_of($className, IVerificationable::class))
50 if ($className::getModeList())
52 foreach ($className::getModeList() as $mode)
54 self::$entityList[] = $handler.$mode;
59 self::$entityList[] = $handler;
66 return self::$entityList;
static getUrlRewritePath()