123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfObjectRouteCollection represents a collection of routes.
- *
- * @package symfony
- * @subpackage routing
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfRouteCollection.class.php 11471 2008-09-12 10:03:49Z fabien $
- */
- class sfRouteCollection implements Iterator
- {
- protected
- $count = 0,
- $options = array(),
- $routes = array();
- /**
- * Constructor.
- *
- * @param array $options An array of options
- */
- public function __construct(array $options)
- {
- if (!isset($options['name']))
- {
- throw new InvalidArgumentException('You must pass a "name" option to sfRouteCollection');
- }
- $this->options = $options;
- }
- /**
- * Returns the routes.
- *
- * @return array The routes
- */
- public function getRoutes()
- {
- return $this->routes;
- }
- /**
- * Returns the options.
- *
- * @return array The options
- */
- public function getOptions()
- {
- return $this->options;
- }
- /**
- * Reset the error array to the beginning (implements the Iterator interface).
- */
- public function rewind()
- {
- reset($this->routes);
- $this->count = count($this->routes);
- }
- /**
- * Get the name of the current route (implements the Iterator interface).
- *
- * @return string The key
- */
- public function key()
- {
- return key($this->routes);
- }
- /**
- * Returns the current route (implements the Iterator interface).
- *
- * @return mixed The escaped value
- */
- public function current()
- {
- return current($this->routes);
- }
- /**
- * Moves to the next route (implements the Iterator interface).
- */
- public function next()
- {
- next($this->routes);
- --$this->count;
- }
- /**
- * Returns true if the current route is valid (implements the Iterator interface).
- *
- * @return boolean The validity of the current route; true if it is valid
- */
- public function valid()
- {
- return $this->count > 0;
- }
- }
|