config.default.php 1.8 KB

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