Customer.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. 'customer_register' => [
  12. 'min_name_length' => 1, // 注册账号的firstname, lastname的最小长度
  13. 'max_name_length' => 30, // 注册账号的firstname, lastname的最大长度
  14. 'min_pass_length' => 6, // 注册账号的密码的最小长度
  15. 'max_pass_length' => 30, // 注册账号的密码的最大长度
  16. ],
  17. // 子服务
  18. 'childService' => [
  19. 'newsletter' => [
  20. 'class' => 'fecshop\services\customer\Newsletter',
  21. ],
  22. 'address' => [
  23. 'class' => 'fecshop\services\customer\Address',
  24. ],
  25. 'affiliate' => [
  26. 'class' => 'fecshop\services\customer\Affiliate',
  27. ],
  28. 'coupon' => [
  29. 'class' => 'fecshop\services\customer\Coupon',
  30. ],
  31. 'dropship' => [
  32. 'class' => 'fecshop\services\customer\Dropship',
  33. ],
  34. 'favorite' => [
  35. 'class' => 'fecshop\services\customer\Favorite',
  36. ],
  37. 'message' => [
  38. 'class' => 'fecshop\services\customer\Message',
  39. ],
  40. 'order' => [
  41. 'class' => 'fecshop\services\customer\Order',
  42. ],
  43. 'point' => [
  44. 'class' => 'fecshop\services\customer\Point',
  45. ],
  46. 'review' => [
  47. 'class' => 'fecshop\services\customer\Review',
  48. ],
  49. 'wholesale' => [
  50. 'class' => 'fecshop\services\customer\Wholesale',
  51. ],
  52. 'facebook' => [
  53. 'class' => 'fecshop\services\customer\Facebook',
  54. ],
  55. 'google' => [
  56. 'class' => 'fecshop\services\customer\Google',
  57. ],
  58. ],
  59. ],
  60. ];