This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Controller.php

135 lines
3.8 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Bundle\FrameworkBundle;
use Symfony\Components\DependencyInjection\ContainerInterface;
use Symfony\Components\HttpFoundation\Request;
use Symfony\Components\HttpFoundation\Response;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* FrameworkBundle Controller gives you convenient access to all commonly needed services.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Controller
{
protected $container;
protected $request;
/**
* Constructor.
*
* @param ContainerInterface $container A ContainerInterface instance
*/
function __construct(ContainerInterface $container)
{
$this->container = $container;
$this->request = $this->container->get('request');
}
/**
* Gets the Request.
*
* @return Request A Request instance
*/
public function getRequest()
{
return $this->request;
}
/**
* Creates a Response instance.
*
* @param string $content The Response body
* @param integer $status The status code
* @param array $headers An array of HTTP headers
*
* @return Response A Response instance
*/
public function createResponse($content = '', $status = 200, array $headers = array())
{
$response = $this->container->get('response');
$response->setContent($content);
$response->setStatusCode($status);
foreach ($headers as $name => $value) {
$response->headers->set($name, $value);
}
return $response;
}
/**
* Generates a URL from the given parameters.
*
* @param string $name The name of the route
* @param array $parameters An array of parameters
* @param Boolean $absolute Whether to generate an absolute URL
*
* @return string The generated URL
*/
public function generateUrl($route, array $parameters = array(), $absolute = false)
{
return $this->container->get('router')->generate($route, $parameters, $absolute);
}
/**
* Forwards the request to another controller.
*
* @param string $controller The controller name (a string like BlogBundle:Post:index)
* @param array $path An array of path parameters
* @param array $query An array of query parameters
*
* @return Response A Response instance
*/
public function forward($controller, array $path = array(), array $query = array())
{
return $this->container->get('controller_resolver')->forward($controller, $path, $query);
}
/**
* Returns an HTTP redirect Response.
*
* @return Response A Response instance
*/
public function redirect($url, $status = 302)
{
2010-08-14 18:51:11 +01:00
return $this->container->get('response')->setRedirect($url, $status);
}
/**
* Returns a rendered view.
*
* @param string $view The view name
* @param array $parameters An array of parameters to pass to the view
*
* @return string The renderer view
*/
public function renderView($view, array $parameters = array())
{
return $this->container->get('templating')->render($view, $parameters);
}
/**
* Renders a view.
*
* @param string $view The view name
* @param array $parameters An array of parameters to pass to the view
* @param Response $response A response instance
*
* @return Response A Response instance
*/
public function render($view, array $parameters = array(), Response $response = null)
{
2010-08-14 18:51:28 +01:00
return $this->container->get('templating')->renderResponse($view, $parameters, $response);
}
}