Customer.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /**
  3. * FecShop file.
  4. * @link http://www.fecshop.com/
  5. * @copyright Copyright (c) 2016 FecShop Software LLC
  6. * @license http://www.fecshop.com/license/
  7. */
  8. return [
  9. 'customer' => [
  10. 'class' => 'fecshop\services\Customer',
  11. /*
  12. 'customer_register' => [
  13. 'min_name_length' => 1, // 注册账号的firstname, lastname的最小长度
  14. 'max_name_length' => 30, // 注册账号的firstname, lastname的最大长度
  15. 'min_pass_length' => 6, // 注册账号的密码的最小长度
  16. 'max_pass_length' => 30, // 注册账号的密码的最大长度
  17. ],
  18. */
  19. // 子服务
  20. 'childService' => [
  21. 'newsletter' => [
  22. 'class' => 'fecshop\services\customer\Newsletter',
  23. ],
  24. 'address' => [
  25. 'class' => 'fecshop\services\customer\Address',
  26. ],
  27. 'affiliate' => [
  28. 'class' => 'fecshop\services\customer\Affiliate',
  29. ],
  30. 'coupon' => [
  31. 'class' => 'fecshop\services\customer\Coupon',
  32. ],
  33. 'dropship' => [
  34. 'class' => 'fecshop\services\customer\Dropship',
  35. ],
  36. 'favorite' => [
  37. 'class' => 'fecshop\services\customer\Favorite',
  38. ],
  39. 'message' => [
  40. 'class' => 'fecshop\services\customer\Message',
  41. ],
  42. 'order' => [
  43. 'class' => 'fecshop\services\customer\Order',
  44. ],
  45. 'point' => [
  46. 'class' => 'fecshop\services\customer\Point',
  47. ],
  48. 'review' => [
  49. 'class' => 'fecshop\services\customer\Review',
  50. ],
  51. 'wholesale' => [
  52. 'class' => 'fecshop\services\customer\Wholesale',
  53. ],
  54. 'facebook' => [
  55. 'class' => 'fecshop\services\customer\Facebook',
  56. ],
  57. 'google' => [
  58. 'class' => 'fecshop\services\customer\Google',
  59. ],
  60. ],
  61. ],
  62. ];