4
0

config.default.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. return array (
  3. 'language' => 'en',
  4. 'old_entries' => 3,
  5. 'keep_history_default' => 0,
  6. 'ttl_default' => 3600,
  7. 'mail_login' => '',
  8. 'token' => '',
  9. 'passwordHash' => '',
  10. 'apiPasswordHash' => '',
  11. 'posts_per_page' => 20,
  12. 'view_mode' => 'normal',
  13. 'default_view' => 'adaptive',
  14. 'default_state' => FreshRSS_Entry::STATE_NOT_READ,
  15. 'auto_load_more' => true,
  16. 'display_posts' => false,
  17. 'display_categories' => false,
  18. 'hide_read_feeds' => true,
  19. 'onread_jump_next' => true,
  20. 'lazyload' => true,
  21. 'sticky_post' => true,
  22. 'reading_confirm' => false,
  23. 'auto_remove_article' => false,
  24. # In the case an article has changed (e.g. updated content):
  25. # Set to `true` to mark it unread, or `false` to leave it as-is.
  26. 'mark_updated_article_unread' => false, //TODO: -1 => ignore, 0 => update, 1 => update and mark as unread
  27. 'sort_order' => 'DESC',
  28. 'anon_access' => false,
  29. 'mark_when' => array (
  30. 'article' => true,
  31. 'site' => true,
  32. 'scroll' => false,
  33. 'reception' => false,
  34. ),
  35. 'theme' => 'Origine',
  36. 'content_width' => 'thin',
  37. 'shortcuts' => array (
  38. 'mark_read' => 'r',
  39. 'mark_favorite' => 'f',
  40. 'go_website' => 'space',
  41. 'next_entry' => 'j',
  42. 'prev_entry' => 'k',
  43. 'first_entry' => 'home',
  44. 'last_entry' => 'end',
  45. 'collapse_entry' => 'c',
  46. 'load_more' => 'm',
  47. 'auto_share' => 's',
  48. 'focus_search' => 'a',
  49. 'user_filter' => 'u',
  50. 'help' => 'f1',
  51. 'close_dropdown' => 'escape',
  52. ),
  53. 'topline_read' => true,
  54. 'topline_favorite' => true,
  55. 'topline_date' => true,
  56. 'topline_link' => true,
  57. 'bottomline_read' => true,
  58. 'bottomline_favorite' => true,
  59. 'bottomline_sharing' => true,
  60. 'bottomline_tags' => true,
  61. 'bottomline_date' => true,
  62. 'bottomline_link' => true,
  63. 'sharing' => array (
  64. ),
  65. 'queries' => array (
  66. ),
  67. 'html5_notif_timeout' => 0,
  68. 'extensions_enabled' => array(),
  69. );