Файл: onlinepoisk.wm-scripts.ru/vendor/Pagerfanta/View/OptionableView.php
Строк: 53
<?php
/*
* This file is part of the Pagerfanta package.
*
* (c) Pablo Díez <pablodip@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PagerfantaView;
use PagerfantaPagerfantaInterface;
/**
* OptionableView.
*
* This view renders another view with a default options to reuse them in a project.
*
* @author Pablo Díez <pablodip@gmail.com>
*
* @api
*/
class OptionableView implements ViewInterface
{
private $view;
private $defaultOptions;
/**
* Constructor.
*
* @param ViewInterface $view A view.
* @param array $options An array of default options (optional).
*
* @api
*/
public function __construct(ViewInterface $view, array $defaultOptions = array())
{
$this->view = $view;
$this->defaultOptions = $defaultOptions;
}
/**
* {@inheritdoc}
*/
public function render(PagerfantaInterface $pagerfanta, $routeGenerator, array $options = array())
{
return $this->view->render($pagerfanta, $routeGenerator, array_merge($this->defaultOptions, $options));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'optionable';
}
}