reading.phtml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php $this->partial ('aside_configure'); ?>
  2. <div class="post">
  3. <a href="<?php echo _url ('index', 'index'); ?>"><?php echo Minz_Translate::t ('back_to_rss_feeds'); ?></a>
  4. <form method="post" action="<?php echo _url ('configure', 'reading'); ?>">
  5. <legend><?php echo Minz_Translate::t ('reading_configuration'); ?></legend>
  6. <div class="form-group">
  7. <label class="group-name" for="posts_per_page"><?php echo Minz_Translate::t ('articles_per_page'); ?></label>
  8. <div class="group-controls">
  9. <input type="number" id="posts_per_page" name="posts_per_page" value="<?php echo $this->conf->posts_per_page; ?>" min="5" max="50" />
  10. </div>
  11. </div>
  12. <div class="form-group">
  13. <label class="group-name" for="sort_order"><?php echo Minz_Translate::t ('sort_order'); ?></label>
  14. <div class="group-controls">
  15. <select name="sort_order" id="sort_order">
  16. <option value="DESC"<?php echo $this->conf->sort_order === 'DESC' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('newer_first'); ?></option>
  17. <option value="ASC"<?php echo $this->conf->sort_order === 'ASC' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('older_first'); ?></option>
  18. </select>
  19. </div>
  20. </div>
  21. <div class="form-group">
  22. <label class="group-name" for="view_mode"><?php echo Minz_Translate::t ('default_view'); ?></label>
  23. <div class="group-controls">
  24. <select name="view_mode" id="view_mode">
  25. <option value="normal"<?php echo $this->conf->view_mode === 'normal' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('normal_view'); ?></option>
  26. <option value="reader"<?php echo $this->conf->view_mode === 'reader' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('reader_view'); ?></option>
  27. <option value="global"<?php echo $this->conf->view_mode === 'global' ? ' selected="selected"' : ''; ?>><?php echo Minz_Translate::t ('global_view'); ?></option>
  28. </select>
  29. <label class="radio" for="radio_all">
  30. <input type="radio" name="default_view" id="radio_all" value="<?php echo FreshRSS_Entry::STATE_ALL; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_ALL ? ' checked="checked"' : ''; ?> />
  31. <?php echo Minz_Translate::t ('show_all_articles'); ?>
  32. </label>
  33. <label class="radio" for="radio_not_read">
  34. <input type="radio" name="default_view" id="radio_not_read" value="<?php echo FreshRSS_Entry::STATE_NOT_READ; ?>"<?php echo $this->conf->default_view === FreshRSS_Entry::STATE_NOT_READ ? ' checked="checked"' : ''; ?> />
  35. <?php echo Minz_Translate::t ('show_not_reads'); ?>
  36. </label>
  37. </div>
  38. </div>
  39. <div class="form-group">
  40. <div class="group-controls">
  41. <label class="checkbox" for="hide_read_feeds">
  42. <input type="checkbox" name="hide_read_feeds" id="hide_read_feeds" value="1"<?php echo $this->conf->hide_read_feeds ? ' checked="checked"' : ''; ?> />
  43. <?php echo Minz_Translate::t('hide_read_feeds'); ?>
  44. </label>
  45. </div>
  46. </div>
  47. <div class="form-group">
  48. <div class="group-controls">
  49. <label class="checkbox" for="display_posts">
  50. <input type="checkbox" name="display_posts" id="display_posts" value="1"<?php echo $this->conf->display_posts ? ' checked="checked"' : ''; ?> />
  51. <?php echo Minz_Translate::t ('display_articles_unfolded'); ?>
  52. <noscript> — <strong><?php echo Minz_Translate::t ('javascript_should_be_activated'); ?></strong></noscript>
  53. </label>
  54. </div>
  55. </div>
  56. <div class="form-group">
  57. <div class="group-controls">
  58. <label class="checkbox" for="sticky_post">
  59. <input type="checkbox" name="sticky_post" id="sticky_post" value="1"<?php echo $this->conf->sticky_post ? ' checked="checked"' : ''; ?> />
  60. <?php echo Minz_Translate::t ('sticky_post'); ?>
  61. <noscript> — <strong><?php echo Minz_Translate::t ('javascript_should_be_activated'); ?></strong></noscript>
  62. </label>
  63. </div>
  64. </div>
  65. <div class="form-group">
  66. <div class="group-controls">
  67. <label class="checkbox" for="auto_load_more">
  68. <input type="checkbox" name="auto_load_more" id="auto_load_more" value="1"<?php echo $this->conf->auto_load_more ? ' checked="checked"' : ''; ?> />
  69. <?php echo Minz_Translate::t ('auto_load_more'); ?>
  70. <noscript> — <strong><?php echo Minz_Translate::t ('javascript_should_be_activated'); ?></strong></noscript>
  71. </label>
  72. </div>
  73. </div>
  74. <div class="form-group">
  75. <div class="group-controls">
  76. <label class="checkbox" for="lazyload">
  77. <input type="checkbox" name="lazyload" id="lazyload" value="1"<?php echo $this->conf->lazyload ? ' checked="checked"' : ''; ?> />
  78. <?php echo Minz_Translate::t ('img_with_lazyload'); ?>
  79. <noscript> — <strong><?php echo Minz_Translate::t ('javascript_should_be_activated'); ?></strong></noscript>
  80. </label>
  81. </div>
  82. </div>
  83. <div class="form-group">
  84. <div class="group-controls">
  85. <label class="checkbox" for="reading_confirm">
  86. <input type="checkbox" name="reading_confirm" id="reading_confirm" value="1"<?php echo $this->conf->reading_confirm ? ' checked="checked"' : ''; ?> />
  87. <?php echo Minz_Translate::t ('reading_confirm'); ?>
  88. <noscript> — <strong><?php echo Minz_Translate::t ('javascript_should_be_activated'); ?></strong></noscript>
  89. </label>
  90. </div>
  91. </div>
  92. <div class="form-group">
  93. <label class="group-name"><?php echo Minz_Translate::t ('auto_read_when'); ?></label>
  94. <div class="group-controls">
  95. <label class="checkbox" for="check_open_article">
  96. <input type="checkbox" name="mark_open_article" id="check_open_article" value="1"<?php echo $this->conf->mark_when['article'] ? ' checked="checked"' : ''; ?> />
  97. <?php echo Minz_Translate::t('article_viewed'); ?>
  98. </label>
  99. <label class="checkbox" for="check_open_site">
  100. <input type="checkbox" name="mark_open_site" id="check_open_site" value="1"<?php echo $this->conf->mark_when['site'] ? ' checked="checked"' : ''; ?> />
  101. <?php echo Minz_Translate::t ('article_open_on_website'); ?>
  102. </label>
  103. <label class="checkbox" for="check_scroll">
  104. <input type="checkbox" name="mark_scroll" id="check_scroll" value="1"<?php echo $this->conf->mark_when['scroll'] ? ' checked="checked"' : ''; ?> />
  105. <?php echo Minz_Translate::t ('scroll'); ?>
  106. </label>
  107. <label class="checkbox" for="check_reception">
  108. <input type="checkbox" name="mark_upon_reception" id="check_reception" value="1"<?php echo $this->conf->mark_when['reception'] ? ' checked="checked"' : ''; ?> />
  109. <?php echo Minz_Translate::t ('upon_reception'); ?>
  110. </label>
  111. </div>
  112. </div>
  113. <div class="form-group">
  114. <label class="group-name"><?php echo Minz_Translate::t ('after_onread'); ?></label>
  115. <div class="group-controls">
  116. <label class="checkbox" for="onread_jump_next">
  117. <input type="checkbox" name="onread_jump_next" id="onread_jump_next" value="1"<?php echo $this->conf->onread_jump_next ? ' checked="checked"' : ''; ?> />
  118. <?php echo Minz_Translate::t ('jump_next'); ?>
  119. </label>
  120. </div>
  121. </div>
  122. <div class="form-group form-actions">
  123. <div class="group-controls">
  124. <button type="submit" class="btn btn-important"><?php echo Minz_Translate::t ('save'); ?></button>
  125. <button type="reset" class="btn"><?php echo Minz_Translate::t ('cancel'); ?></button>
  126. </div>
  127. </div>
  128. </form>
  129. </div>