dictionary.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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' => 'pending',
  37. '2' => 'processed',
  38. ],
  39. //菜单类型
  40. 'menu_type' => [
  41. '0' => 'home_page',
  42. '1' => 'collections',
  43. '2' => 'products',
  44. '3' => 'pages',
  45. '4' => 'landing_page',
  46. '5' => 'videos',
  47. '10' => 'url',
  48. ],
  49. 'collections_type' => [
  50. '0' => 'product_category',
  51. '1' => 'pages_tag',
  52. '2' => 'video_category',
  53. ],
  54. //文章状态
  55. 'pages_status' => [
  56. '0' => 'draft',
  57. '1' => 'published',
  58. ],
  59. //
  60. 'visibility' => [
  61. '1' => 'visible',
  62. '0' => 'hidden',
  63. ],
  64. //站点URL配置
  65. 'site_url' => [
  66. 'pages' => '/pages',
  67. 'tags' => '/collections',
  68. 'products' => '/products',
  69. 'product_category' => '/products/categories',
  70. 'video' => '/videos',
  71. 'video_category' => '/videos/categories',
  72. 'contact' => '/contact'
  73. ],
  74. //临时变量
  75. 'temp_value' => [
  76. 'location' => 0, //用于SiteMenuController中location变量
  77. ],
  78. 'freight_forwarder' => [
  79. 0 => 'No',
  80. 1 => 'Yes',
  81. ],
  82. 'domain_type' => [
  83. 0 => 'secondary_domain',
  84. 1 => 'custom_domain',
  85. ],
  86. 'landing_page_default_template' => 'pages_detail.liquid',
  87. 'landing_page_contact_us_template' => 'pages_sp_contact.liquid',
  88. 'dist_product_status' => [
  89. -1 => 'approval_failed',
  90. 0 => 'draft',
  91. 1 => 'pending_approval',
  92. 2 => 'published',
  93. ],
  94. //媒体列表
  95. 'media_list'=>[
  96. 'Facebook' => 'Facebook',
  97. 'Instagram' => 'Instagram',
  98. 'YouTube' => 'YouTube',
  99. 'Twitter' => 'Twitter',
  100. 'TikTok' => 'TikTok',
  101. 'Pinterest' => 'Pinterest',
  102. ]
  103. ];