[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 /* 4 * This file is part of the Symfony package. 5 * 6 * (c) Fabien Potencier <fabien@symfony.com> 7 * 8 * For the full copyright and license information, please view the LICENSE 9 * file that was distributed with this source code. 10 */ 11 12 namespace Symfony\Component\HttpKernel\Controller; 13 14 use Symfony\Component\HttpKernel\Fragment\FragmentRendererInterface; 15 16 /** 17 * Acts as a marker and a data holder for a Controller. 18 * 19 * Some methods in Symfony accept both a URI (as a string) or a controller as 20 * an argument. In the latter case, instead of passing an array representing 21 * the controller, you can use an instance of this class. 22 * 23 * @author Fabien Potencier <fabien@symfony.com> 24 * 25 * @see FragmentRendererInterface 26 */ 27 class ControllerReference 28 { 29 public $controller; 30 public $attributes = array(); 31 public $query = array(); 32 33 /** 34 * Constructor. 35 * 36 * @param string $controller The controller name 37 * @param array $attributes An array of parameters to add to the Request attributes 38 * @param array $query An array of parameters to add to the Request query string 39 */ 40 public function __construct($controller, array $attributes = array(), array $query = array()) 41 { 42 $this->controller = $controller; 43 $this->attributes = $attributes; 44 $this->query = $query; 45 } 46 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |