dictionary.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. //是否启用
  18. 'enabled' => [
  19. '1' => 'Yes',
  20. '0' => 'No',
  21. ],
  22. //是否
  23. 'whether' => [
  24. '1' => 'Yes',
  25. '0' => 'No',
  26. ],
  27. //询价状态
  28. 'inquiryStatus' => [
  29. '0' => 'New',
  30. '1' => 'processing',
  31. '2' => 'processed',
  32. ],
  33. //菜单类型
  34. 'menu_type' => [
  35. '0' => 'Home page',
  36. '1' => 'Collections',
  37. '2' => 'Products',
  38. '3' => 'Pages',
  39. '4' => 'Url',
  40. ],
  41. 'collections_type' => [
  42. '0' => 'Product Category',
  43. '1' => 'Posts Tag',
  44. ],
  45. //文章状态
  46. 'pages_status' => [
  47. '0' => 'Draft',
  48. '1' => 'Published',
  49. ],
  50. //
  51. 'visibility' => [
  52. '1' => 'Visible',
  53. '0' => 'Hidden',
  54. ],
  55. //站点URL配置
  56. 'site_url' => [
  57. 'pages' => '/pages',
  58. 'tags' => '/collections',
  59. 'products' => '/products',
  60. 'product_category' => '/product-category',
  61. ],
  62. ];