Neos\FluidAdaptor\ViewHelpers\Widget\PaginateViewHelper::render PHP Méthode

render() public méthode

Render this view helper
public render ( Neos\Flow\Persistence\QueryResultInterface $objects, string $as, array $configuration = ['itemsPerPage' => 10, 'insertAbove' => false, 'insertBelow' => true, 'maximumNumberOfLinks' => 99] ) : string
$objects Neos\Flow\Persistence\QueryResultInterface
$as string
$configuration array
Résultat string
    public function render(QueryResultInterface $objects, $as, array $configuration = array('itemsPerPage' => 10, 'insertAbove' => false, 'insertBelow' => true, 'maximumNumberOfLinks' => 99))
    {
        $response = $this->initiateSubRequest();
        return $response->getContent();
    }
PaginateViewHelper