finder.php 975 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php namespace System\Routing;
  2. class Finder {
  3. /**
  4. * The named routes that have been found so far.
  5. *
  6. * @var array
  7. */
  8. public static $names = array();
  9. /**
  10. * Find a named route in a given array of routes.
  11. *
  12. * @param string $name
  13. * @param array $routes
  14. * @return array
  15. */
  16. public static function find($name, $routes)
  17. {
  18. if (array_key_exists($name, static::$names)) return static::$names[$name];
  19. $arrayIterator = new \RecursiveArrayIterator($routes);
  20. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);
  21. // Since routes can be nested deep within sub-directories, we need to recursively
  22. // iterate through each directory and gather all of the routes.
  23. foreach ($recursiveIterator as $iterator)
  24. {
  25. $route = $recursiveIterator->getSubIterator();
  26. if (isset($route['name']) and $route['name'] == $name)
  27. {
  28. return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
  29. }
  30. }
  31. }
  32. }