4
0

UserConfiguration.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * @property string $apiPasswordHash
  4. * @property array<string,mixed> $archiving
  5. * @property bool $auto_load_more
  6. * @property bool $auto_remove_article
  7. * @property bool $bottomline_date
  8. * @property bool $bottomline_favorite
  9. * @property bool $bottomline_link
  10. * @property bool $bottomline_read
  11. * @property bool $bottomline_sharing
  12. * @property bool $bottomline_tags
  13. * @property string $content_width
  14. * @property-read string $default_state
  15. * @property string $default_view
  16. * @property string|bool $display_categories
  17. * @property bool $display_posts
  18. * @property string $email_validation_token
  19. * @property-read string $enabled
  20. * @property string $feverKey
  21. * @property bool $hide_read_feeds
  22. * @property int $html5_notif_timeout
  23. * @property-read string $is_admin
  24. * @property int|null $keep_history_default
  25. * @property string $language
  26. * @property bool $lazyload
  27. * @property string $mail_login
  28. * @property bool $mark_updated_article_unread
  29. * @property array<string,bool> $mark_when
  30. * @property int $max_posts_per_rss
  31. * @property-read array<string,int> $limits
  32. * @property int|null $old_entries
  33. * @property bool $onread_jump_next
  34. * @property string $passwordHash
  35. * @property int $posts_per_page
  36. * @property array<int,array<string,string>> $queries
  37. * @property bool $reading_confirm
  38. * @property int $since_hours_posts_per_rss
  39. * @property bool $show_fav_unread
  40. * @property bool $show_favicons
  41. * @property bool $show_nav_buttons
  42. * @property string $sort_order
  43. * @property array<string,array<string>> $sharing
  44. * @property array<string,string> $shortcuts
  45. * @property bool $sides_close_article
  46. * @property bool $sticky_post
  47. * @property string $theme
  48. * @property string $token
  49. * @property bool $topline_date
  50. * @property bool $topline_display_authors
  51. * @property bool $topline_favorite
  52. * @property bool $topline_link
  53. * @property bool $topline_read
  54. * @property bool $topline_summary
  55. * @property string $topline_thumbnail
  56. * @property int $ttl_default
  57. * @property-read bool $unsafe_autologin_enabled
  58. * @property string $view_mode
  59. * @property array<string,mixed> $volatile
  60. */
  61. class FreshRSS_UserConfiguration extends Minz_Configuration {
  62. }