finder.php 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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))
  19. {
  20. return static::$names[$name];
  21. }
  22. $arrayIterator = new \RecursiveArrayIterator($routes);
  23. $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);
  24. // Since routes can be nested deep within sub-directories, we need to recursively
  25. // iterate through each directory and gather all of the routes.
  26. foreach ($recursiveIterator as $iterator)
  27. {
  28. $route = $recursiveIterator->getSubIterator();
  29. if (isset($route['name']) and $route['name'] == $name)
  30. {
  31. return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
  32. }
  33. }
  34. }
  35. }