Commit 9f40cfb3fe8228d29b9a797d358dcec43369b529

Authored by Etienne Pallier
1 parent 67a2a3d7
Exists in master and in 2 other branches dev, dev-IRAP

Pagination Utilisateurs avec "debut" et "fin"

README.md
... ... @@ -54,10 +54,10 @@ Logiciel testé et validé sur les configurations suivantes :
54 54 VERSION ACTUELLE
55 55  
56 56 Date: 06/06/2019
57   -Version: 2.12.34
  57 +Version: 2.12.35
58 58 Author: EP
59 59 Commentaire:
60   - Nouvelle fonction $mydebug($D, $arg) disponible dans toutes les vues
  60 + Pagination Utilisateurs avec "debut" et "fin"
61 61  
62 62 IMPORTANT :
63 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 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 100 05/06/2019 Version: 2.12.27 (EP)
97 101 Bugfix et Améliorations Export CSV
98 102  
... ...
src/Controller/MaterielsController.php
... ... @@ -991,7 +991,7 @@ class MaterielsController extends AppController
991 991 $materiel = $this->Materiels->get($id, [
992 992 'contain' => []
993 993 ]);
994   - $this->myDebug($materiel);
  994 + //$this->myDebug($materiel);
995 995 }
996 996  
997 997 /* SI POST
... ...
src/Template/Users/index.ctp
... ... @@ -35,8 +35,10 @@
35 35 </tbody>
36 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 42 </div>
41 43  
42 44 <div class="actions">
... ...