Ein für Shopware 6 vorbereitet Systemmanagment.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.3 KiB

1 year ago
  1. #!/bin/bash
  2. ### GENERAL
  3. shopware5_httpdocs_subpath=''
  4. shopware5_local_user=''
  5. shopware5_local_email=''
  6. shopware5_local_firstname=''
  7. shopware5_local_lastname=''
  8. shopware5_install_name=''
  9. shopware5_install_email=''
  10. shopware5_install_locale=''
  11. shopware5_install_currency=''
  12. shopware5_install_storefront_name=''
  13. shopware5_install_storefront_url=''
  14. ### URL MAPPING
  15. shopware5_live_urls=()
  16. shopware5_stage_urls=()
  17. shopware5_local_urls=()
  18. ### GDPR SHOPWARE 6 TABLES
  19. shopware5_gdpr_tables=(
  20. s_user
  21. s_user_addresses
  22. s_user_addresses_attributes
  23. s_user_attributes
  24. s_user_billingaddress
  25. s_user_billingaddress_attributes
  26. s_user_shippingaddress
  27. s_user_shippingaddress_attributes
  28. s_customer_search_index
  29. s_customer_streams
  30. s_customer_streams_attributes
  31. s_customer_streams_mapping
  32. s_mail_log
  33. s_mail_log_contact
  34. s_mail_log_document
  35. s_mail_log_recipient
  36. s_order_attributes
  37. s_order_basket
  38. s_order_basket_attributes
  39. s_order_billingaddress
  40. s_order_billingaddress_attributes
  41. s_order_comparisons
  42. s_order_details
  43. s_order_details_attributes
  44. s_order_documents
  45. s_order_documents_attributes
  46. s_order_esd
  47. s_order_history
  48. s_order_notes
  49. s_order_shippingaddress
  50. s_order_shippingaddress_attributes
  51. )
  52. ### Media Files
  53. shopware5_shared_files=(
  54. '/files'
  55. '/media'
  56. )
  57. ### MAILER
  58. shopware5_local_mailer_url=''