text4u
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

cp.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Control Panel
  6. |--------------------------------------------------------------------------
  7. |
  8. | Whether the Control Panel should be enabled, and through what route.
  9. |
  10. */
  11. 'enabled' => env('CP_ENABLED', true),
  12. 'route' => env('CP_ROUTE', 'cp'),
  13. /*
  14. |--------------------------------------------------------------------------
  15. | Start Page
  16. |--------------------------------------------------------------------------
  17. |
  18. | When a user logs into the Control Panel, they will be taken here.
  19. | For example: "dashboard", "collections/pages", etc.
  20. |
  21. */
  22. 'start_page' => 'dashboard',
  23. /*
  24. |--------------------------------------------------------------------------
  25. | Dashboard Widgets
  26. |--------------------------------------------------------------------------
  27. |
  28. | Here you may define any number of dashboard widgets. You're free to
  29. | use the same widget multiple times in different configurations.
  30. |
  31. */
  32. 'widgets' => [
  33. 'getting_started',
  34. ],
  35. /*
  36. |--------------------------------------------------------------------------
  37. | Date Format
  38. |--------------------------------------------------------------------------
  39. |
  40. | When a date is encountered throughout the Control Panel, it will be
  41. | rendered in the following format unless overridden in specific
  42. | fields, and so on. Any PHP date variables are permitted.
  43. |
  44. | This takes precedence over the date_format in system.php.
  45. |
  46. | https://www.php.net/manual/en/function.date.php
  47. |
  48. */
  49. 'date_format' => 'Y-m-d',
  50. /*
  51. |--------------------------------------------------------------------------
  52. | Pagination
  53. |--------------------------------------------------------------------------
  54. |
  55. | Here you may define the default pagination size as well as the options
  56. | the user can select on any paginated listing in the Control Panel.
  57. |
  58. */
  59. 'pagination_size' => 50,
  60. 'pagination_size_options' => [10, 25, 50, 100, 500],
  61. /*
  62. |--------------------------------------------------------------------------
  63. | Links to Documentation
  64. |--------------------------------------------------------------------------
  65. |
  66. | Show contextual links to documentation throughout the Control Panel.
  67. |
  68. */
  69. 'link_to_docs' => env('STATAMIC_LINK_TO_DOCS', true),
  70. /*
  71. |--------------------------------------------------------------------------
  72. | Support Link
  73. |--------------------------------------------------------------------------
  74. |
  75. | Set the location of the support link in the "Useful Links" header
  76. | dropdown. Use 'false' to remove it entirely.
  77. |
  78. */
  79. 'support_url' => env('STATAMIC_SUPPORT_URL', 'https://statamic.com/support'),
  80. /*
  81. |--------------------------------------------------------------------------
  82. | Theme
  83. |--------------------------------------------------------------------------
  84. |
  85. | Optionally spice up the login and other outside-the-control-panel
  86. | screens. You may choose between "rad" or "business" themes.
  87. |
  88. */
  89. 'theme' => env('STATAMIC_THEME', 'rad'),
  90. /*
  91. |--------------------------------------------------------------------------
  92. | White Labeling
  93. |--------------------------------------------------------------------------
  94. |
  95. | When in Pro Mode you may replace the Statamic name, logo, favicon,
  96. | and add your own CSS to the control panel to match your
  97. | company or client's brand.
  98. |
  99. */
  100. 'custom_cms_name' => env('STATAMIC_CUSTOM_CMS_NAME', 'Statamic'),
  101. 'custom_logo_url' => env('STATAMIC_CUSTOM_LOGO_URL', null),
  102. 'custom_favicon_url' => env('STATAMIC_CUSTOM_FAVICON_URL', null),
  103. 'custom_css_url' => env('STATAMIC_CUSTOM_CSS_URL', null),
  104. ];