dictionary.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. '10' => 'url',
  47. ],
  48. 'collections_type' => [
  49. '0' => 'product_category',
  50. '1' => 'pages_tag',
  51. ],
  52. //文章状态
  53. 'pages_status' => [
  54. '0' => 'draft',
  55. '1' => 'published',
  56. ],
  57. //
  58. 'visibility' => [
  59. '1' => 'visible',
  60. '0' => 'hidden',
  61. ],
  62. //站点URL配置
  63. 'site_url' => [
  64. 'pages' => '/pages',
  65. 'tags' => '/collections',
  66. 'products' => '/products',
  67. 'product_category' => '/products/categories',
  68. 'video' => '/videos',
  69. 'video_category' => '/videos/categories',
  70. 'contact' => '/contact'
  71. ],
  72. //临时变量
  73. 'temp_value' => [
  74. 'location' => 0, //用于SiteMenuController中location变量
  75. ],
  76. 'freight_forwarder' => [
  77. 0 => 'No',
  78. 1 => 'Yes',
  79. ],
  80. 'domain_type' => [
  81. 0 => 'secondary_domain',
  82. 1 => 'custom_domain',
  83. ],
  84. 'landing_page_default_template' => 'pages_detail.liquid',
  85. 'landing_page_contact_us_template' => 'pages_sp_contact.liquid',
  86. ];