dictionary.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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' => 'url',
  46. ],
  47. 'collections_type' => [
  48. '0' => 'product_category',
  49. '1' => 'pages_tag',
  50. ],
  51. //文章状态
  52. 'pages_status' => [
  53. '0' => 'draft',
  54. '1' => 'published',
  55. ],
  56. //
  57. 'visibility' => [
  58. '1' => 'visible',
  59. '0' => 'hidden',
  60. ],
  61. //站点URL配置
  62. 'site_url' => [
  63. 'pages' => '/pages',
  64. 'tags' => '/collections',
  65. 'products' => '/products',
  66. 'product_category' => '/products/categories',
  67. 'video' => '/videos',
  68. 'video_category' => '/videos/categories',
  69. ],
  70. ];