the bola v2 website
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

cp.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. | The numbers of items to show on each paginated page.
  56. |
  57. */
  58. 'pagination_size' => 50,
  59. /*
  60. |--------------------------------------------------------------------------
  61. | Links to Documentation
  62. |--------------------------------------------------------------------------
  63. |
  64. | Show contextual links to documentation throughout the Control Panel.
  65. |
  66. */
  67. 'link_to_docs' => env('STATAMIC_LINK_TO_DOCS', true),
  68. /*
  69. |--------------------------------------------------------------------------
  70. | Support Link
  71. |--------------------------------------------------------------------------
  72. |
  73. | Set the location of the support link in the "Useful Links" header
  74. | dropdown. Use 'false' to remove it entirely.
  75. |
  76. */
  77. 'support_url' => env('STATAMIC_SUPPORT_URL', 'https://statamic.com/support'),
  78. /*
  79. |--------------------------------------------------------------------------
  80. | Theme
  81. |--------------------------------------------------------------------------
  82. |
  83. | Optionally spice up the login and other outside-the-control-panel
  84. | screens. You may choose between "rad" or "business" themes.
  85. |
  86. */
  87. 'theme' => env('STATAMIC_THEME', 'rad'),
  88. /*
  89. |--------------------------------------------------------------------------
  90. | White Labeling
  91. |--------------------------------------------------------------------------
  92. |
  93. | When in Pro Mode you may replace the Statamic name, logo, favicon,
  94. | and add your own CSS to the control panel to match your
  95. | company or client's brand.
  96. |
  97. */
  98. 'custom_cms_name' => env('STATAMIC_CUSTOM_CMS_NAME', 'Statamic'),
  99. 'custom_logo_url' => env('STATAMIC_CUSTOM_LOGO_URL', null),
  100. 'custom_favicon_url' => env('STATAMIC_CUSTOM_FAVICON_URL', null),
  101. 'custom_css_url' => env('STATAMIC_CUSTOM_CSS_URL', null),
  102. ];