File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ See an example setting the ``bulma`` view to default:
215
215
216
216
.. code-block :: php
217
217
218
- $pager->setDefaultView('bulma');
218
+ $pager->setDefaultView('bulma'); // static
219
219
220
220
And the call to render:
221
221
@@ -249,7 +249,7 @@ If you need to use a different view style, add the view name and filepath:
249
249
250
250
$name = 'my-pager';
251
251
$filepath = __DIR__ . '/Views/my-pager.php';
252
- $pager->setView($name, $filepath);
252
+ $pager->setView($name, $filepath); // static
253
253
254
254
And then you can render it:
255
255
@@ -276,7 +276,7 @@ Or when needed via the ``setLanguage`` method:
276
276
277
277
.. code-block :: php
278
278
279
- $pager->setLanguage($language);
279
+ $pager->setLanguage($language); // static
280
280
281
281
After setting the language, it is possible to render the pagination.
282
282
@@ -315,7 +315,7 @@ Or whenever you want via the ``setUrl`` method:
315
315
316
316
.. code-block :: php
317
317
318
- $pager->setUrl($url);
318
+ $pager->setUrl($url); // static
319
319
320
320
JSON-Encoding
321
321
-------------
You can’t perform that action at this time.
0 commit comments