Commit 9f40cfb3fe8228d29b9a797d358dcec43369b529
1 parent
67a2a3d7
Exists in
master
and in
2 other branches
Pagination Utilisateurs avec "debut" et "fin"
Showing
3 changed files
with
11 additions
and
5 deletions
Show diff stats
README.md
@@ -54,10 +54,10 @@ Logiciel testé et validé sur les configurations suivantes : | @@ -54,10 +54,10 @@ Logiciel testé et validé sur les configurations suivantes : | ||
54 | VERSION ACTUELLE | 54 | VERSION ACTUELLE |
55 | 55 | ||
56 | Date: 06/06/2019 | 56 | Date: 06/06/2019 |
57 | -Version: 2.12.34 | 57 | +Version: 2.12.35 |
58 | Author: EP | 58 | Author: EP |
59 | Commentaire: | 59 | Commentaire: |
60 | - Nouvelle fonction $mydebug($D, $arg) disponible dans toutes les vues | 60 | + Pagination Utilisateurs avec "debut" et "fin" |
61 | 61 | ||
62 | IMPORTANT : | 62 | IMPORTANT : |
63 | - Pour connaitre la version actuelle, taper "./VERSION" | 63 | - Pour connaitre la version actuelle, taper "./VERSION" |
@@ -93,6 +93,10 @@ La liste ci-dessous n'est plus à jour, elle est désormais en ligne ici : https | @@ -93,6 +93,10 @@ La liste ci-dessous n'est plus à jour, elle est désormais en ligne ici : https | ||
93 | 93 | ||
94 | ----------------------------------------------------------------------------------------------------------- | 94 | ----------------------------------------------------------------------------------------------------------- |
95 | 95 | ||
96 | +06/06/2019 Version: 2.12.28-34 (EP) | ||
97 | + LDAP CACHED v8 | ||
98 | + Nouvelle fonction $mydebug($D, $arg) disponible dans toutes les vues | ||
99 | + | ||
96 | 05/06/2019 Version: 2.12.27 (EP) | 100 | 05/06/2019 Version: 2.12.27 (EP) |
97 | Bugfix et Améliorations Export CSV | 101 | Bugfix et Améliorations Export CSV |
98 | 102 |
src/Controller/MaterielsController.php
@@ -991,7 +991,7 @@ class MaterielsController extends AppController | @@ -991,7 +991,7 @@ class MaterielsController extends AppController | ||
991 | $materiel = $this->Materiels->get($id, [ | 991 | $materiel = $this->Materiels->get($id, [ |
992 | 'contain' => [] | 992 | 'contain' => [] |
993 | ]); | 993 | ]); |
994 | - $this->myDebug($materiel); | 994 | + //$this->myDebug($materiel); |
995 | } | 995 | } |
996 | 996 | ||
997 | /* SI POST | 997 | /* SI POST |
src/Template/Users/index.ctp
@@ -35,8 +35,10 @@ | @@ -35,8 +35,10 @@ | ||
35 | </tbody> | 35 | </tbody> |
36 | </table> | 36 | </table> |
37 | 37 | ||
38 | - <?php echo $this->element('pagination'); ?> | ||
39 | - | 38 | + <?php |
39 | + //echo $this->element('pagination'); | ||
40 | + echo $this->element('pagination_with_first_and_last'); | ||
41 | + ?> | ||
40 | </div> | 42 | </div> |
41 | 43 | ||
42 | <div class="actions"> | 44 | <div class="actions"> |