config.default.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. 'sort_order' => 'DESC',
  25. 'anon_access' => false,
  26. 'mark_when' => array (
  27. 'article' => true,
  28. 'site' => true,
  29. 'scroll' => false,
  30. 'reception' => false,
  31. ),
  32. 'theme' => 'Origine',
  33. 'content_width' => 'thin',
  34. 'shortcuts' => array (
  35. 'mark_read' => 'r',
  36. 'mark_favorite' => 'f',
  37. 'go_website' => 'space',
  38. 'next_entry' => 'j',
  39. 'prev_entry' => 'k',
  40. 'first_entry' => 'home',
  41. 'last_entry' => 'end',
  42. 'collapse_entry' => 'c',
  43. 'load_more' => 'm',
  44. 'auto_share' => 's',
  45. 'focus_search' => 'a',
  46. 'user_filter' => 'u',
  47. 'help' => 'f1',
  48. 'close_dropdown' => 'escape',
  49. ),
  50. 'topline_read' => true,
  51. 'topline_favorite' => true,
  52. 'topline_date' => true,
  53. 'topline_link' => true,
  54. 'bottomline_read' => true,
  55. 'bottomline_favorite' => true,
  56. 'bottomline_sharing' => true,
  57. 'bottomline_tags' => true,
  58. 'bottomline_date' => true,
  59. 'bottomline_link' => true,
  60. 'sharing' => array (
  61. ),
  62. 'queries' => array (
  63. ),
  64. 'html5_notif_timeout' => 0,
  65. 'extensions_enabled' => array(),
  66. );