-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paginator rendering problem in ZfcTwig 1.2 #102
Comments
+1 |
3 similar comments
+1 |
+1 |
+1 |
Try adding invokables declaration: 'zfctwig' => [
'helper_manager' => [
'configs' => [
'Zend\Navigation\View\HelperConfig',
],
'invokables' => [
'partial' => 'Zend\View\Helper\Partial',
]
],
] |
@merlinus1 Thank you for tip! Works. |
Solution from @merlinus1 not working anymore. Anyone with problem try this: 'zfctwig' => [
'helper_manager' => [
'invokables' => [
'paginationControl' => 'Zend\View\Helper\PaginationControl',
],
],
], |
@saadhre this is the correct config:
|
@gamempire Strange, I have partial helper loaded by default... |
I don't know, without that I receive the error 'can't find template...' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pagination controls worked fine with ZfcTwig 1.1.5. However, when I update to ZfcTwig 1.2.0 or higher the partial template appears not to be rendering any more.
Code in the template to invoke the pagination control:
In partial/paginator.twig:
This is what it looks like with ZfcTwig 1.1.5:
This is what it looks like with ZfcTwig 1.2.0:
I have tried these tests with several versions of twig and zend framework, none seem to work properly with ZfcTwig 1.2.0.
The text was updated successfully, but these errors were encountered: