widget.configure.php 753 B

12345678910111213141516171819202122
  1. <?php
  2. try{
  3. User::check_access('statistic','read');
  4. require_once(__DIR__.SLASH.'Widget.class.php');
  5. $label = $id = '';
  6. if($widget->data('stats')!=''){
  7. $statsWidget = Widget::getById($widget->data('stats'));
  8. if(!$statsWidget) $statsWidget = new Widget();
  9. $label = $statsWidget->label;
  10. $id = $statsWidget->id;
  11. }
  12. ?>
  13. <div id="stats-widget-form">
  14. <label><i class="fas fa-chart-bar"></i> Statistique à afficher :</label>
  15. <input class="form-control" type="text" value="<?php echo $label; ?>" data-id="<?php echo $id; ?>" id="widget-stats" placeholder="Titre de la statistique à afficher">
  16. </div>
  17. <?php }catch(Exception $e){ ?>
  18. <div class="alert alert-warning text-center m-0" role="alert">
  19. <?php echo $e->getMessage(); ?>
  20. </div>
  21. <?php } ?>