setting.list.{{plugin}}.{{entity}}.php 3.4 KB

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