setting.example.php 258 B

123456789101112
  1. <?php
  2. global $myUser;
  3. if(!$myUser->can('example','configure')) throw new Exception("Permissions insuffisantes",403);
  4. ?>
  5. <div class="row">
  6. <div class="col-md-12">
  7. <br>
  8. <h3>Réglages Example</h3>
  9. <hr/>
  10. <p>Rien à configurer ici...</p>
  11. </div>
  12. </div>