client.widget.configure.php 302 B

123456789
  1. <?php
  2. $max = $widget->data('client_number');
  3. $max = $max == "" ? 5 : $max;
  4. ?>
  5. <div id="client-widget-form">
  6. <label for="client-max">Nombre de nouveaux clients à afficher :</label>
  7. <input type="number" class="form-control mb-2" value="<?php echo $max; ?>" name="client-max" id="client-max">
  8. </div>