dictionary.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. use Illuminate\Support\Facades\Facade;
  3. /*
  4. * 数据字典 dictionary
  5. */
  6. return [
  7. //配置语言包
  8. 'languages' => [
  9. 'en' => 'English',
  10. 'zh_CN' => 'Chinese',
  11. 'zh_TW' => 'Taiwan'
  12. ],
  13. //默认语言
  14. 'default_language' => 'en',
  15. //分销商角色ID
  16. 'dist_role_id' => '2',
  17. //基础分销商ID,默认为1,此分销商为测试用,模版与变量为基础版本,用于复制给其他分销商用
  18. 'base_dist_id' => '1',
  19. //用户配置
  20. 'users_settings' => [
  21. 'visibility' => '1',//可见性,默认值0不可见,1可见
  22. ],
  23. //是否启用
  24. 'enabled' => [
  25. '1' => 'Yes',
  26. '0' => 'No',
  27. ],
  28. //是否
  29. 'whether' => [
  30. '1' => 'Yes',
  31. '0' => 'No',
  32. ],
  33. //询价状态
  34. 'inquiryStatus' => [
  35. '0' => 'new',
  36. '1' => 'processing',
  37. '2' => 'processed',
  38. ],
  39. //菜单类型
  40. 'menu_type' => [
  41. '0' => 'home_page',
  42. '1' => 'collections',
  43. '2' => 'products',
  44. '3' => 'pages',
  45. '4' => 'unique_page',
  46. '10' => 'url',
  47. ],
  48. 'unique_page' => [
  49. 'contact' => 'Contact Us',
  50. ],
  51. 'collections_type' => [
  52. '0' => 'product_category',
  53. '1' => 'pages_tag',
  54. ],
  55. //文章状态
  56. 'pages_status' => [
  57. '0' => 'draft',
  58. '1' => 'published',
  59. ],
  60. //
  61. 'visibility' => [
  62. '1' => 'visible',
  63. '0' => 'hidden',
  64. ],
  65. //站点URL配置
  66. 'site_url' => [
  67. 'pages' => '/pages',
  68. 'tags' => '/collections',
  69. 'products' => '/products',
  70. 'product_category' => '/products/categories',
  71. 'video' => '/videos',
  72. 'video_category' => '/videos/categories',
  73. 'contact' => '/contact'
  74. ],
  75. //临时变量
  76. 'temp_value' => [
  77. 'location' => 0, //用于SiteMenuController中location变量
  78. ],
  79. ];