page.list.{{entity}}.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {"label":"Liste entité","syntax":"php"}
  2. <?php
  3. global $myUser;
  4. if(!$myUser->connected()) throw new Exception("Vous devez être connecté pour accéder à cette fonctionnalité",401);
  5. if(!$myUser->can('{{plugin}}','read')) throw new Exception("Vous n'avez pas la permission pour executer cette fonctionnalité",403);
  6. require_once(__DIR__.SLASH.'{{Entity}}.class.php');
  7. ?>
  8. <div class="row">
  9. {{~! Recherche non avancée}}
  10. <div class="col-md-8">
  11. <select id="filters" data-type="filter" data-label="Recherche" data-function="{{plugin}}_{{entity}}_search">
  12. <option value="label" data-filter-type="text">Libellé</option>
  13. </select>
  14. </div>
  15. {{/~}}
  16. <div class="col-md-4">
  17. <?php if($myUser->can('{{plugin}}', 'edit')) : ?>
  18. <a href="index.php?module={{plugin}}&page=sheet.{{entity}}" class="btn btn-success right"><i class="fas fa-plus"></i> Ajouter</a>
  19. <?php endif; ?>
  20. </div>
  21. </div>
  22. <br/>
  23. <div class="row">
  24. <!-- search results -->
  25. <div class="col-xl-12">
  26. <table id="{{entity}}s" class="table table-striped " data-entity-search="{{plugin}}_{{entity}}_search">
  27. <thead>
  28. <tr>
  29. <th>#</th>{{:fields}}
  30. <th data-sortable="{{key}}">{{value.label}}</th>{{/:fields}}
  31. <th></th>
  32. </tr>
  33. </thead>
  34. {{~ Formulaire dans le tableau de liste }}
  35. <thead>
  36. <tr id="{{entity}}-form" data-action="{{plugin}}_{{entity}}_save" data-id="">
  37. <th>#</th>{{:fields}}
  38. <th><input id="{{key}}" name="{{key}}" class="form-control" placeholder="" value="" type="text"></th>{{/:fields}}
  39. <th><div onclick="{{plugin}}_{{entity}}_save();" class="btn btn-success"><i class="fas fa-check"></i> Enregistrer</div></th>
  40. </tr>
  41. </thead>
  42. {{/~}}
  43. <tbody>
  44. <tr data-id="{{id}}" class="hidden">
  45. <td>{{id}}</td>{{:fields}}
  46. <td>{{{{value.key}}}}</td>{{/:fields}}
  47. <td>
  48. <div class="btn-group btn-group-sm" role="group">
  49. {{~! Formulaire dans le tableau de liste }}
  50. <a class="btn btn-info" href="index.php?module={{plugin}}&page=sheet.{{entity}}&id={{id}}"><i class="fas fa-pencil-alt"></i></a>
  51. {{/~}}
  52. {{~ Formulaire dans le tableau de liste }}
  53. <div class="btn btn-info " onclick="{{plugin}}_{{entity}}_edit(this);"><i class="fas fa-pencil-alt"></i></div>
  54. {{/~}}
  55. <div class="btn btn-danger " onclick="{{plugin}}_{{entity}}_delete(this);"><i class="far fa-trash-alt"></i></div>
  56. </div>
  57. </td>
  58. </tr>
  59. </tbody>
  60. </table>
  61. {{~! Recherche non avancée}}<!-- Pagination -->
  62. <ul class="pagination">
  63. <li class="page-item hidden" data-value="{{value}}" title="Voir la page {{label}}" onclick="$(this).parent().find('li').removeClass('active');$(this).addClass('active');{{plugin}}_{{entity}}_search();">
  64. <a class="page-link" href="#">{{label}}</a>
  65. </li>
  66. </ul>{{/~}}
  67. </div>
  68. </div>