=5.5.9", "components/jquery": "^3....">

Unknown function "pagerfanta"

I am using Pagerfanta package 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"

      

Then I have a template inside my AppBundle that 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 the 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 a 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 am getting

Unknown "pagerfanta" function.

Exception: Twig_Error_Syntax

      

As if this Twig feature was not enabled, but I can't see what I need to enable. Pagerfanta is also in my AppKernel.php

+3


source to share


2 answers


It looks like you forgot to add WhiteOctoberPagerfantaBundle

in AppKernel.php

, which results in PagerfantaExtension

not loading, so the function {{ pagerfanta() }}

is undefined.



$bundles = array(
    // ...
    new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
);

      

+6


source


I think you have a typo somewhere near the rendering of this template. Add rendering code to your question, it should like it 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,
]);

      

0


source







All Articles