display.phtml 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <div class="post">
  2. <form method="post" action="">
  3. <h1>Configuration de l'affichage</h1>
  4. <label for="posts_per_page">Nombre d'articles par page</label>
  5. <input type="number" id="posts_per_page" name="posts_per_page" value="<?php echo $this->conf->postsPerPage (); ?>" />
  6. <label>Vue par défaut</label>
  7. <div class="radio_group">
  8. <input type="radio" name="default_view" id="radio_all" value="all"<?php echo $this->conf->defaultView () == 'all' ? ' checked="checked"' : ''; ?> />
  9. <label for="radio_all">Tout afficher</label>
  10. <br />
  11. <input type="radio" name="default_view" id="radio_not_read" value="not_read"<?php echo $this->conf->defaultView () == 'not_read' ? ' checked="checked"' : ''; ?> />
  12. <label for="radio_not_read">Afficher les non lus</label>
  13. </div>
  14. <label for="sort_order">Ordre de tri</label>
  15. <select name="sort_order" id="sort_order">
  16. <option value="low_to_high"<?php echo $this->conf->sortOrder () == 'low_to_high' ? ' selected="selected"' : ''; ?>>Du plus récent au plus ancien</option>
  17. <option value="high_to_low"<?php echo $this->conf->sortOrder () == 'high_to_low' ? ' selected="selected"' : ''; ?>>Du plus ancien au plus récent</option>
  18. </select>
  19. <label>Afficher les articles dépliés par défaut</label>
  20. <div class="radio_group">
  21. <input type="radio" name="display_posts" id="radio_yes" value="yes"<?php echo $this->conf->displayPosts () ? ' checked="checked"' : ''; ?> />
  22. <label for="radio_yes">Oui</label>
  23. <br />
  24. <input type="radio" name="display_posts" id="radio_no" value="no"<?php echo !$this->conf->displayPosts () ? ' checked="checked"' : ''; ?> />
  25. <label for="radio_no">Non</label>
  26. </div>
  27. <input type="submit" value="Valider" />
  28. </form>
  29. </div>