12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Bundle\FrameworkBundle\Controller;
- use Symfony\Component\DependencyInjection\ContainerAware;
- use Symfony\Component\HttpFoundation\Response;
- /**
- * InternalController.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class InternalController extends ContainerAware
- {
- /**
- * Forwards to the given controller with the given path.
- *
- * @param string $path The path
- * @param string $controller The controller name
- *
- * @return Response A Response instance
- */
- public function indexAction($path, $controller)
- {
- $request = $this->container->get('request');
- $attributes = $request->attributes;
- $attributes->remove('path');
- $attributes->remove('controller');
- if ('none' !== $path) {
- parse_str($path, $tmp);
- $attributes->add($tmp);
- }
- return $this->container->get('http_kernel')->forward($controller, $attributes->all(), $request->query->all());
- }
- }
|