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/Routing/ |
Upload File : |
<?php namespace Drupal\Core\Routing; use Symfony\Component\Routing\RouteCollection; /** * Does not dump Route information. */ class NullMatcherDumper implements MatcherDumperInterface { /** * The routes to be dumped. * * @var \Symfony\Component\Routing\RouteCollection */ protected $routes; /** * {@inheritdoc} */ public function addRoutes(RouteCollection $routes) { if (empty($this->routes)) { $this->routes = $routes; } else { $this->routes->addCollection($routes); } } /** * Dumps a set of routes to the router table in the database. * * Available options: * - provider: The route grouping that is being dumped. All existing * routes with this provider will be deleted on dump. * - base_class: The base class name. * * @param array $options * An array of options. */ public function dump(array $options = []) { // The dumper is reused for multiple providers, so reset the queued routes. $this->routes = NULL; } /** * Gets the routes to match. * * @return \Symfony\Component\Routing\RouteCollection * A RouteCollection instance representing all routes currently in the * dumper. */ public function getRoutes() { return $this->routes; } }