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/Templating/Helper/ActionsHelper.php

66 lines
1.7 KiB
PHP
Raw Normal View History

<?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.
*/
namespace Symfony\Bundle\FrameworkBundle\Templating\Helper;
use Symfony\Component\Templating\Helper\Helper;
use Symfony\Bundle\FrameworkBundle\HttpKernel;
/**
* ActionsHelper manages action inclusions.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class ActionsHelper extends Helper
{
protected $kernel;
/**
* Constructor.
*
* @param HttpKernel $kernel A HttpKernel instance
*/
public function __construct(HttpKernel $kernel)
{
$this->kernel = $kernel;
}
/**
* Returns the Response content for a given controller or URI.
*
* @param string $controller A controller name to execute (a string like BlogBundle:Post:index), or a relative URI
* @param array $attributes An array of request attributes
* @param array $options An array of options
*
* @see Symfony\Bundle\FrameworkBundle\HttpKernel::render()
*/
public function render($controller, array $attributes = array(), array $options = array())
{
$options['attributes'] = $attributes;
2011-02-27 19:56:29 +00:00
if (isset($options['query'])) {
$options['query'] = $options['query'];
}
return $this->kernel->render($controller, $options);
}
/**
* Returns the canonical name of this helper.
*
* @return string The canonical name
*/
public function getName()
{
return 'actions';
}
}