skip to Main Content

I’m using Pagerfanta bundle with Symfony 3.3.4 and Bootstrap 3;

    "php": ">=5.5.9",
    "components/jquery": "^3.2",
    "doctrine/doctrine-bundle": "^1.6",
    "doctrine/orm": "^2.5",
    "incenteev/composer-parameter-handler": "^2.0",
    "kriswallsmith/assetic": "^1.4",
    "oyejorge/less.php": "v1.7.0.14",
    "sensio/distribution-bundle": "^5.0.19",
    "sensio/framework-extra-bundle": "^3.0.2",
    "symfony/assetic-bundle": "^2.8",
    "symfony/monolog-bundle": "^3.1.0",
    "symfony/polyfill-apcu": "^1.0",
    "symfony/swiftmailer-bundle": "^2.3.10",
    "symfony/symfony": "3.3.*",
    "twig/twig": "^1.0||^2.0",
    "twitter/bootstrap": "^3.3",
    "white-october/pagerfanta-bundle": "^1.0"

I then have a template inside my AppBundle which extends base.html.twig:

{% extends 'base.html.twig' %}

{% block body %}
    <nav class="navbar navbar-inverse navbar-fixed-top">

    {% block content %}{% endblock %}

{% endblock %}

which in turn is extended by a page template:

{% extends '@AppBundle/index.html.twig' %}

{% block submenu %}
    <a href="{{ path('site_new') }}" class="btn btn-success"><i class="fa fa-plus"></i> Create</a>
{% endblock %}
{% block title %}
    Manage Sites
{% endblock %}
{% block body %}

    {{ pagerfanta(pager, 'twitter_bootstrap3') }}

{% endblock %}

Calling the template with

    $adapter = new DoctrineORMAdapter($qb);
    $pager = new Pagerfanta($adapter);
    $pager->setMaxPerPage(20);
    $pager->setCurrentPage(intval($this->getSessionPage()));

    $data = $pager->getCurrentPageResults();
    return $this->render('@AppBundle/site/index.html.twig', [
        'pager' => $pager,
        'data' => $data,
        'order' => $order,
        'form' => $form->createView()
    ]);   

However I’m getting

Unknown "pagerfanta" function.

Exception: Twig_Error_Syntax

Its as if this Twig function was not included, but I cannot see what else I need to include. Pagerfanta is in my AppKernel.php as well

3

Answers


  1. I guess you have a typo somewhere near rendering this template. Add rendering code to your question, it should like like this.

    https://github.com/whiteoctober/WhiteOctoberPagerfantaBundle#rendering-pagerfantas

    $adapter = new DoctrineORMAdapter($queryBuilder);
    $pagerfanta = new Pagerfanta($adapter);
        return $this->render('@YourApp/Main/example.html.twig', [
        'my_pager' => $pagerfanta,
    ]);
    
    Login or Signup to reply.
  2. That looks like you’ve forgotten to add the WhiteOctoberPagerfantaBundle to the AppKernel.php, causing that PagerfantaExtension is not loaded, therefore the {{ pagerfanta() }} function is not defined.

    $bundles = array(
        // ...
        new WhiteOctoberPagerfantaBundleWhiteOctoberPagerfantaBundle(),
    );
    
    Login or Signup to reply.
  3. using pagerfanta with Symfony 6

    There is no AppKernel.php in it.

    If you run into the same problem using Symfony 6 then you probably forgot to install the pagerfanta-bundle or the recipe didn’t add the bundle to your bundle setting:
    config/bundles.php

    <?php
    
    return [
        ..
        BabDevPagerfantaBundleBabDevPagerfantaBundle::class => ['all' => true],
    ];
    

    For Symfony 6 you need to install these 3 packages:

    $ composer require pagerfanta/pagerfanta
    $ composer require pagerfanta/twig
    $ composer require babdev/pagerfanta-bundle
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search